aboutsummaryrefslogtreecommitdiff
path: root/dwm-scale
blob: 704ac45620e063ee1ebf4fecca71e10baed155c9 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash

X=$(xrandr --current | grep -c '1600')

if [ "$X" = "0" ]; then
	xrandr --output LVDS1 --panning 1600x900  --scale 1.171x1.172
else
	xrandr --output LVDS1 --panning 1366x768 --scale 1x1
fi