You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
520 B
Plaintext
31 lines
520 B
Plaintext
# Switch Caps and Escape
|
|
|
|
/usr/bin/setxkbmap -option caps:swapescape
|
|
|
|
# Key Repeat Rate
|
|
|
|
# xset r rate 280 40 # Defaults
|
|
xset r rate 300 50
|
|
|
|
# Set desktop background with feh
|
|
|
|
feh --bg-fill Pictures/wallpapers/mist_forrest.jpg
|
|
|
|
# DWM Statusbar with xorg-xsetroot
|
|
|
|
while true; do
|
|
|
|
# Build the status bar
|
|
status_bar=""
|
|
status_bar+=" $USER"
|
|
status_bar+=" $(cat /sys/class/power_supply/BAT0/capacity)%"
|
|
status_bar+=" $( date +"%F %R" )"
|
|
|
|
# Set the status bar
|
|
xsetroot -name "$status_bar"
|
|
sleep 1m
|
|
|
|
done &
|
|
|
|
exec dwm
|