mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 17:17:22 +01:00
10 lines
249 B
Bash
10 lines
249 B
Bash
#!/bin/bash
|
|
|
|
STR=$(swaymsg -t get_tree | grep Element)
|
|
if [ "$STR" == "" ]; then
|
|
exec element-desktop
|
|
#exec swaymsg '[app_id=SchildiChat]' move container to scratchpad; scratchpad show
|
|
else
|
|
exec swaymsg '[app_id=Element]' kill
|
|
fi
|
|
exit 0
|