config 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. ### Configuration file - part of TubeMan
  2. ### TubeMan is licensed under the terms of GPLv3 or later.
  3. ## Anything on a line after a # is a comment and is ignored
  4. ## If an option is set more than once, the last one is used
  5. [playing]
  6. ### How to play videos
  7. ## The player to use
  8. ## Options: vlc, mpv, mplayer, ffplay, none
  9. player = mpv
  10. ## Your preferred format
  11. ## Options: webm, mp4, 3gp
  12. format = webm
  13. ## Your preferred vertical resolution
  14. ## Options: 144, 240, 360, 480, 720, 1080, 1440, 2160
  15. resolution = 480
  16. [proxy]
  17. ### Proxy settings - proxy is only used if all of these options are set
  18. ### Hint: this could be used to enable tor usage
  19. #type = SOCKS4
  20. #ip = 127.0.0.1
  21. #port = 9050
  22. [display]
  23. ### Display preferences
  24. ## Default number of items to show in a listing
  25. list = 10
  26. ##Date based ordering method - newest or oldest first
  27. ## Options: newest, oldest
  28. sort = newest
  29. ## Use colour in terminal output?
  30. ## Options: on, off
  31. colour = on
  32. [files]
  33. ### File locations
  34. ## Subscription database location
  35. #subs = $HOME/.local/share/subscriptions.db
  36. ## Video database location
  37. #videos = $HOME/.local/share/videos.db
  38. ## Thumbnail location, if used
  39. thumbnails = $HOME/.local/share/thumbs
  40. [thumbnails]
  41. ### Thumbnail images using the optional dependency w3m
  42. ## Display thumbnails
  43. show = off
  44. ## Keep thumbnails after closing TubeMan
  45. save = off
  46. [other]
  47. ## Vim style keybindings instead of the defaults
  48. ## Options: on, off
  49. vim mode = off
  50. ## Database encryption using the optional dependency SQLCipher
  51. ## Options: on, off
  52. encryption = off
  53. ## Verbose mode - extra messages, usually best to leave off
  54. ## Options: on, off
  55. verbose = off