mirror of
https://github.com/adrlau/sway-dotfiles.git
synced 2025-05-21 07:52:08 +02:00
7 lines
183 B
Bash
Executable File
7 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
FILENAME="screenshot-$(date +%F-%T).png"
|
|
SCREENSHOT_PATH="$HOME/Pictures/screenshots/$FILENAME"
|
|
swaymsg screenshot -o $SCREENSHOT_PATH
|
|
echo -n $SCREENSHOT_PATH | wl-copy
|
|
|