Последняя активность 1729231012

jarno's Avatar jarno ревизий этого фрагмента 1729231012. К ревизии

1 file changed, 15 insertions

scaling-toggle.sh(файл создан)

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