You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
calculate-overlay/profiles/templates/3.6/6_ac_desktop_profile/2-user/lxqt-base/LXQt-0.10/.config/autostart/setdpi.sh

20 lines
395 B

# Calculate chmod=0755
#!/bin/bash
DPI="$(sed -nr '/name="dpi"/{n;s/[^0-9]+//gp}' ~/.config/fontconfig/fonts.conf)"
if [[ $DPI =~ ^[0-9]+$ ]]
then
xrandr --dpi $DPI
resfile=~/.Xresources
if grep "Xft.dpi" $resfile &>/dev/null
then
sed -i "s/^Xft.dpi:.*/Xft.dpi: $DPI/" $resfile
else
echo "Xft.dpi: $DPI" >>$resfile
fi
xrdb -load $resfile
fi
exit 0