構成で実行されていないステータスバーアイコンの位置をどのように変更しますか?

構成で実行されていないステータスバーアイコンの位置をどのように変更しますか?

私は現在Ubuntu(20.04)ノートブックをカスタマイズする方法を学んでおり、現在i3、i3status、およびPolybarを使用しています。ただし、ステータスバーにステータスアイコンが表示されますが、これは設定しません。 (時にはi3statusにありますが、ほとんどPolybarにあります)

ここに画像の説明を入力してください。

一番右のネットワークアイコンは私が得たものであり、私のプロフィールにはそのアイコン(または他のアイコン)に関連するものはありません。

I3 状態の設定

general {
    output_format = "dzen2"
    colors = true
    interval = 5
}

order += "tztime local"

tztime local {
    format = "%Y-%m-%d %H:%M:%S"
    timezone = "Europe/Amsterdam"   
}

ポリゴンポール構成

[bar/mybar]
modules-center = date
modules-right = battery
background = ${colors.base}
font-0 = JetBrainsMono Nerd Font:style=Regular:size=12

[global/wm]
include-file = ~/.config/polybar/macchiato.ini

[module/date]
type = internal/date
interval = 5.0
date = " %Y-%m-%d %H:%M "

[module/battery]
label-full = "  %percentage%% "
label-charging = "  %percentage%% "
type = internal/battery
full-at = 99
low-at = 10
format-full-background = ${colors.pink}
format-full-foreground = ${colors.base}
format-charging-background = ${colors.pink}
format-charging-foreground = ${colors.base}

[settings]
screenchange-reload = true

Macchiato.iniは色だけを塗りつぶします。

;-------------------------
; Catppuccin Macchiato Palette
; Maintainer: justTOBBI
;--------------------------

[colors]
 base = #24273a
 mantle = #1e2030
 crust = #181926

 text = #cad3f5
 subtext0 = #a5adcb
 subtext1 = #b8c0e0

 surface0 = #363a4f
 surface1 = #494d64
 surface2 = #5b6078
 
 overlay0 = #6e738d
 overlay1 = #8087a2
 overlay2 = #939ab7
 

 blue = #8aadf4
 lavender = #b7bdf8
 sapphire = #7dc4e4
 sky = #91d7e3
 teal = #8bd5ca
 green = #a6da95
 yellow = #eed49f
 peach = #f5a97f
 maroon = #ee99a0
 red = #ed8796
 mauve = #c6a0f6
 pink = #f5bde6
 flamingo = #f0c6c6
 rosewater = #f4dbd6

 transparent = #FF00000

ベストアンサー1

おすすめ記事