Simple Wayfire Keybind
Some simple Wayfire custom keybind ScreenShot You can use grim and slurp to have screenshot function grim screenshot slurp select a region Install grim and slurp yay -S grim slurp For example shell script # ~/.config/wayfire/scripts/screenshot.sh path="/home/novel2430/Pictures/screenshot/" # <--- Where you want to save your screenshots now_date=$(date '+%Y%m%d-%H%M%S') file_name="${path}${now_date}.png" msg="save as ${file_name}" case $1 in full) grim ${file_name} && dunstify -a "Screenshot" "Full" "${msg}" -r 2003 ;; select) grim -g "$(slurp)" ${file_name} && dunstify -a "Screenshot" "Select" "${msg}" -r 2003 ;; esac Clipboard Manager We need two packages: cliphist and wl-clipboard ...