Fix missing sed -i flag

This commit is contained in:
natemaia 2019-10-20 21:03:55 -07:00
parent 60f53a3b51
commit 84b87d5121
2 changed files with 2 additions and 2 deletions

0
.SRCINFO Normal file
View File

View File

@ -1579,9 +1579,9 @@ install_tearfree_conf()
if lspci | grep ' VGA ' | grep -q 'Intel\|AMD/ATI'; then
if [[ $xpath == *"$MNT"* ]]; then
sed 's/xrender/glx/g' "$MNT/etc/skel/.config/compton.conf"
sed -i 's/xrender/glx/g' "$MNT/etc/skel/.config/compton.conf"
else
sed 's/xrender/glx/g' /etc/skel/.config/compton.conf
sed -i 's/xrender/glx/g' /etc/skel/.config/compton.conf
fi
fi