diff options
| author | Blista Kanjo | 2022-05-31 14:38:02 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2022-05-31 14:38:02 -0400 |
| commit | 7d073b9651741cc46af1bd327bbcf82b7ce86dcf (patch) | |
| tree | 47efbd4c6611c7c0725274d2f5879c561cff2f1c /awesome/rc.lua | |
| parent | df5f9da1018f947764d3225af5975a634b405801 (diff) | |
new script: single word spell check binded to Super+W
Diffstat (limited to 'awesome/rc.lua')
| -rw-r--r-- | awesome/rc.lua | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 3e28c96..0c9733d 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -322,8 +322,12 @@ globalkeys = gears.table.join( awful.key({ }, "XF86MonBrightnessUp", function () awful.spawn.easy_async_with_shell("xbacklight -inc 15") end), -- Emoji Picker - 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"}), + awful.key({ modkey }, "q", function () awful.spawn.easy_async_with_shell("sh -c '~/.local/share/Blista-Kanjo-Emoji/blista-emoji-picker'") end, + {description = "launch emoji chooser", group = "launcher"}), + + -- Spell Checker (Single Word + awful.key({ modkey }, "w", function () awful.spawn.easy_async_with_shell("sh -c '~/.local/share/scripts/dym.sh'") end, + {description = "launch single word spell checker", group = "launcher"}), -- Clipboard Manager awful.key({ modkey }, "grave", function () awful.spawn.easy_async_with_shell("xfce4-clipman-history") end, @@ -669,7 +673,7 @@ gears.timer { -- awful.spawn.with_shell("") -- awful.spawn.easy_async_with_shell("") -awful.spawn.easy_async_with_shell("/home/kylert/.config/awesome/autorun.sh") +awful.spawn.easy_async_with_shell("~/.config/awesome/autorun.sh") -- Client Swallowing Function |
