2023-12-28 04:18:32 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# This is called by xinitrc during x startup
|
|
|
|
|
|
|
|
# Run multi-monitor config if it exists
|
|
|
|
if [ -f ".screenlayout/default.sh" ]; then
|
|
|
|
. ".screenlayout/default.sh" &
|
|
|
|
fi
|
|
|
|
|
2023-12-30 21:00:57 -05:00
|
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
2023-12-28 04:18:32 -05:00
|
|
|
picom -b & # Compositor
|
2023-12-28 05:19:17 -05:00
|
|
|
xset r rate 200 100 & # Key repeat rate
|
2023-12-28 04:18:32 -05:00
|
|
|
unclutter & # Hide mouse cursor after inactivity
|
2023-12-28 05:19:17 -05:00
|
|
|
redshift -l 43:-70 & # Tint screen at night if you're in new england (this should be changed)
|
2023-12-28 04:18:32 -05:00
|
|
|
xclip & # Make clipboard work
|