LXDE 패널은 오른쪽 정보 앱을 오른쪽으로 이동합니다.

LXDE 패널은 오른쪽 정보 앱을 오른쪽으로 이동합니다.

정보앱(배터리, 캘린더, 볼륨 등)을 패널 오른쪽으로 옮기는 방법을 모르겠습니다. 예기치 않게 자동으로 패널 중앙으로 이동합니다. 어떤 아이디어가 있나요? 내 화면 사진은 다음과 같습니다.

여기에 이미지 설명을 입력하세요.

답변1

패널 레이아웃을 정의하는 파일은 ~/.config/lxpanel//panels에 있습니다. 디렉토리의 각 파일은 패널을 정의합니다. 시작 시 이러한 파일에 정의된 모든 패널이 로드됩니다. 기본 구성 파일은 아래와 같습니다. 수정이 필요하다고 생각되는 부분만 붙여넣었습니다.

>     # Global section: defines appearance and behavior of this panel.      
>     Global 
>     {
>     edge=bottom    # The edge this panel attaches to
>     allign=left    # alignment: left/center/right
>     margin=0       # margin: margin to the edge of the whole screen
>     widthtype=percent   # percent/pixel
>     width=100      # width of the panel: The unit used here is according to widthtype.
>     height=26      # height of the panel
>     transparent=0  # use (pseudo-)transparent background: on=1, off=0
>     tintcolor=#000000  # color blended with the backgroud when transparency is used.
>     alpha=0    # alpha value used to blend tintcolor with background.
>     setdocktype=1   # ask the window manager to treat the panel as a dock.
>     setpartialstrut=1  # ask the window manager to reserve the space for the panel and not to cover it with maximized windows
>     usefontcolor=1   # use customize colors for the text instead of that defined in system theme.
>     fontcolor=#ffffff   # color of text on the panel (Currently this is only supported by clock applet)
>     background=1    # use customize image to draw the background of the panel. (cannot be used with transparent)
>     backgroundfile=/usr/share/lxpanel/images/background.png  # The image file used. 
>     }

allign따라서 변수를 편집해야 합니다 .

관련 정보