forked from pub-solar/os
17 lines
245 B
Bash
17 lines
245 B
Bash
#!/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
|