mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
400abfbcbd
* fixed networkmanagement
12 lines
255 B
Bash
12 lines
255 B
Bash
#!/bin/bash
|
|
|
|
fix_configs() {
|
|
echo -e -n " > Adjusting paths in config files ..."
|
|
KDE_dir=".kde4"
|
|
pushd ~/$KDE_dir/share/config/ &> /dev/null
|
|
find ./ -type f -exec sed -i "s/\/.kdemod4/\/.kde4/g" {} \; &> /dev/null
|
|
popd &> /dev/null
|
|
echo " DONE"
|
|
}
|
|
|