Created
July 28, 2014 03:00
-
-
Save patrickmaciel/5601d73aa32d7c3d6879 to your computer and use it in GitHub Desktop.
Openbox, compton and Catalyst-hoook slowly in Arch Linux
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 & |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment