구성에서 실행되지 않는 상태 표시줄 아이콘의 위치를 ​​어떻게 변경합니까?

구성에서 실행되지 않는 상태 표시줄 아이콘의 위치를 ​​어떻게 변경합니까?

저는 현재 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

관련 정보