aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-02-24 02:06:20 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-02-24 02:06:20 +0100
commit21552196c529cdc4e7112d2f09a80ab81c71207a (patch)
tree5bc9fe9f55da0775384b2449f7ee543cbe7afed2 /test
parentDownload manager (diff)
downloadsmolbote-21552196c529cdc4e7112d2f09a80ab81c71207a.tar.xz
Settings class rework
Using toml as format
Diffstat (limited to 'test')
-rw-r--r--test/config.ini34
-rw-r--r--test/config.toml36
2 files changed, 36 insertions, 34 deletions
diff --git a/test/config.ini b/test/config.ini
deleted file mode 100644
index ea5c258..0000000
--- a/test/config.ini
+++ /dev/null
@@ -1,34 +0,0 @@
-[browser]
-singleInstance=true
-localSocket=smolbote-singlelock
-
-[general]
-homepage=https://duckduckgo.com
-newtab=about:blank
-profile=Default
-
-[blocker]
-subscription=
-
-[bookmarks]
-dialogShortcut=Ctrl+Shift+B
-path=bookmarks.xbel
-
-[downloads]
-dialogShortcut=Ctrl+Shift+D
-path=~/Downloads
-
-[window]
-height=720
-width=1280
-title=$title — smolbote [$profile]
-
-[shortcuts]
-focusAddress=F4
-tabClose=Ctrl+X
-tabLeft=Shift+Left
-tabRight=Shift+Right
-
-[ui]
-navtoolbarMovable=false
-tabtoolbarMovable=false
diff --git a/test/config.toml b/test/config.toml
new file mode 100644
index 0000000..747282b
--- /dev/null
+++ b/test/config.toml
@@ -0,0 +1,36 @@
+[browser]
+singleInstance=true
+localSocket="smolbote-singlelock"
+
+[general]
+homepage="https://duckduckgo.com"
+newtab="about:blank"
+profile="Default"
+
+[blocker]
+dialogShortcut="Ctrl+Shift+A"
+path=""
+subscriptions=""
+
+[bookmarks]
+dialogShortcut="Ctrl+Shift+B"
+path="bookmarks.xbel"
+
+[downloads]
+dialogShortcut="Ctrl+Shift+D"
+path="~/Downloads"
+
+[window]
+height=720
+width=1280
+title="$title — smolbote [$profile]"
+
+[shortcuts]
+focusAddress="F4"
+tabClose="Ctrl+X"
+tabLeft="Shift+Left"
+tabRight="Shift+Right"
+
+[ui]
+navtoolbarMovable=false
+tabtoolbarMovable=false