forked from wastis/ShellScriptLauncher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.menu
More file actions
16 lines (14 loc) · 1.31 KB
/
Copy pathexample.menu
File metadata and controls
16 lines (14 loc) · 1.31 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Kodi Shell Script Launcher - Menu Example File
#
# For the help and standard examples: https://github.com/wastis/ShellScriptLauncher/blob/master/example.menu
# I can't get wildcards to work so I had to find a way around it.. not very efficient..
# Make settings read only
ReadOnly ESTUARYSKIN:show:/bin/chmod -w ~/.kodi/userdata/addon_data/skin.estuary/settings.xml
ReadOnly USERDATA:show:/bin/chmod -w ~/.kodi/userdata/RssFeeds.xml ~/.kodi/userdata/decoderfilter.xml ~/.kodi/userdata/favourites.xml ~/.kodi/userdata/guisettings.xml ~/.kodi/userdata/mediasources.xml ~/.kodi/userdata/passwords.xml ~/.kodi/userdata/profiles.xml ~/.kodi/userdata/sources.xml
ReadOnly ADDON_DATA:show:/bin/chmod -R -w ~/.kodi/userdata/addon_data
ReadOnly KEYMAPS:show:/bin/chmod -R -w ~/.kodi/userdata/keymaps
# Make settings writable
Writable ESTUARYSKIN:show:/bin/chmod +w ~/.kodi/userdata/addon_data/skin.estuary/settings.xml
Writable USERDATA:show:/bin/chmod +w ~/.kodi/userdata/RssFeeds.xml ~/.kodi/userdata/decoderfilter.xml ~/.kodi/userdata/favourites.xml ~/.kodi/userdata/guisettings.xml ~/.kodi/userdata/mediasources.xml ~/.kodi/userdata/passwords.xml ~/.kodi/userdata/profiles.xml ~/.kodi/userdata/sources.xml
Writable ADDON_DATA:show:/bin/chmod -R +w ~/.kodi/userdata/addon_data
Writable KEYMAPS:show:/bin/chmod -R +w ~/.kodi/userdata/keymaps