From 4e3c479a0f279926e0bd9a359a0ee57b334e976e Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Fri, 8 Dec 2017 14:22:19 +0100 Subject: Replaced tinytoml with libconfig --- data/poi.cfg | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 data/poi.cfg (limited to 'data/poi.cfg') diff --git a/data/poi.cfg b/data/poi.cfg new file mode 100644 index 0000000..68503e1 --- /dev/null +++ b/data/poi.cfg @@ -0,0 +1,58 @@ +// smolbote default configuration file +// Uses libconfig format, for details refer to: +// https://hyperrealm.github.io/libconfig/libconfig_manual.html#Configuration-Files + +// Browser default settings +browser = { + // true to generate user settings when run + firstRun = true; + + // default profile name the browser should use; "" is off-the-record + profile = ""; + + // default window size + window = { + height = 720; + width = 1280; + maximized = true; + title = "title — smolbote [profile]"; + }; + + ui = { + navtoolbarMovable = false; + tabtoolbarMovable = false; + }; + + shortcuts = { + // browser menu + newWindow = "Ctrl+N"; + newTab = "Ctrl+T"; + about = "F1"; + quit = "Ctrl+Q"; + + focusAddress = "F4"; + fullscreen = "F11"; + + // tabs + tabClose = "Ctrl+X"; + tabLeft = "Shift+Left"; + tabRight = "Shift+Right"; + }; +}; + +// Profile settings +profile = { + path = "~/.config/smolbote/Profiles"; + homepage = "about:blank"; + newtab = "about:blank"; +}; + +// Bookmark settings +bookmarks = { + path = "~/.config/smolbote/bookmarks.xbel"; +}; + +// Downloads settings +downloads = { + path = "~/Downloads" +}; -- cgit v1.2.1