dots/.config/X11/xinitrc

58 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-05-07 02:53:16 +02:00
#!/bin/sh
2022-01-07 03:14:05 +01:00
userresources=$HOME/.config/X11/Xresources
usermodmap=$HOME/.config/X11/Xmodmap
2020-05-07 02:53:16 +02:00
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
2020-12-10 14:32:33 +01:00
if [ -f $sysresources ]; then xrdb -merge $sysresources; fi
if [ -f $sysmodmap ]; then xmodmap $sysmodmap; fi
if [ -f "$userresources" ]; then xrdb -merge "$userresources"; fi
if [ -f "$usermodmap" ]; then xmodmap "$usermodmap"; fi
2020-05-07 02:53:16 +02:00
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
# ______________________________
2021-08-31 14:30:17 +02:00
xset -b # disable bell
xset r rate 200 30 # adjust typematic delay & rate
2020-05-07 02:53:16 +02:00
2022-09-23 00:47:20 +02:00
# Shared
2022-05-11 01:19:26 +02:00
xbindkeys &
2020-12-10 14:34:54 +01:00
xbanish &
2022-09-24 11:15:56 +02:00
redshift -o -O "$(cat /tmp/temperature)" & # Run redshift in one shot mode
2022-09-23 00:47:20 +02:00
# DWM
# dwmblocks &
# udiskie &
# # No compositor
# # xsetroot -solid "#0a0a0a"
# # With compositor
# # hsetroot -solid "#0a0a0a"
# # picom &
# # execute dwm in a loop
# while true; do
# dwm 2> ~/.dwm.log
# done
# Openbox
# # udiskie --tray &
# # plank &
# # picom &
# # hsetroot -solid "#555555"
# # openbox
2022-09-24 11:15:56 +02:00
# Xmonad
xsetroot -solid "#0a0a0a"
xsetroot -cursor_name left_ptr
picom &
trayer --edge top --align right --SetDockType true --SetPartialStrut true \
--expand true --width 10 --transparent true --tint 0x111111 --height 25 &
2022-09-23 00:47:20 +02:00
exec xmonad