Check-in [6780ddd151]
Overview
Comment: | Minor default setting tweaks. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6780ddd151516456f6578e91d7dfd0f0 |
User & Date: | mario on 2014-05-13 03:25:45 |
Other Links: | manifest | tags |
Context
2014-05-13
| ||
03:26 | More Jamendo options, allow to load more than 200 entries each. check-in: 968e584316 user: mario tags: trunk | |
03:25 | Minor default setting tweaks. check-in: 6780ddd151 user: mario tags: trunk | |
03:25 | Regrouped config dialog settings. check-in: 1818d826d6 user: mario tags: trunk | |
Changes
Modified config.py from [e61106e7ac] to [9f0935794a].
︙ | ︙ | |||
59 60 61 62 63 64 65 | # some defaults def defaults(self): self.browser = "sensible-browser" self.play = { "audio/mp3": "audacious ", # %u for url to .pls, %g for downloaded .m3u "audio/ogg": "audacious ", "audio/aac": "amarok -l ", | | | | | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | # some defaults def defaults(self): self.browser = "sensible-browser" self.play = { "audio/mp3": "audacious ", # %u for url to .pls, %g for downloaded .m3u "audio/ogg": "audacious ", "audio/aac": "amarok -l ", "audio/x-pn-realaudio": "vlc --one-instance", "audio/*": "totem ", "*/*": "vlc --one-instance %srv", } self.record = { "*/*": "x-terminal-emulator -e streamripper %srv", # x-terminal-emulator -e streamripper %srv -d /home/***USERNAME***/Musik } self.plugins = { "bookmarks": 1, # built-in plugins, cannot be disabled "shoutcast": 1, "xiph": 1, "file": 0, # disable per default "punkcast": 0, # disable per default "basicch": 0, # ceased "tv": 0, # no longer working } self.tmp = os.environ.get("TEMP", "/tmp") self.max_streams = "500" self.show_bookmarks = 1 self.show_favicons = 1 self.load_favicon = 1 self.heuristic_bookmark_update = 1 self.retain_deleted = 1 self.auto_save_appstate = 1 self.theme = "" #"MountainDew" |
︙ | ︙ |