# Refresh the app configuration

As new versions are released, the app configuration will change accordingly, so to avoid some of the weird behavior caused by the old configuration, you can refresh the configuration to keep the app up-to-date in the following ways:

Tip: You need to exit the app before refreshing the configuration

# Windows

rem Case Study: Kangaroo Multiple AI
rem When the My Documents directory is remapped, the command may fail
rem %HOMEPATH%DocumentsTaozuhongKangaroo Multiple AIProfile
cd "%HOMEPATH%DocumentsTaozuhongKangaroo Multiple AIProfile"
move /Y Themestylesheet.css Themestylesheet.css.bak
move /Y intellisense.json intellisense.json.bak
move /Y shortcut.json shortcut.json.bak
rem starts the app to take effect

# macOS

# Case Study: Kangaroo Multiple AI
# When the My Documents directory remap is outdated, the command may not work
# $XDG_DOCUMENTS_DIR/Taozuhong/Kangaroo Multiple AI/Profile
cd $XDG_DOCUMENTS_DIR/Taozuhong/"Kangaroo Multiple AI"/Profile
mv -f Theme/stylesheet.css Theme/stylesheet.css.bak
mv -f intellisense.json intellisense.json.bak
mv -f shortcut.json shortcut.json.bak
# Start the app to take effect

# Linux

# Case Study: Kangaroo Multiple AI
# When the My Documents directory remap is outdated, the command may not work
# $XDG_DOCUMENTS_DIR/Taozuhong/Kangaroo Multiple AI/Profile
cd $XDG_DOCUMENTS_DIR/Taozuhong/"Kangaroo Multiple AI"/Profile
mv -f Theme/stylesheet.css Theme/stylesheet.css.bak
mv -f intellisense.json intellisense.json.bak
mv -f shortcut.json shortcut.json.bak
# Start the app to take effect

# Android

Coming soon...

Last Updated: 2025-04-24T12:58:47.000Z