You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
#!/usr/bin/env sh
[[ -f ~/.Xresources ]] && xrdb -merge ~/.Xresources
xset r rate 200 60 # Set keyboard delay in ms and repeat frequency in Hzsetxkbmap -option ctrl:swapcaps # Swap CapsLock with left CTRLxsetroot -cursor_name left_ptr # Change cursor to left pointer instead of X on root windowxset dpms 3660 3660 3660 # Set monitor power offxset s 3600 # Set screensaver timeoutxset b off # Disable PC speaker beepxset +fp /usr/share/fonts/local # Font dirsxset +fp /usr/share/fonts/miscxset fp rehash
picom -b # compositingdunst & # notificationsnumlockx & # turn on numlock#unclutter -root & # hide mouse cursor when not in usefeh --bg-center --no-xinerama ~/Images/Desktop\ Images/current & # set background image#jackd -t 4000 -X alsa_midi -d alsa -d hw:Uber -r 192000 -p 1024 -n 3 & # start jack audio serverjackd -t 4000 -X alsa_midi -d alsa -d hw:USB -r 192000 -p 512 -n 3 & # start jack audio server#(sleep 3 && loop2jack) & # set up loopback connections for alsa programs(sleep 1 && pulse2jack) & # set up pulseaudio bridge to jack
|