diff options
author | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-04-05 20:23:55 +0700 |
---|---|---|
committer | Nguyễn Gia Phong <mcsinyx@disroot.org> | 2021-04-05 20:23:55 +0700 |
commit | f31eea778e3c73149a21254613af912a6788ee11 (patch) | |
tree | cf853ef3341cce545e8920a94b4e8f423ede0ebb /awesome | |
parent | 82543950fb2839b94402b4bffa234e6a764dc8f4 (diff) | |
download | dotfiles-f31eea778e3c73149a21254613af912a6788ee11.tar.gz |
Update key bindings and PGP key
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/.config/awesome/rc.lua | 9 |
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", |