dotfiles/.config/bspwm/autostart
2022-09-17 02:09:55 +09:00

90 lines
1.9 KiB
Bash
Executable File

#!/usr/bin/env bash
killall bspc
# Splashscreen
pgrep sxhkd || mpv --fullscreen --no-input-default-bindings --no-config --on-all-workspaces ~/Videos/Renders/splash.mp4
# Compositor
picom -b --config $HOME/.xmonad/scripts/picom.conf &
# cursor
xsetroot -cursor_name left_ptr &
# apply colorscheme to spotify
#~/.ricing/wal-spotify.sh > /dev/null&
# Source the colorscheme
#echo alpha="ff" >> "${HOME}/.cache/wal/colors.sh"
#source "${HOME}/.cache/wal/colors.sh"
# Walllpaper
~/scripts/random_wallpaper.sh
# Authentication agent
#/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1&
# mapcheck
#killall osucheck.sh
#killall inotifywait
#~/.osuthings/osucheck.sh "/home/$USER/.osutmp"&
#~/.osuthings/osucheck.sh "/home/$USER/Downloads"&
# Tablet drivers
#otd&
# Statusbar
#eww -c ~/.config/eww/eww-bar open bar
eww -c ~/.config/eww/mybar open bar_right
eww -c ~/.config/eww/mybar open bar_center
eww -c ~/.config/eww/mybar open bar_left
#killall polybar
#polybar -c ~/.config/eww/mybar/polybar_tray.ini tray&
#Applets
#killall blueman-applet
#killall pa-applet
#killall nm-applet
#killall flameshot
#blueman-applet&
#pa-applet --disable-key-grabbing --disable-notifications&
#nm-applet&
#flameshot&
# daemons
#killall dunst
#dunst -lf $foreground \
# -lb $color0$alpha \
# -lfr $color9\
# -nf $foreground \
# -nb $color0$alpha \
# -nfr $color9 \
# -cf $foreground \
# -cb $color0$alpha \
# -cfr $color9 > /dev/null 2>&1 &
#thunar --daemon&
# Master layout
#for (( i=1; i < 10; i++));do
# #bsp-layout set tiled $i
# true
#done
# Sounds
#~/.bscripts/sounds.sh&
# idle
#killall idle.sh
#pgrep idle.sh || ~/.bscripts/idle.sh > /dev/null 2> /dev/null&
# borders
#.bscripts/borders.sh&
# Emacs Daemon
emacs --daemon
# Launch keybinding daemon
killall sxhkd
sxhkd -c ~/.config/bspwm/sxhkdrc > /dev/null 2> /dev/null&