11 lines
246 B
Plaintext
11 lines
246 B
Plaintext
|
#/bin/bash
|
||
|
|
||
|
# Setup our monitors
|
||
|
xrandr --output HDMI-A-0 --mode 1920x1080 --output DisplayPort-0 --mode 2560x1440 --right-of HDMI-A-0
|
||
|
|
||
|
# Apply our wallpaper
|
||
|
feh --bg-scale /etc/nixos/assets/chinatown.png
|
||
|
|
||
|
# Launch our window manager
|
||
|
exec xmonad
|