compton、openbox、Catalyst-hooを使用して、ウィンドウサイズをゆっくり調整して固定します。

compton、openbox、Catalyst-hooを使用して、ウィンドウサイズをゆっくり調整して固定します。

Arch Linuxを使用するための2回目の試みです。

このインストールでは、次のようになります。

  • アンボクシング
  • トーン2
  • コンプトン
  • 触媒フック(Vi0L0's)

comptonを起動した後、端末に入力した内容を見ることができず、ビデオ(フラッシュ/html)が全画面で停止し、チームビューアが動作を停止し、ウィンドウのサイズ変更が非常に遅くなります。

comptonを終了するとすべてが機能しますが、サイズ変更はまだ遅いです。

この問題をどのように解決できますか?

~/config/compton.conf

backend = "glx";
paint-on-overlay = true;
glx-no-stencil = true;
glx-no-rebind-pixmap = true;
refresh-rate = "60";
vsync="none"

# Shadow
shadow = false;
no-dock-shadow = true;     # Avoid drawing shadows on dock/panel windows.
no-dnd-shadow = true;  # Don't draw shadows on DND windows.
shadow-exclude = [ "n:w:*Firefox*" ]; # Not sure what it does or if it works

# Fading
fading = false;
no-fading-openclose = true

/etc/X11/xorg.conf

Section "ServerLayout"
   Identifier     "aticonfig Layout"
   Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "Monitor"
   Identifier   "aticonfig-Monitor[0]-0"
   Option       "VendorName" "ATI Proprietary Driver"
   Option       "ModelName" "Generic Autodetecting Monitor"
   Option       "DPMS" "true"
EndSection

Section "Device"
   Identifier  "aticonfig-Device[0]-0"
   Driver      "fglrx"
   BusID       "PCI:1:0:0"
EndSection

Section "Screen"
   Identifier "aticonfig-Screen[0]-0"
   Device     "aticonfig-Device[0]-0"
   Monitor    "aticonfig-Monitor[0]-0"
   DefaultDepth     24
   SubSection "Display"
      Viewport   0 0
      Depth     24
   EndSubSection
EndSection

~/.config/openbox/autostart.sh

tint2 &
sh ~/.fehbg &
conky -c ~/.conky/conkyrc_grey &
compton --backend glx --paint-on-overlay --glx-no-stencil --vsync opengl-swc --shadow-e
xclude "! name~=''" --config ~/.config/compton.conf -b &
pulseaudio --start &

~/.xinitrc

#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

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

# exec gnome-session
# exec startkde
# exec startxfce4
# ...or the Window Manager of your choice
exec openbox-session

答え1

ATI Radeon HD 6310があります。

私が使用するcompton.conf設定は次のとおりです。

backend = "glx";
paint-on-overlay = false;
glx-no-stencil = true;
refresh-rate = 0;
vsync = "opengl-mswc";

彼らは非常にうまく動作します。たぶん彼らはあなたにも助けることができますか?

関連情報