デスクトップ環境 - 共通事項 - 端末エミュレータ - Alacritty - gtk_theme_variant
- 1. 概要
- 2. gtk_theme_variant
1. 概要
今まで(2022年12月1日)、特になんの支障もなく使っていたのですが、「Garuda Linux 230305」を使用していて。
開くたびに、下部に警告が表示されるようになっています。
2. gtk_theme_variant
言われているようにログを見てみます。
[0.063262523s] [WARN ] [alacritty_config_derive] Config warning: gtk_theme_variant has been deprecated; use window.decorations_theme_variant instead
まぁ、警告の表示とたいして違わぬ内容ですわな。
対処します。
本ページは、下記のサイトを参考にさせていただきました。
「Alacritty deprecated theme variant? - Issues & Assistance - Garuda Linux Forum」
結局、コンフィグレーションファイルをいじることになります。
ログインユーザで。
vi ~/.config/alacritty/alacritty.yml
# GTK theme variant (Linux/BSD only)
#
# Override the variant of the GTK theme. Commonly supported values are `dark` and `light`.
# Set this to `None` to use the default theme variant.
gtk_theme_variant: dark
81行目を下記へ変更します(なんのテーマを使えるかよう知らんので)。
gtk_theme_variant: None
これで、警告は表示されなくなります。
|
|