aboutsummaryrefslogtreecommitdiff
path: root/awesome/rc.lua
diff options
context:
space:
mode:
authorBlista Kanjo2021-10-20 21:41:23 -0400
committerBlista Kanjo2021-10-20 21:41:31 -0400
commit802c53bb3b7fe1bbc7bce44ea4082e60776c85ab (patch)
treee48277808e8ae43ba814b65e23177bc7e3d0ebc0 /awesome/rc.lua
parentdefbd3137cfefa398c722d66a1052005871add7a (diff)
using .easy_async_with_shell for programs that need it
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r--awesome/rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 17fa007..bd7c0ca 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -301,11 +301,11 @@ globalkeys = gears.table.join(
{description = "Launch HTOP", group = "launcher"}),
-- Brightness Hotkeys
- awful.key({ }, "XF86MonBrightnessDown", function () awful.util.spawn("xbacklight -dec 15") end),
- awful.key({ }, "XF86MonBrightnessUp", function () awful.util.spawn("xbacklight -inc 15") end),
+ awful.key({ }, "XF86MonBrightnessDown", function () awful.spawn.easy_async_with_shell("xbacklight -dec 15") end),
+ awful.key({ }, "XF86MonBrightnessUp", function () awful.spawn.easy_async_with_shell("xbacklight -inc 15") end),
-- Emoji Picker
- awful.key({ modkey }, "q", function () awful.spawn("sh -c '/home/kylert/.local/share/Blista-Kanjo-Emoji/blista-emoji-picker'") end,
+ awful.key({ modkey }, "q", function () awful.spawn.easy_async_with_shell("sh -c '/home/kylert/.local/share/Blista-Kanjo-Emoji/blista-emoji-picker'") end,
{description = "Launch Emoji Chooser", group = "launcher"}),
-- awesome window manager Controls