1. 概要
2026年4月20日、「Alpine Linux 3.23.3」で、「jgmenu」を使ってみました。
2. インストール
「root」ユーザ権限で。
apk add jgmenu papirus-icon-theme tint2 tint2-lang
3. tint2 設定
「tint2」の自動起動を設定します。
ログインユーザで。
sh
cat << 'EOF' >> ~/.config/openbox/autostart
tint2 &
EOF
exit
「tint2」のコンフィグレーションファイルを編集します。
mkdir -pv ~/.config/tint2
cp /etc/xdg/tint2/tint2rc ~/.config/tint2/.
vi ~/.config/tint2/tint2rc
panel_position = bottom center horizontal
panel_layer = top
パネルを上へ、アプリケーション起動時は、アプリケーションを優先に。
panel_position = top center horizontal
panel_layer = bottom
taskbar_name_font_color = #e3e3e3 100
フォント設定。
上記の行の後ろに。
taskbar_name_font = MigMix 1M 12px
launcher_item_app = tint2conf.desktop
launcher_item_app = firefox.desktop
launcher_item_app = iceweasel.desktop
launcher_item_app = chromium-browser.desktop
launcher_item_app = google-chrome.desktop
上記をすべてコメントアウトして、下記の1行を追加。
launcher_item_app = jgmenu.desktop
ログインしなおせば、設定が反映されているはずです。
4. jgmenu 設定
「papirus-icon-theme」をインストールしたものの、デフォルトのアイコンがユニークなので、そのまま使用します。
以下、ログインユーザで。
mkdir -pv ~/.config/jgmenu
sh
cat << 'EOF' >> ~/.config/jgmenu/jgmenurc
menu_margin_x = 10
menu_margin_y = 40
item_height = 22
font = MigMix 1M bold 9
icon_theme = Papirus
color_sel_bg = #ffffff 40
csv_name_format = %n
EOF
cat << 'EOF' >> ~/.config/jgmenu/append.csv
^sep()
ログアウト,pkill openbox,system-log-out
再起動,sudo /sbin/reboot,system-restart-panel
シャットダウン,sudo /sbin/poweroff,system-shutdown
EOF
exit