blob: 360fe49d2cd81e8c6b02662ca33d645b24e77e17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
#!/bin/sh
# randr=$(xrandr --query | grep -A 1 DP-4)
# if  ! printf "%s" "${randr}" | grep 2560x1440+0+0 >/dev/null 2>&1;
# then
# 	# ! printf "%s" "${randr}" | grep '144.00\*';
# fi
xrandr --output DP-4 --mode 2560x1440 --rate 144 --pos 0x0 --rotate normal --primary
xrandr --output HDMI-0 --off
xrandr --output DP-0 --off
xrandr --output DP-1 --off
xrandr --output DP-2 --off
xrandr --output DP-3 --off
xrandr --output DP-5 --off
# feh --no-fehbg --image-bg '#1d2021' --no-xinerama --bg-fill "$HOME"/pics/wp.jpg
setwp "$HOME"/pics/platform.jpg
  |