14 lines
330 B
Bash
Executable File
14 lines
330 B
Bash
Executable File
#!/bin/sh
|
|
export XCURSOR_SIZE=32
|
|
export XCURSOR_THEME=default
|
|
export GTK_THEME_NAME=Breeze-Dark
|
|
xrdb -merge ~/.Xresources
|
|
xrandr --output DP-0 --mode 3440x1440 --rate 144 --primary
|
|
xset r rate 200 40
|
|
feh --no-fehbg --bg-fill ~/.images/$(ls ~/.images | shuf -n 1)
|
|
redshift&
|
|
solaar --window=hide&
|
|
dwmblocks&
|
|
mpd;mpd-mpris&
|
|
exec dwm
|