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.
17 lines
283 B
17 lines
283 B
#!/bin/bash
|
|
|
|
SIGNAL=~/.fehbg
|
|
rm -f $SIGNAL
|
|
|
|
OUTPUT=$(xrandr 2>/dev/null | grep -iv disconnected | grep -i 'connected' | head -n 1 | cut -d " " -f 1)
|
|
MODE=$1
|
|
|
|
xrandr --output $OUTPUT --mode $MODE -s $MODE
|
|
|
|
while [ -e $SIGNAL ]; do
|
|
sleep 0.1
|
|
done
|
|
|
|
sleep 1
|
|
|
|
killall -SIGUSR1 compton
|
|
|