This commit is contained in:
Daniel Bauer
2019-04-15 20:07:56 +02:00
parent d99889f0b2
commit ec15b8d3ac
31 changed files with 31 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
for output in $(xrandr | grep '\Wconnected' | awk '{ print $1 }'); do
if [[ $output =~ ^eDP.*$ ]]; then
xrandr --dpi 150
fi
done