Lets group these things together too

This commit is contained in:
David Heinemeier Hansson
2024-06-04 13:14:53 -07:00
parent d7f5890fd5
commit ae9c887e1a

View File

@@ -0,0 +1,6 @@
COMPUTER_MAKER=$(sudo dmidecode -t system | grep 'Manufacturer:' | awk '{print $2}')
SCREEN_RESOLUTION=$(xrandr | grep '*+' | awk '{print $1}')
if [ "$COMPUTER_MAKER" == "Framework" ] && [ "$SCREEN_RESOLUTION" == "2256x1504" ]; then
gsettings set org.gnome.desktop.interface text-scaling-factor 0.8
fi