You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kwin/kconf_update/kwin-5.23-disable-transluce...

24 lines
538 B
Bash

#!/bin/sh
HAS_ENABLED_KEY=''
HAS_CUSTOM_CONFIG=''
kwinrcname=`qtpaths --locate-file GenericConfigLocation kwinrc`
if [ -f "$kwinrcname" ]; then
if grep -q "\[Effect-kwin4_effect_translucency\]" "$kwinrcname"; then
HAS_CUSTOM_CONFIG=1
fi
fi
while read -r line; do
KEY="${line%=*}"
if [ "$KEY" = "kwin4_effect_translucencyEnabled" ]; then
HAS_ENABLED_KEY=1
fi
echo "$line"
done
if [ -n "$HAS_CUSTOM_CONFIG" ] && [ -z "$HAS_ENABLED_KEY" ]; then
echo "kwin4_effect_translucencyEnabled=true"
fi