10 lines
165 B
Bash
10 lines
165 B
Bash
|
#!/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
|