34 lines
977 B
Bash
Executable File
34 lines
977 B
Bash
Executable File
#!/bin/sh
|
|
|
|
pgrep -x sxhkd > /dev/null || sxhkd &
|
|
|
|
xrandr --output DisplayPort-1 --off --output DisplayPort-2 --off --output HDMI-A-0 --off && \
|
|
xrandr --output DisplayPort-1 --primary --rate 144 --mode 2560x1440 --output DisplayPort-2 --mode 1920x1080 --rate 60 --left-of DisplayPort-1 --output HDMI-A-0 --mode 1920x1080 --rate 144 --right-of DisplayPort-1
|
|
|
|
bspc monitor DisplayPort-1 -d I II III
|
|
bspc monitor HDMI-A-0 -d IV V VI
|
|
bspc monitor DisplayPort-2 -d VII VIII IX
|
|
|
|
killall polybar
|
|
killall xwinwrap
|
|
|
|
setxkbmap de nodeadkeys
|
|
nitrogen --restore &
|
|
polybar main &
|
|
dunst &
|
|
xsetroot -cursor_name left_ptr &
|
|
picom -fb
|
|
|
|
bspc config border_width 0
|
|
bspc config window_gap 8
|
|
bspc config left_padding 0
|
|
bspc config right_padding 0
|
|
bspc config bottom_padding 0
|
|
bspc config top_padding 0
|
|
|
|
bspc config split_ratio 0.5
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
|
|
bspc rule -a Gimp state=floating follow=on
|