mirror of
https://github.com/rywng/dotfiles.git
synced 2024-11-25 04:11:49 +08:00
7 lines
261 B
Bash
7 lines
261 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
action=`echo "copy\nsave" | wofi -d -Oalphabetical --prompt="Select your action"`
|
||
|
target=`echo "active\nscreen\noutput\narea\nwindow" | wofi -d -Oalphabetical --prompt="Select the target"`
|
||
|
|
||
|
~/.config/sway/scripts/grimshot.sh --notify $action $target
|