Adam Cooper
9a941cb6e3
[bin] New script to start usual TUI's [neovim] Set up nvlime; swap out neodev for lazydev
21 lines
432 B
Bash
Executable file
21 lines
432 B
Bash
Executable file
#!/bin/sh
|
|
|
|
run() {
|
|
if ! pgrep -f "$1" ;
|
|
then
|
|
"$@"&
|
|
fi
|
|
}
|
|
|
|
/usr/sbin/alacritty --socket "$XDG_RUNTIME_DIR/alacritty-main.sock" --title awesome-startup &
|
|
/usr/sbin/alacritty --title bottom --option font.size=6.5 --command btm --battery &
|
|
|
|
run "cbatticon"
|
|
run "blueman-applet"
|
|
run "nm-applet"
|
|
run "nextcloud --background"
|
|
run "pasystray"
|
|
run "xscreensaver -no-splash"
|
|
run "sleep 4"
|
|
run "wmctrl -r bottom -t 8"
|
|
run "keepassxc"
|