diff options
| author | awy <awy@awy.one> | 2025-11-29 18:35:49 +0300 |
|---|---|---|
| committer | awy <awy@awy.one> | 2025-11-29 18:35:49 +0300 |
| commit | 8d90f5a577b75b8a792b7a2f02d98a31e9ff19c4 (patch) | |
| tree | 868e0d8389fb2b4e413409f65f57caa9c0b37eda /.local/bin/dmenuscreenshare | |
| parent | db008a76e93dcfbf00fec5a141a1e1bd122b04a7 (diff) | |
| download | hyprdots-8d90f5a577b75b8a792b7a2f02d98a31e9ff19c4.tar.gz | |
uupdate
Diffstat (limited to '.local/bin/dmenuscreenshare')
| -rwxr-xr-x | .local/bin/dmenuscreenshare | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.local/bin/dmenuscreenshare b/.local/bin/dmenuscreenshare index f94f00b..0782637 100755 --- a/.local/bin/dmenuscreenshare +++ b/.local/bin/dmenuscreenshare @@ -3,7 +3,7 @@ get_window() { input="$(echo $XDPH_WINDOW_SHARING_LIST | sed 's/\[HA>\]/[HA>]\n/g')" - choice=$(echo "$input" | mew -l 10) + choice=$(echo "$input" | rofi -dmenu -l 10) printf '[SELECTION]r/window:%s\n' "$choice" echo $XDPH_WINDOW_SHARING_LIST > ~/test } @@ -12,7 +12,7 @@ get_screen() { input="$(hyprctl monitors -j | jq -r '.[].name')" num="$(cat $input | wc -l)" - choice=$(echo "$input" | mew) + choice=$(echo "$input" | rofi -dmenu) printf '[SELECTION]r/screen:%s\n' "$choice" } @@ -22,7 +22,7 @@ get_region() printf '[SELECTION]r/region:%s\n' "$choice" } -type=$(printf "screen\nwindows\nregion" | mew -p "Choose what to screenshare:") +type=$(printf "screen\nwindows\nregion" | rofi -dmenu -p "Choose what to screenshare:") case "$type" in "screen") |