diff options
author | Justine Smithies <justine@smithies.me.uk> | 2023-09-24 16:52:48 +0100 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2023-09-24 16:52:48 +0100 |
commit | 61cbca5f5c43fb090f6339b44a5ebefc7cba76d1 (patch) | |
tree | 30a0a0c8a4cc4112a62eb4aaeb39bad3e09f042a /.config/qtile | |
parent | cf4a4046fe7a80682c37ce645f6d1766a20e15f5 (diff) |
Changed in screenshot.sh from selected-window to focused-window
Diffstat (limited to '.config/qtile')
-rw-r--r-- | .config/qtile/keys.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.config/qtile/keys.py b/.config/qtile/keys.py index 75e5bde..4076e92 100644 --- a/.config/qtile/keys.py +++ b/.config/qtile/keys.py @@ -184,8 +184,14 @@ keys = [ lazy.spawn("" + home + "/.local/bin/powermenu"), desc="Launch Power menu" ), + # Emoji Picker + Key([mod, "control"], "e", + lazy.spawn(home + "/.local/bin/bemoji -n"), + desc="Launch emoji menu" + ), + - # Rofi + # Fuzzel Key(["control"], "space", lazy.spawn("fuzzel"), desc="Launch Fuzzel menu" @@ -265,7 +271,7 @@ keys = [ ), # Take a screenshot of the selected window Key([mod, "control"], "Print", - lazy.spawn(home + "/.local/bin/screenshot.sh selected-window"), + lazy.spawn(home + "/.local/bin/screenshot.sh focused-window"), desc='Save the selected window to the screenshots folder' ), ] |