config.toml 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. # See; https://www.brow.sh/donate/
  2. # By showing your support you can disable the app's branding and nags to donate.
  3. browsh_supporter = "I have shown my support for Browsh"
  4. # The base query when a non-URL is entered into the URL bar
  5. default_search_engine_base = "https://www.google.com/search?q="
  6. # The mobile user agent for forcing web pages to use their mobile layout
  7. mobile_user_agent = "Mozilla/5.0 (Android 7.0; Mobile; rv:54.0) Gecko/58.0 Firefox/58.0"
  8. [browsh] # Browsh internals
  9. websocket-port = 3334
  10. [firefox]
  11. # The path to your Firefox binary
  12. path = "firefox"
  13. # Browsh has its own profile, seperate from the normal user's. But you can change that.
  14. profile = "browsh-default"
  15. # Don't let Browsh launch Firefox, but make it try to connect to an existing one. Note
  16. # it will need to have been launched with the '--marionette' flag.
  17. use-existing = false
  18. # Launch Firefox in with its visible GUI window. Useful for setting up the Browsh profile.
  19. with-gui = false
  20. [tty]
  21. # The time in milliseconds between requesting a new TTY-sized pixel frame.
  22. # This is essentially the frame rate for graphics. Lower values make for smoother
  23. # animations and feedback, but also increases the CPU load.
  24. small_pixel_frame_rate = 250
  25. [http-server]