summaryrefslogtreecommitdiff
path: root/hypr/screenshotwayland.sh
diff options
context:
space:
mode:
authoranand <anand.panchdhari@gmail.com>2026-03-06 21:50:46 +0530
committeranand <anand.panchdhari@gmail.com>2026-03-06 21:50:46 +0530
commit6c6eaccb86c882059b8c74bbf5840370b10f2886 (patch)
tree7b74a5a6170e6c729fec4709d9fd688c742e90d7 /hypr/screenshotwayland.sh
parent61ffaae6e2c9937dbff8b38d59bf844bab9009ca (diff)
De-hypr-ed my configs
Diffstat (limited to 'hypr/screenshotwayland.sh')
-rwxr-xr-xhypr/screenshotwayland.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/hypr/screenshotwayland.sh b/hypr/screenshotwayland.sh
deleted file mode 100755
index 212d8e2..0000000
--- a/hypr/screenshotwayland.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/usr/bin/env bash
-input_type=$(printf "region\nwindow" | rofi -dmenu)
-case "$input_type" in
- "window")
- hyprshot -m window --clipboard-only
- ;;
- *)
- hyprshot -m region --clipboard-only
- ;;
-esac
-
-choice=$(printf "save to clipboard\nsave to file" | rofi -dmenu)
-
-case "$choice" in
- "save to file")
- wl-paste > ~/Pictures/Screenshots/screenshot-$(date +%F_%H-%M-%S).png
- ;;
- *)
- exit 0
- ;;
-esac