diff options
-rw-r--r-- | awesome/.config/awesome/rc.lua | 9 | ||||
-rw-r--r-- | dev/.config/htop/htoprc | 2 | ||||
-rw-r--r-- | dev/.gitconfig | 3 |
3 files changed, 10 insertions, 4 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", diff --git a/dev/.config/htop/htoprc b/dev/.config/htop/htoprc index 44afee9..6511397 100644 --- a/dev/.config/htop/htoprc +++ b/dev/.config/htop/htoprc @@ -17,7 +17,7 @@ highlight_changes=0 highlight_changes_delay_secs=5 find_comm_in_cmdline=1 strip_exe_from_cmdline=1 -show_merged_command=1 +show_merged_command=0 tree_view=0 tree_view_always_by_pid=0 header_margin=1 diff --git a/dev/.gitconfig b/dev/.gitconfig index 725abf9..ef1d718 100644 --- a/dev/.gitconfig +++ b/dev/.gitconfig @@ -1,6 +1,7 @@ [user] email = mcsinyx@disroot.org name = Nguyễn Gia Phong + signingkey = E90E11B80493343B6132E39427148B2C06A2224B [diff] tool = vimdiff guitool = gvimdiff @@ -20,3 +21,5 @@ rebase = true [init] defaultBranch = main +[trailer "sign"] + key = Signed-off-by |