From d89b3050af139cd390e36c4cbd48e830acec15a5 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 1 Sep 2017 08:25:36 -0300 Subject: Compositor support (compton or xcompmgr) --- Xresources.dot.link | 5 +++++ xsessionrc.dot.link | 14 ++++++++++++++ 2 files changed, 19 insertions(+) diff --git a/Xresources.dot.link b/Xresources.dot.link index d51175b..d7853e6 100644 --- a/Xresources.dot.link +++ b/Xresources.dot.link @@ -44,3 +44,8 @@ URxvt.color15: #ffffff ! Terminal font with powerline support URxvt*font: xft:Terminus:pixelsize=14,xft:Inconsolata\ for\ Powerline:pixelsize=14 + +! Seee https://wiki.archlinux.org/index.php/HiDPI#X_Resources +Xft.dpi: 96 +Xft.hinting: 1 +Xft.hintstyle: hintmedium diff --git a/xsessionrc.dot.link b/xsessionrc.dot.link index beee2f6..2d54b25 100755 --- a/xsessionrc.dot.link +++ b/xsessionrc.dot.link @@ -39,6 +39,20 @@ elif [ "$BACKGROUND" != "unset" ]; then xsetroot -solid '#1C1C1C' fi +# See https://wiki.archlinux.org/index.php/Compton +if which compton > /dev/null 2>&1; then + if [ -e "$HOME/.config/compton.conf" ]; then + compton --config $HOME/.config/compton.conf -b + else + compton -b + fi +fi + +# See https://wiki.archlinux.org/index.php/Xcompmgr +if which xcompmgr > /dev/null 2>&1; then + xcompmgr -c & +fi + # Set window manager if [ -z "$WINDOW_MANAGER" ]; then WINDOW_MANAGER='awesome' -- cgit v1.2.3