43 lines
1.1 KiB
Bash
Executable file
43 lines
1.1 KiB
Bash
Executable file
#! /bin/sh
|
|
|
|
pgrep -x sxhkd > /dev/null || sxhkd &
|
|
|
|
bspc config focus_follows_pointer true
|
|
|
|
bspc monitor DP-1 -d 'I' 'III' 'V' 'VII' 'IX'
|
|
bspc monitor HDMI-0 -d 'II' 'IV' 'VI' 'VIII' 'X'
|
|
#bspc monitor DP-2 -d 'III' 'VI' 'IX'
|
|
|
|
bspc config border_width 6
|
|
bspc config focused_border_color "#cc4738"
|
|
bspc config window_gap 8 #12
|
|
|
|
bspc config split_ratio 0.5
|
|
|
|
bspc config borderless_monocle true
|
|
bspc config gapless_monocle true
|
|
bspc config single_monocle false
|
|
|
|
xrandr --output HDMI-0 --mode 1920x1080 --rate 75 &&
|
|
nitrogen --restore &
|
|
/usr/bin/polkit-dumb-agent &
|
|
sxhkd -c $HOME/.config/sxhkd/sxhkdrc &
|
|
xsetroot -cursor_name left_ptr &
|
|
$HOME/.config/polybar/launch2.sh &
|
|
flameshot &
|
|
#$HOME/.config/tint2/launch.sh &
|
|
#wmname LG3D &
|
|
xsetwacom set 'Wacom Intuos S 2 Pen stylus' MapToOutput HEAD-1 &
|
|
setxkbmap -option caps:escape &
|
|
|
|
|
|
|
|
xinput --set-prop 12 'libinput Accel Profile Enabled' 0, 1
|
|
xinput --set-prop 17 'libinput Accel Profile Enabled' 0, 1
|
|
|
|
|
|
STEAM_APPS=~/.steam/steam/steamapps
|
|
grep name $STEAM_APPS/appmanifest* | cut -d\" -f4 | while read game; do
|
|
bspc rule -a "*:*:$game" desktop="^VI" state=fullscreen
|
|
done
|
|
|