0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GDMログイン画面をHiDPIディスプレイに対応する

Posted at

はじめに

前回(GNOMEデスクトップでHiDPIディスプレイに対応する)の続きです。

高解像度のディスプレイを使用するとGDMのログイン画面がとても小さくて見えづらいので改善します。

スクリーンショット 2020-03-01 17.31.07.png 図 GDMのログイン画面 視力検査をしているかのよう。

スケールを変更する

一般ユーザーであれば設定からスケールを変更できますが、GDMのログイン画面は、gdmという一般ではないユーザーが管理しているため同じ方法が取れません。そこでdconfの設定を変更します。

GDMユーザーにログインする

$ sudo su - gdm -s /bin/bash

(※ -sオプションについて知った。今までpasswdをvipwから/sbin/nologinを編集していたので結構危ないことをしていた。)

スケールを2倍の設定にする(整数倍のみ)

$ dbus-launch gsettings set org.gnome.desktop.interface scaling-factor 2

gsettingsを直接実行するとX11に関するエラーが通知される。

設定を確認する

$ dconf dump / | grep scaling-factor
scaling-factor=uint32 2

再起動するとスケールが変更された画面が表示されます。

スクリーンショット 2020-03-01 17.33.00.png 図 scaling-factor 2のGDMログイン画面

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?