mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-01 11:27:45 +01:00
14 lines
444 B
Text
Executable file
14 lines
444 B
Text
Executable file
# deletes Tracks Live Preferences
|
|
# except recent and config
|
|
function delete_file {
|
|
if [ -f "$1" ] ; then
|
|
rm -r "$1"
|
|
fi
|
|
}
|
|
path_to_preferences="$HOME/Library/Preferences/Tracks Live"
|
|
|
|
delete_file "${path_to_preferences}/instant.xml"
|
|
delete_file "${path_to_preferences}/sfdb"
|
|
delete_file "${path_to_preferences}/ui_config"
|
|
delete_file "${path_to_preferences}/pango.rc"
|
|
delete_file "${path_to_preferences}/Tracks Live_announcements_osx_1.0.0"
|