mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 09:07:21 +01:00
10 lines
229 B
Bash
Executable file
10 lines
229 B
Bash
Executable file
#!/bin/bash
|
|
|
|
STR=$(swaymsg -t get_tree | grep spotify)
|
|
if [ "$STR" == "" ]; then
|
|
exec spotify & sleep 2
|
|
exec swaymsg '[class="Spotify"]' scratchpad show
|
|
else
|
|
exec swaymsg '[class="Spotify"]' scratchpad show
|
|
fi
|
|
exit 0
|