dots/.xinitrc

38 lines
551 B
Plaintext
Raw Permalink Normal View History

2022-06-01 08:05:20 +01: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
2023-11-15 00:09:25 +00:00
sh $SCRIPTS/kbd/kbfr
2022-08-21 18:20:09 +01:00
sh $SCRIPTS/kbd/capsctrl
2022-06-01 08:05:20 +01:00
# keybinds
sxhkd &
# start compositor
2022-12-03 16:14:16 +00:00
picom -b
2022-06-01 08:05:20 +01:00
# unstrain eyes
redshift -l 53:0 &
# external drive management
udiskie &
# notifications
dunst &
2023-11-15 00:10:31 +00:00
# status bar
#dwmstatus &
sh "$HOME/src/dwm-bar/dwm_bar.sh" &
2022-06-01 08:05:20 +01:00
# start window manager
exec dwm
# vim: set ft=sh: