realmazharhussain / gdm-tools

(Deprecated) Command-line tools for GNOME's login manager, GDM
GNU General Public License v3.0
95 stars 4 forks source link

Any way to scale the login (greeter) screen to 2x with gdm-tools #19

Closed Amondale closed 2 years ago

Amondale commented 2 years ago

Description

Not sure if this should be a feature request, or I just missed something in the man pages. I have login screens that don't seem to respect the scaling set in the running gdm theme? Don't know if I'm saying this right, I'd like to scale the greeter screen 2x without doing it globally if possible.

Explaination

No response

realmazharhussain commented 2 years ago

No. There is no way to do it with gdm-tools. But you can do it manually. Just run the following commands in terminal

machinectl shell gdm@ /usr/bin/env gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"
sudo cp -T ~/.config/monitors.xml ~gdm/.config/monitors.xml
sudo chown gdm: ~gdm/.config/monitors.xml

If you are on a Debian based system, replace the word gdm in above commands with Debian-gdm.

Amondale commented 2 years ago

@realmazharhussain Thank you for that tidbit! I found what looks like a slightly simpler way to do this but your way is a "one-liner" so pretty simple! Thanks again!