Skip to content
Snippets Groups Projects
Commit 0507996c authored by Ruben Rodriguez's avatar Ruben Rodriguez
Browse files

Fixed mising escapes in make-compton

parent 4d62e9fa
No related branches found
No related tags found
No related merge requests found
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# #
VERSION=4 VERSION=5
. ./config . ./config
...@@ -47,10 +47,10 @@ cat << EOF > compton-launcher ...@@ -47,10 +47,10 @@ cat << EOF > compton-launcher
#!/bin/sh #!/bin/sh
[ \$DESKTOP_SESSION = "trisquel-session" ] || exit 0 [ \$DESKTOP_SESSION = "trisquel-session" ] || exit 0
[ -f $HOME/.config/disable-compton ] && exit 0 [ -f \$HOME/.config/disable-compton ] && exit 0
FILE=/etc/compton.conf FILE=/etc/compton.conf
[ -f $HOME/.config/compton.conf ] && FILE="$HOME/.config/compton.conf" [ -f \$HOME/.config/compton.conf ] && FILE="\$HOME/.config/compton.conf"
[ 0 != \$(glxinfo |grep "renderer string:" |grep -v llvmpipe | wc -c) ] && exec compton --config \$FILE & [ 0 != \$(glxinfo |grep "renderer string:" |grep -v llvmpipe | wc -c) ] && exec compton --config \$FILE &
EOF EOF
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment