xinit를 사용하여 시작하면 Conky가 다른 창 위에 나타납니다.

xinit를 사용하여 시작하면 Conky가 다른 창 위에 나타납니다.

xinit로 시작하는 두 개의 conky 창이 있습니다. 하나는 이전 구문을 사용하고 잘 작동합니다. 다른 하나는 새로운 구문을 사용하며 터미널에서 시작할 때 완벽하게 작동합니다. 그러나 xinit으로 시작하면 새로운 구문을 사용하는 창이 열려 있는 다른 모든 창 위에 나타납니다. 프로필을 저장하여 conky 재시작을 실행하면 예상대로 일반 창 아래에 나타납니다.

새로운 구문을 사용한 Conky 구성:

conky.config = {
  alignment =  'bottom_left',
  background = false,
  border_width =  1,
  cpu_avg_samples =  2,
  default_color =  'white',
  default_outline_color = 'black',
  default_shade_color = 'black',
  draw_borders =  false,
  draw_graph_borders =  false,
  draw_outline =  false,
  draw_shades =  false,
  use_xft =  true,
  font = "Fira Sans",
  gap_x = 30,
  gap_y = 69,
  border_inner_margin = 20,
  net_avg_samples =  2,
  no_buffers =  true,
  out_to_console =  false,
  out_to_stderr =  false,
  extra_newline =  false,
  own_window =  true,
  own_window_type = 'override',
  own_window_class =  Conky,
  own_window_argb_visual =  true,
  own_window_argb_value =  200,
  own_window_hints =  undecorated,below,sticky,skip_taskbar,skip_pager,
  stippled_borders =  0,
  update_interval =  1.0,
  uppercase =  false,
  text_buffer_size =  1024,
  double_buffer =  true,
  show_graph_scale =  false,
  show_graph_range =  false,
  draw_graph_borders =  false,
  lua_load = "/home/marcel/.dotfiles/conky/mpd.lua",
}

conky.text = '${texeci 10 artwork 2>&1 > /dev/null}${lua main}'

.xinitrc:

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
    for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
        [ -x "$f" ] && . "$f"
    done
    unset f
fi

conky -d -c ~/.dotfiles/conky/mpd.conky &
conky -c ~/.dotfiles/conky/system.conky &
compton -b --config ~/.dotfiles/compton/compton.conf &
dunst &
exec startxfce4

uname -a:

Linux Hermes 4.8.13-1-ARCH #1 SMP PREEMPT Fri Dec 9 07:24:34 CET 2016 x86_64 GNU/Linux

pacman -Q | grep conky:

conky 1.10.6-1

-d 옵션을 사용하거나 사용하지 않고 모든 own_window_type설정을 시도했습니다 background. 아무것도 작동하지 않는 것 같습니다.

관련 정보