Last active 1729231012

scaling-toggle.sh Raw
1#!/usr/bin/sh
2## Script to toggle text scaling factor in GNOME between
3## 1.0 and 1.25
4
5SCALE=$(dconf read /org/gnome/desktop/interface/text-scaling-factor)
6
7if [ $SCALE == '1.0' ]; then
8 SCALE_SWITCH=1.25
9elif [ $SCALE == '1.25' ]; then
10 SCALE_SWITCH=1.0
11fi
12
13notify-send --transient "Previous Font Scale: $SCALE, Switched to $SCALE_SWITCH"
14
15dconf write /org/gnome/desktop/interface/text-scaling-factor $SCALE_SWITCH