dots/.xinitrc

36 lines
493 B
Plaintext
Raw Normal View History

2022-06-01 09:05:20 +02:00
# get our colours
xrdb -load ~/.Xresources
# set background
sh ~/.fehbg
# set cursor to a nice one and also make it disappear when we're typing
xsetroot -cursor_name left_ptr
xbanish &
# set keyboard layout, map caps lock to ctrl and esc
setxkbmap gb
2022-08-21 19:20:09 +02:00
sh $SCRIPTS/kbd/capsctrl
2022-06-01 09:05:20 +02:00
# keybinds
sxhkd &
# start compositor
2022-12-03 17:14:16 +01:00
picom -b
2022-06-01 09:05:20 +02:00
# unstrain eyes
redshift -l 53:0 &
# external drive management
udiskie &
# notifications
dunst &
dwmstatus &
# start window manager
exec dwm
# vim: set ft=sh: