dotfiles/i3/scripte/start_alacritty.sh

10 lines
165 B
Bash
Raw Normal View History

2022-07-09 23:13:29 +02:00
#!/bin/bash
if ! pgrep -x "alacritty" > /dev/null
then
# läuft bereits
i3-msg 'workspace 1'; /usr/local/bin/alacritty
else
# starte
echo starte
fi