Compare commits
21 Commits
17a8e60261
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| b22e381660 | |||
| 232e6a03c5 | |||
| 8936d060d3 | |||
| add9175859 | |||
| 6a6a579912 | |||
| c2a1117e55 | |||
| 25603469ae | |||
| db1807b6e2 | |||
| 7b6bb320ac | |||
| 154156f965 | |||
| 8e1c81c55c | |||
| 3bf01d1b04 | |||
| d986312dd4 | |||
| 5aac8f0d8a | |||
| 507029e62a | |||
| 34c82f1820 | |||
| 35123a80dc | |||
| eac7a059f8 | |||
| f1bb185f8a | |||
| facf306eb2 | |||
| c90ba3fce4 |
Binary file not shown.
|
After Width: | Height: | Size: 3.7 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.2 MiB |
+1
-1
@@ -1,6 +1,6 @@
|
||||
return {
|
||||
browser="firefox",
|
||||
terminal="new-terminal",
|
||||
email="thomas@forgione.fr",
|
||||
email="thomas@tforgione.fr",
|
||||
email2="thomas@polymny.studio",
|
||||
}
|
||||
|
||||
@@ -469,7 +469,7 @@ globalkeys = awful.util.table.join(
|
||||
-- awful.key({ modkey }, "r", function () awful.screen.focused().mypromptbox:run() end,
|
||||
-- {description = "run prompt", group = "launcher"}),
|
||||
|
||||
awful.key({ modkey }, "r", function () awful.spawn('rofi -show drun') end,
|
||||
awful.key({ modkey }, "r", function () awful.spawn('rofi -show drun -theme ~/.config/rofi/theme.rasi') end,
|
||||
{description = "run prompt", group = "launcher"}),
|
||||
-- awful.key({ modkey }, "x",
|
||||
-- function ()
|
||||
@@ -565,16 +565,16 @@ globalkeys = awful.util.table.join(
|
||||
end, {description="start the web browser", group="shortcuts"}),
|
||||
|
||||
awful.key({modkey}, "z", function()
|
||||
awful.spawn.easy_async(options.browser .. " https://gitea.tforgione.fr/tforgione/todo/issues https://git.polymny.net/user/oauth2/polymny-studio https://web.telegram.org https://web.whatsapp.com/ https://discord.com/app https://nuage.polymny.studio/index.php/apps/calendar/", function() end)
|
||||
awful.spawn.easy_async(options.browser .. " http://jdb.localhost/todo.html https://web.telegram.org https://web.whatsapp.com/ https://discord.com/app https://nuage.polymny.studio/index.php/apps/calendar/ https://mail.infomaniak.com/2 https://mail.infomaniak.com/0", function() end)
|
||||
naughty.notify({title = "Starting social media"})
|
||||
end, {description="Open social media", group="shortcuts"}),
|
||||
|
||||
awful.key({modkey}, "l", function()
|
||||
awful.spawn.easy_async_with_shell('sleep 1sec; xset dpms force off; slock', function() end)
|
||||
awful.spawn.easy_async_with_shell('sleep 1; xset dpms force off; slock', function() end)
|
||||
end, { description="Locks the screen", group="screen control"}),
|
||||
|
||||
awful.key({modkey, "Shift"}, "l", function()
|
||||
awful.spawn.easy_async_with_shell('sleep 1sec; xset dpms force off', function() end)
|
||||
awful.spawn.easy_async_with_shell('sleep 1; xset dpms force off', function() end)
|
||||
end, { description="Turns off the screen", group="screen control"}),
|
||||
|
||||
awful.key({modkey, "Shift"}, "Tab", function()
|
||||
@@ -605,17 +605,13 @@ globalkeys = awful.util.table.join(
|
||||
|
||||
awful.key({modkey, "Shift"}, "m", function()
|
||||
awful.spawn.easy_async('sleep 0.5', function()
|
||||
for i = 1, #options.email do
|
||||
os.execute('xdotool type --clearmodifiers ' .. options.email:sub(i,i))
|
||||
end
|
||||
os.execute('xdotool type --clearmodifiers ' .. options.email)
|
||||
end)
|
||||
end, {description="Automatically enters the key to type your email", group="shortcuts"}),
|
||||
|
||||
awful.key({modkey, "Shift"}, "ù", function()
|
||||
awful.spawn.easy_async('sleep 0.5', function()
|
||||
for i = 1, #options.email2 do
|
||||
os.execute('xdotool type --clearmodifiers ' .. options.email2:sub(i,i))
|
||||
end
|
||||
os.execute('xdotool type --clearmodifiers ' .. options.email2)
|
||||
end)
|
||||
end, {description="Automatically enters the key to type your secondary email", group="shortcuts"}),
|
||||
|
||||
@@ -624,8 +620,12 @@ globalkeys = awful.util.table.join(
|
||||
end, {description="Opens mailspring", group="shortcuts"}),
|
||||
|
||||
awful.key({modkey}, "e", function()
|
||||
awful.spawn.easy_async("emojinput", function() end)
|
||||
end, {description="Starts emojinput", group="shortcuts"}),
|
||||
awful.spawn.easy_async("firefox ext+container:name=Yuzzit&url=https://yip.atlassian.net/ ext+container:name=Yuzzit&url=https://app.slack.com/client/T03UFFGJK/D07KS0S1LDT ext+container:name=Yuzzit&url=https://app.gather.town/app/bZRkf3gh7MIximOa/ytopenspace", function() end)
|
||||
end, {description="Starts yuzzit", group="shortcuts"}),
|
||||
|
||||
awful.key({modkey}, ",", function()
|
||||
awful.spawn.easy_async("firefox ext+container:name=Yuzzit&url=https://duckduckgo.com", function() end)
|
||||
end, {description="Starts yuzzit empty window", group="shortcuts"}),
|
||||
|
||||
awful.key({ modkey }, "p", function()
|
||||
awful.spawn.easy_async("pavucontrol", function(e) end)
|
||||
|
||||
@@ -96,7 +96,7 @@ theme.titlebar_maximized_button_focus_active = "/usr/share/awesome/themes/defau
|
||||
-- end
|
||||
--
|
||||
-- theme.wallpaper = getrandomwallpaper()
|
||||
theme.wallpaper = os.getenv('HOME') .. "/.config/awesome/Wallpapers/pluto-1.png"
|
||||
theme.wallpaper = os.getenv('HOME') .. "/.config/awesome/Wallpapers/cobra-kai-1.png"
|
||||
|
||||
-- You can use your own layout icons like this:
|
||||
theme.layout_fairh = "/usr/share/awesome/themes/default/layouts/fairhw.png"
|
||||
|
||||
Reference in New Issue
Block a user