about summary refs log tree commit diff
path: root/awesome/.config/awesome
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/.config/awesome')
-rw-r--r--awesome/.config/awesome/rc.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/awesome/.config/awesome/rc.lua b/awesome/.config/awesome/rc.lua
index 1d44cc0..82df5c7 100644
--- a/awesome/.config/awesome/rc.lua
+++ b/awesome/.config/awesome/rc.lua
@@ -54,6 +54,7 @@ local python = terminal .. " -e python"
 local guile = terminal .. " -e guile"
 local clojure = terminal .. " -e clojure"
 local aerc = terminal .. " -e aerc"
+local atom = terminal .. " -e newsboat"
 local emacs = "emacs"
 local slock_suspend = "slock systemctl --ignore-inhibitors suspend"
 
@@ -468,14 +469,16 @@ local globalkeys = awful.util.table.join(
             {description = "open Emacs", group = "launcher"}),
   awful.key({modkey}, "e", spawner(aerc),
             {description = "open aerc", group = "launcher"}),
+  awful.key({modkey}, "a", spawner(atom),
+            {description = "open aerc", group = "launcher"}),
   awful.key({modkey}, "f", spawner"firefox",
             {description = "open Firefox", group = "launcher"}),
   awful.key({modkey, "Shift"}, "f", spawner"torbrowser-launcher",
             {description = "open Tor Browser", group = "launcher"}),
-  awful.key({modkey}, "t", spawner"thunderbird",
-            {description = "open Thunderbird", group = "launcher"}),
-  awful.key({modkey, "Shift"}, "t", spawner"transmission-gtk",
+  awful.key({modkey}, "t", spawner"transmission-gtk",
             {description = "open Transmission", group = "launcher"}),
+  awful.key({modkey, "Shift"}, "t", spawner"thunderbird",
+            {description = "open Thunderbird", group = "launcher"}),
   awful.key({modkey}, "m", spawner"nheko",
             {description = "open nheko", group = "launcher"}),
   awful.key({modkey, "Shift"}, "g", spawner"gimp",