Janela redimensionar lentamente e congelar com compton, openbox e catalisador-hoo

1

Estou tentando usar o Arch Linux pela segunda vez.

Nesta instalação eu recebo:

  • openbox
  • tint2
  • compton
  • gancho de catalisador (Vi0L0's)

Depois de iniciar o compton, não consigo ver o que estou digitando no terminal, os vídeos (flash / html) congelam em tela cheia, o teamviewer pára de funcionar e o redimensionamento de qualquer janela é extremamente lento.

Se eu matar o compton, tudo funcionará, MAS o resize continuará lento.

Como posso consertar isso?

~ / 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
    
por Patrick Maciel 27.07.2014 / 22:41

1 resposta

1

Eu tenho uma ATI Radeon HD 6310.

Estas são as configurações do compton.conf que eu uso:

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

Eles funcionam muito bem. Talvez eles te ajudem também?

    
por 30.01.2015 / 11:54