1
0
Fork 0
mirror of https://github.com/Horhik/dotfiles.git synced 2024-07-21 20:03:35 +00:00
Dotfiles/.local/bin/scratchpad.sh
2020-09-09 16:51:58 +03:00

13 lines
220 B
Bash
Executable file

#!/usr/bin/bash
if [ -z $1 ]; then
echo "Usage: $0 <name of hidden scratchpad window>"
exit 1
fi
pids=$(xdotool search --class ${1})
for pid in $pids; do
echo "Toggle $pid"
bspc node $pid --flag hidden -f
done