diff options
author | Justine Smithies <justine@smithies.me.uk> | 2024-02-10 13:34:09 +0000 |
---|---|---|
committer | Justine Smithies <justine@smithies.me.uk> | 2024-02-10 13:34:09 +0000 |
commit | 4e530fb055a14fbea2e0107fcc542dd802a22771 (patch) | |
tree | b20b34102a2003b54cf0da769d944bab326ca6cb /.config | |
parent | 98bec2a60dab942c8c1dba9429849083069a25d9 (diff) |
Updated screenshot binds and added screenshot focused window
Diffstat (limited to '.config')
-rw-r--r-- | .config/hypr/hyprland.conf | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/.config/hypr/hyprland.conf b/.config/hypr/hyprland.conf index c4bbad3..da029e1 100644 --- a/.config/hypr/hyprland.conf +++ b/.config/hypr/hyprland.conf @@ -242,13 +242,16 @@ bind = , xf86monbrightnessdown, exec, ~/.local/bin/statusbar/brightnesscontrol d bind = , xf86monbrightnessup, exec, ~/.local/bin/statusbar/brightnesscontrol up # Take a screenshot of the focused output and save it into screenshots -bind = , PRINT, exec, grim -o $(hyprctl monitors | grep -B 12 'focused: yes' | grep 'Monitor' | awk '{ print $2 }') -t jpeg ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg +bind = , PRINT, exec, ~/.local/bin/screenshot.sh # Take a screenshot of the selected region -bind = $mainMod, PRINT, exec, grim -t jpeg -g "$(slurp)" ~/Pictures/Screenshots/$(date +%Y-%m-%d_%H-%m-%s).jpg +bind = $mainMod, PRINT, exec, ~/.local/bin/screenshot.sh selected-region # Take a screenshot and save it to the clipboard -bind = $mainMod SHIFT, PRINT, exec, grim -g "$(slurp -d)" - | wl-copy +bind = $mainMod SHIFT, PRINT, exec, ~/.local/bin/screenshot.sh save-to-region + +# Take a screenshot of the selected windows +bind = $mainMod CONTROL, PRINT, exec, ~/.local/bin/screenshot.sh focused-window # Swaps the active workspaces between two monitors bind = $mainMod, Z, swapactiveworkspaces, HDMI-A-1 eDP-1 |