blob: 3fdd16f4df8c6998085b243a8277b1ea75c38d6c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#!/bin/bash
# Switch the displays around because the default state is for them to be reversed.
xrandr --output DVI-I-1 --right-of DP-5 --mode 2560x1440
# Change the background image using 'feh'
feh --bg-scale "$HOME/.xmonad/wallpaper.jpg"
# Increase the kebyoard repeat rate and decrease the repeat time.
xset r rate 200 60
# Run the screensaver so I can lock it.
nohup xscreensaver -no-splash & > /dev/null
# Run a compositer to make things a little prettier.
if [ ! -z "$(ps aux | grep compton | grep -v grep)" ] ; then
killall compton
fi
nohup compton --backend glx --paint-on-overlay & > /dev/null
# Set the cursor to not be a big X
xsetroot -cursor_name left_ptr
|