awesome - 共通事項 - フォント

クラウディア 
1. 概要
2. インストール
3. ArcoLinux
4. Manjaro

1. 概要

 「awesome」で使っているフォント、あまり見た目悪くないですが、一応、変更の仕方を・・・。  使用するフォントは、ここんとこ(2020年5月28日)のお気に入り、「MigMix 1M」を。

2. インストール

 インストール方法は、各プラットフォームに記述してあります。

3. ArcoLinux

 ログインユーザで。

vi ~/.config/awesome/rc.lua
 (行番号は、バージョンにより異なります)

-- choose your theme here
local chosen_theme = themes[1]

local theme_path = string.format("%s/.config/awesome/themes/%s/theme.lua", os.getenv("HOME"), chosen_theme)
beautiful.init(theme_path)
 の後ろに

beautiful.font              = "MigMix 1M Regular 10"
beautiful.notification_font = "MigMix 1M Bold 14"
 ちゅう、行をいれてみましたが、変わったんだか、変わってないんだか、ようわかりません。

4. Manjaro

 ログインユーザで

vi ~/.config/awesome/rc.lua

-- {{{ Variable definitions
-- Themes define colours, icons, font and wallpapers.
-- Chosen colors and buttons look alike adapta maia theme
beautiful.init("/usr/share/awesome/themes/cesious/theme.lua")
beautiful.icon_theme        = "Papirus-Dark"
beautiful.bg_normal         = "#222D32"
beautiful.bg_focus          = "#2C3940"
beautiful.titlebar_close_button_normal = "/usr/share/awesome/themes/cesious/titlebar/close_normal_adapta.png"
beautiful.titlebar_close_button_focus = "/usr/share/awesome/themes/cesious/titlebar/close_focus_adapta.png"
beautiful.font              = "Noto Sans Regular 10"
beautiful.notification_font = "Noto Sans Bold 14"
 51~52行目を下記のように書き換えます。

beautiful.font              = "MigMix 1M Regular 10"
beautiful.notification_font = "MigMix 1M Bold 14"
earthcar(アースカー)