From 412c02641808aec4191836a82ab6559e81a460d6 Mon Sep 17 00:00:00 2001 From: Patrick Spek Date: Tue, 16 May 2023 16:28:58 +0200 Subject: Fix pass keybind --- .config/awesome/rc.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.config/awesome/rc.lua') 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" } ), -- cgit v1.1