私はハードウェアエラーのために5年以上愛されているGentooインストールを失った後、FreeBSDに切り替えました。私はこれがソースコードベースのオペレーティングシステムを探索して使用する際の次の論理的なステップだと思います。読んだらFreeBSD関連ドキュメント、XOrgサーバーをインストールするとき、5.6 - XOrgセクションでフォントを使用する私の注目を集めた。私は次の行を追加したことがないことに気づきました。
Section "Files"
FontPath "/usr/share/fonts/...."
EndSection
これで、Gentooインストールにあるすべてのフォントに対してDEが不都合に見える理由を理解しています。障害のある片手タイピストとして、タイピングを手動で編集することがより困難になり、Files Section
最後の手段として手動でフォントを追加することを好む。それでは、私がまだ見つけていない誰かが作成したツールや、ここで読者が本当にうまく作る素晴らしいシェルスクリプトなどを使ってファイルセクションに出力を追加する方法はありますかfc-list : file
?xorg.conf
ノートnvidia-xconfig
: 以前はファイルを生成する方法を使用していたxorg.conf
ため、今日推奨されているモジュラーアプローチとは離れています。必要に応じて、conf.dメソッドを生成された構成と混合して一致させることはできますか?
答え1
質問を理解し、システムにvimがインストールされている場合(単にコマンドなvi
ので動作しますex
)、
端末で次のコマンドを実行すると、次のようになります。
- ファイルを読むには:
xorg.conf
- 明らかに変更したいファイルに置き換えます。注:このファイルxorg.conf
はいいえスクリプトに問題がある場合は修正してください。 - テキスト操作をしてみてください
- コマンドの出力はファイルに保存されます。
/tmp/temp_xorg.conf
これらの操作後の状態に満足したら、/tmp/temp_xorg.conf
実際に動作するxorg設定ファイルの場所にコピーできます。
コマンドの実行
xorg confファイルに入れることができる形式でフォントパスディレクトリを作成するには、シェルプロンプトでこのコマンドを実行します(このコマンドを提供した@meuhに感謝します)。
fc-list : file | sed -E 's#(.*)/.*#\tFontPath "\1"#' | sort -u > /tmp/filepaths.txt
次に、上記のコマンドの出力を取得し、ファイルセクションに挿入するこのコマンドを実行します。
$ vim -e xorg.conf << 'EOF'
" move cursor to the line with the text: `Section "Files"`
/Section "Files"
" read in the output of `fc-list` at this point
r !fc-list
write /tmp/temp_xorg.conf
EOF
たとえば、xorg.conf
次のような場合:
Section "InputClass"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
Section "Files"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
Section "InputClass"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
上記のコマンドを実行した後、/tmp/temp_xorg.conf
次のようになります。
Section "InputClass"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
Section "Files"
FontPath "/home/ubuntu/.fonts"
FontPath "/usr/share/fonts/opentype/noto"
FontPath "/usr/share/fonts/opentype/stix"
FontPath "/usr/share/fonts/opentype/stix-word"
FontPath "/usr/share/fonts/truetype"
FontPath "/usr/share/fonts/truetype/abyssinica"
FontPath "/usr/share/fonts/truetype/ancient-scripts"
FontPath "/usr/share/fonts/truetype/dejavu"
FontPath "/usr/share/fonts/truetype/fonts-guru-extra"
FontPath "/usr/share/fonts/truetype/freefont"
FontPath "/usr/share/fonts/truetype/kacst"
FontPath "/usr/share/fonts/truetype/kacst-one"
FontPath "/usr/share/fonts/truetype/lao"
FontPath "/usr/share/fonts/truetype/lato"
FontPath "/usr/share/fonts/truetype/liberation"
FontPath "/usr/share/fonts/truetype/lohit-punjabi"
FontPath "/usr/share/fonts/truetype/nanum"
FontPath "/usr/share/fonts/truetype/openoffice"
FontPath "/usr/share/fonts/truetype/padauk"
FontPath "/usr/share/fonts/truetype/sinhala"
FontPath "/usr/share/fonts/truetype/takao-gothic"
FontPath "/usr/share/fonts/truetype/tibetan-machine"
FontPath "/usr/share/fonts/truetype/tlwg"
FontPath "/usr/share/fonts/truetype/ttf-khmeros-core"
FontPath "/usr/share/fonts/truetype/ubuntu-font-family"
FontPath "/usr/share/fonts/type1/gsfonts"
FontPath "/usr/share/fonts/X11/Type1"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
Section "InputClass"
Identifier "trackpoint catchall"
MatchIsPointer "true"
MatchProduct "TrackPoint|DualPoint Stick"
MatchDevicePath "/dev/input/event*"
Option "Emulate3Buttons" "true"
Option "EmulateWheel" "true"
Option "EmulateWheelButton" "2"
Option "XAxisMapping" "6 7"
Option "YAxisMapping" "4 5"
EndSection
答え2
質問の「混合と一致」構成部分への答えは「一種の」です。
マニュアルxorg.conf
ページには、「同じ情報が複数の方法で提供される場合、優先順位が最も高いメカニズムが使用されます」という内容とともに、優先順位に従って構成ソースがリストされています。
観察によると、(マンページに「同じ情報」と「1つ以上の方法」が明確に定義されていないため)、これは優先順位が低いため、ファイルを使用して(フォントなど)xorg.conf
セクションSection "Files"
を上書きまたは更新できないを意味します。xorg.conf.d
。優先順位の低いファイルを読み取って解析しても、優先順位の高いセクションがすでに存在するファイルの場合、セクションの内容は自動的に無視されます。
現在Nvidiaドライバ(396、Linuxのみ)するこれでフラグメントが使用されますが、xorg.conf.d
Linux DRM Xorgドライバにのみ使用されます。このドライバは、インストール中に依然としてほぼモノリスに近いフラグメントを生成しますxorg.conf
。
幸いなことに、このセクションは変更されていないので、役に立つnvidia-xconfig
場合はコメントアウトして1つ以上のファイルxorg.conf
に移動できます。xorg.conf.d
同じ優先順位を持つ複数の重複エントリ(つまり、すべて単一のディレクトリxorg.conf.d
にあります)する結果は期待どおりにマージされた値です。
指示を生成する簡単な方法は次のとおりです。
fc-list -f 'Fontpath "%{file|dirname}"\n' : | sort -u
これは、フォーマットされた出力(-f
)を使用して各フォントのファイル名である必要なfc-list
構成行を生成します。%{file}
|dirname
フィルターディレクトリ名(dirname
シェルコマンドとまったく同じ)とsort -u
一意のパスを印刷します。フォントが多い場合はパスの順序を変更でき、ビットマップバージョンがある場合は次の手順で順序を変更できます。
fc-list -f ' Fontpath "%{file|dirname}"\n' :scalable=true | sort -u
fc-list -f ' Fontpath "%{file|dirname}"\n' :scalable=false | sort -u
必要に応じてこの出力を貼り付けることができます。またはすべてのステップの例として(ルートとして)
# extract Files section from xorg.conf to a separate conf
sed -n '/^Section..Files/,/^EndSection/p' \
< /etc/X11/xorg.conf > /etc/x11/xorg.conf.d/10-section-files.conf
# comment out Files section in xorg.conf
sed -i.bak '/^Section..Files/,/^EndSection/ s/^/#/' /etc/X11/xorg.conf
# paths for scalable fonts
( echo 'Section "Files"';
fc-list -f ' Fontpath "%{file|dirname}"\n' :scalable=true | sort -u;
echo 'EndSection' ) > /etc/X11/xorg.conf.d/20-fontpath.conf
# paths for non-scalable fonts
( echo 'Section "Files"';
fc-list -f ' Fontpath "%{file|dirname}"\n' :scalable=False | sort -u;
echo 'EndSection' ) > /etc/X11/xorg.conf.d/30-fontpath-fixed.conf
必要に応じて重複項目を並べ替えて削除し、X を再起動します。
完全性のために、インスタントでフォントパスを変更することもできますxset
。
xset +fp /usr/local/share/fonts/TTF
現在のパスを確認するために使用しますxset q
。.xinitrc
フォントパスが後続のX構成の変更に関係なく維持され、Xを再起動したときに保存できるように、スクリプトにこれらのコマンドを追加するように簡単に変更できます。