summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2021-08-24 20:30:35 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2021-08-24 20:30:35 (EDT)
commit976930d54e789536a09bc0fe064c545a589090df (patch)
tree561f5cd4170d80c9e05fdf4721b8fed7f457f643
parentbbf9637dbcf3c60f237a2fe6c13721450638885b (diff)
downloadgajim-976930d54e789536a09bc0fe064c545a589090df.zip
gajim-976930d54e789536a09bc0fe064c545a589090df.tar.gz
gajim-976930d54e789536a09bc0fe064c545a589090df.tar.bz2
settings.sqlite: First launch
-rw-r--r--.config/gajim/settings.sqlite16
1 files changed, 16 insertions, 0 deletions
diff --git a/.config/gajim/settings.sqlite b/.config/gajim/settings.sqlite
new file mode 100644
index 0000000..0db3f6e
--- /dev/null
+++ b/.config/gajim/settings.sqlite
@@ -0,0 +1,16 @@
+PRAGMA foreign_keys=OFF;
+BEGIN TRANSACTION;
+CREATE TABLE settings (
+ name TEXT UNIQUE,
+ settings TEXT
+ );
+INSERT INTO settings VALUES('app','{}');
+INSERT INTO settings VALUES('soundevents','{}');
+INSERT INTO settings VALUES('status_presets','{"Sleeping": {"message": "ZZZZzzzzzZZZZZ", "activity": "inactive", "subactivity": "sleeping", "mood": "sleepy"}, "Back soon": {"message": "Back in some minutes."}, "Eating": {"message": "I\u2019m eating.", "activity": "eating", "subactivity": "other"}, "Movie": {"message": "I\u2019m watching a movie.", "activity": "relaxing", "subactivity": "watching_a_movie"}, "Working": {"message": "I\u2019m working.", "activity": "working", "subactivity": "other"}, "Out": {"message": "I\u2019m out enjoying life.", "activity": "relaxing", "subactivity": "going_out"}}');
+INSERT INTO settings VALUES('proxies','{"Tor": {"type": "socks5", "host": "localhost", "port": 9050}}');
+INSERT INTO settings VALUES('plugins','{"omemo": {"active": true}, "pgp": {"active": true}}');
+CREATE TABLE account_settings (
+ account TEXT UNIQUE,
+ settings TEXT
+ );
+COMMIT;