diff options
author | Patrick Spek <p.spek@tyil.nl> | 2023-05-16 16:28:58 +0200 |
---|---|---|
committer | Patrick Spek <p.spek@tyil.nl> | 2023-05-16 16:28:58 +0200 |
commit | 412c02641808aec4191836a82ab6559e81a460d6 (patch) | |
tree | dfd337bad6e54eb69c15c0ca386ea68a14a213c7 | |
parent | 0f93bb6ad11e2f4ae246c9eeb81e1ea5549fde4c (diff) | |
download | dotfiles-412c02641808aec4191836a82ab6559e81a460d6.tar.gz dotfiles-412c02641808aec4191836a82ab6559e81a460d6.tar.bz2 |
Fix pass keybind
-rw-r--r-- | .config/awesome/rc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 3aa284a..5be24b2 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -154,7 +154,7 @@ awful.screen.connect_for_each_screen(function(s) screen = s, filter = awful.widget.taglist.filter.all, buttons = taglist_buttons, - source = function(screen, args) return tags end, + source = function(screen, args) return tags end, } -- Create a tasklist widget @@ -252,11 +252,11 @@ globalkeys = gears.table.join( ), awful.key( - { modkey, }, "p", awful.spawn("ipass"), + { modkey, }, "p", function () awful.spawn("ipass") end, { description = "Select password", group = "awesome" } ), awful.key( - { modkey, }, "o", awful.spawn("ipass-otp"), + { modkey, }, "o", function () awful.spawn("ipass-otp") end, { description = "Select password", group = "awesome" } ), |