37 lines
959 B
Plaintext
37 lines
959 B
Plaintext
# set the font
|
|
font pango:JetBrainsMonoNLNerdFont-Regular 10
|
|
|
|
# launch polybar
|
|
exec_always --no-startup-id $XDG_CONFIG_HOME/polybar/launch.sh
|
|
|
|
# set the border width (and remove title bars)
|
|
default_orientation vertical
|
|
for_window [class=".*"] border pixel 1
|
|
# for_window [floating] border pixel 5
|
|
for_window [class=".*"] split toggle
|
|
|
|
set $scr1 "eDP-1"
|
|
set $scr2 "HDMI-1"
|
|
|
|
# set xrandr settings
|
|
exec_always xrandr --auto \
|
|
--output $scr1 --dpi 96 --primary \
|
|
--output $scr2 --dpi 96 --above $scr1
|
|
|
|
# attach each workspace to a specific screen
|
|
workspace $ws1 output $scr1
|
|
workspace $ws2 output $scr1
|
|
workspace $ws3 output $scr1
|
|
workspace $ws4 output $scr1
|
|
workspace $ws5 output $scr1
|
|
workspace $ws6 output $scr1
|
|
workspace $ws7 output $scr1
|
|
workspace $ws8 output $scr1
|
|
workspace $ws9 output $scr1
|
|
workspace $ws10 output $scr2
|
|
workspace $ws11 output $scr2
|
|
workspace $ws12 output $scr2
|
|
|
|
# update the satellite render
|
|
exec_always satallite-wp-update
|