You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can add the various modes as keybindings in your Hyprland config like so:
51
+
52
+
```
53
+
# ~/.config/hypr/hyprland.conf
54
+
55
+
...
56
+
57
+
# Screenshot a window
58
+
bind = $mainMod, PRINT, exec, hyprshot -m window
59
+
# Screenshot a monitor
60
+
bind = , PRINT, exec, hyprshot -m output
61
+
# Screenshot a region
62
+
bind = $shiftMod, PRINT, exec, hyprshot -m region
63
+
```
64
+
65
+
This would allow you to:
66
+
67
+
Take a screenshot of a window by using `MOD + PrintScr`
68
+
69
+
Take a screenshot of a monitor by using `PrintScr`
70
+
71
+
Take a screenshot of a region by using `MOD + Shift + PrintScr`
72
+
73
+
## Save location
74
+
50
75
You can choose which directory Hyprshot will save screenshots in by setting an `HYPRSHOT_DIR` environment variable to your preferred location.
51
76
52
77
If `HYPRSHOT_DIR` is not set, Hyprshot will attempt to save to `XDG_PICTURES_DIR` and will further fallback to your home directory if this is also not available.
0 commit comments