Add screenshot functionality
This commit is contained in:
parent
1da0ea7f1e
commit
28c094ce2c
|
@ -26,4 +26,7 @@
|
||||||
- fonts-noto-color-emoji
|
- fonts-noto-color-emoji
|
||||||
- thunar
|
- thunar
|
||||||
- dunst
|
- dunst
|
||||||
- polkit-kde-agent-1
|
- polkit-kde-agent-1
|
||||||
|
- slurp
|
||||||
|
- grim
|
||||||
|
- swappy
|
|
@ -109,7 +109,8 @@ workspace = {{ workspace['id'] }}{% if 'monitor' in workspace %}, monitor:desc:{
|
||||||
exec-once = systemctl --user import-environment DISPLAY WAYLAND_DISPLAY && hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
|
exec-once = systemctl --user import-environment DISPLAY WAYLAND_DISPLAY && hash dbus-update-activation-environment 2>/dev/null && dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK
|
||||||
exec-once = systemctl --user start plasma-polkit-agent.service
|
exec-once = systemctl --user start plasma-polkit-agent.service
|
||||||
exec-once = dunst -config ~/.config/dunst/dunst.ini
|
exec-once = dunst -config ~/.config/dunst/dunst.ini
|
||||||
exec-once = waybar & ~/.local/bin/hyprhelpr background & ~/.local/bin/hyprhelpr idle
|
exec-once = waybar
|
||||||
|
exec-once = ~/.local/bin/hyprhelpr background & ~/.local/bin/hyprhelpr idle
|
||||||
exec-once = flatpak run com.tomjwatson.Emote
|
exec-once = flatpak run com.tomjwatson.Emote
|
||||||
|
|
||||||
# Execute apps at launch
|
# Execute apps at launch
|
||||||
|
@ -132,6 +133,7 @@ bind = $mainMod, F, fullscreen, 0
|
||||||
bind = $mainMod, V, togglefloating,
|
bind = $mainMod, V, togglefloating,
|
||||||
bind = $mainMod, L, exec, ~/.local/bin/hyprhelpr lock
|
bind = $mainMod, L, exec, ~/.local/bin/hyprhelpr lock
|
||||||
bind = $mainMod, P, exec, ~/.local/bin/hyprhelpr powermenu
|
bind = $mainMod, P, exec, ~/.local/bin/hyprhelpr powermenu
|
||||||
|
bind = $mainMod SHIFT, S, exec, ~/.local/bin/hyprhelpr screenshot
|
||||||
bind = $mainMod, period, exec, flatpak run com.tomjwatson.Emote
|
bind = $mainMod, period, exec, flatpak run com.tomjwatson.Emote
|
||||||
|
|
||||||
# Move focus with mainMod + arrow keys
|
# Move focus with mainMod + arrow keys
|
||||||
|
|
|
@ -59,6 +59,23 @@ powermenu() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
screenshot() {
|
||||||
|
ACTION=$(printf "Area\nWindow\nScreen" | wofi --show=dmenu -i --width 200 --height 150)
|
||||||
|
if [ -n "$ACTION" ]; then
|
||||||
|
case $ACTION in
|
||||||
|
Area)
|
||||||
|
grim -g "$(slurp)" - | swappy -f -
|
||||||
|
;;
|
||||||
|
Window)
|
||||||
|
grim -g "$(hyprctl clients -j | jq -r ".[] | select(.workspace.id | IN(["$(hyprctl monitors -j | jq '.[].activeWorkspace.id' | xargs | sed -e 's/ /,/g')"][]))" | jq -r ".at,.size" | jq -s "add" | jq '_nwise(4)' | jq -r '"\(.[0]),\(.[1]) \(.[2])x\(.[3])"' | slurp)" - | swappy -f -
|
||||||
|
;;
|
||||||
|
Screen)
|
||||||
|
grim -g "$(slurp -o)" - | swappy -f -
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
ACTION=$1
|
ACTION=$1
|
||||||
case $ACTION in
|
case $ACTION in
|
||||||
background)
|
background)
|
||||||
|
@ -79,6 +96,9 @@ case $ACTION in
|
||||||
powermenu)
|
powermenu)
|
||||||
powermenu
|
powermenu
|
||||||
;;
|
;;
|
||||||
|
screenshot)
|
||||||
|
screenshot
|
||||||
|
;;
|
||||||
help | -h | --help)
|
help | -h | --help)
|
||||||
echo "Usage: hyprhelpr <action> [parameters]"
|
echo "Usage: hyprhelpr <action> [parameters]"
|
||||||
echo "Available actions:"
|
echo "Available actions:"
|
||||||
|
@ -88,6 +108,7 @@ case $ACTION in
|
||||||
echo " shutdown Shut down the system."
|
echo " shutdown Shut down the system."
|
||||||
echo " reboot Reboot the system."
|
echo " reboot Reboot the system."
|
||||||
echo " powermenu Show wofi in dmenu mode with different power options"
|
echo " powermenu Show wofi in dmenu mode with different power options"
|
||||||
|
echo " screenshot Show wofi in dmenu mode with different screenshot options"
|
||||||
echo " help Show this help text."
|
echo " help Show this help text."
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in a new issue