forked from pub-solar/os
17 lines
245 B
Plaintext
17 lines
245 B
Plaintext
|
#!/usr/bin/env zsh
|
||
|
|
||
|
terminal="alacritty"
|
||
|
|
||
|
# set screen locker to slock
|
||
|
pgrep -x xss-lock \
|
||
|
|| xss-lock slock&!
|
||
|
|
||
|
pgrep -x xbanish \
|
||
|
|| xbanish&!
|
||
|
|
||
|
${terminal} -e tmux new-session -As $(whoami)&!
|
||
|
|
||
|
if ! pgrep -f qutebrowser; then
|
||
|
${BROWSER} &!
|
||
|
fi
|