27 lines
511 B
Bash
Executable File
27 lines
511 B
Bash
Executable File
#! /bin/bash
|
|
|
|
# Enable debug
|
|
set -x
|
|
|
|
# Autostart
|
|
autorandr --change & disown
|
|
pgrep -x sxhkd && killall sxhkd
|
|
sxhkd & disown
|
|
xrdb -load $HOME/.config/.Xresources & disown
|
|
dunst -conf $HOME/.config/dunst/dunstrc & disown
|
|
picom --experimental-backends & disown
|
|
/usr/lib/kdeconnectd & disown
|
|
nextcloud & disown
|
|
|
|
xset -b
|
|
|
|
bspc config border_width 0
|
|
bspc config window_gap 8
|
|
bspc config top_padding 20
|
|
bspc config split_ratio 0.6
|
|
|
|
# Fix for Java applications
|
|
wmname LG3D
|
|
|
|
"${HOME}"/.config/load_workspace.sh & disown
|