30 lines
1005 B
Bash
30 lines
1005 B
Bash
#!/bin/sh
|
|
|
|
# keyboard
|
|
numlockx
|
|
|
|
# display
|
|
xrandr \
|
|
--output HDMI1 --auto --primary
|
|
feh --bg-fill "$XDG_CONFIG_HOME/wallpapers/monerochan.png" --no-fehbg
|
|
|
|
# startup
|
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 & # arch
|
|
#/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 & # debian
|
|
#/usr/libexec/polkit-gnome-authentication-agent-1 & # fedora
|
|
picom &
|
|
redshift &
|
|
dunst &
|
|
sbar &
|
|
|
|
xss-lock -- lock &
|
|
if ls -d /sys/class/power_supply/BAT*/ > /dev/null 2>&1; then
|
|
xset dpms 300 300 300 # Turn of the screen after 5 min
|
|
xset s 315 # Lock Screen after 15 secs later
|
|
else
|
|
xset dpms 1800 1800 1800 # Turn of the screen after 30 min
|
|
xset s 1815 # Lock Screen 15 sec later
|
|
fi
|
|
|
|
exec dbus-launch dwm
|