summaryrefslogtreecommitdiffstats
path: root/.config/gajim/settings.sqlite
blob: 8c30ff37af88749ed160e7a00878eede5cae8120 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
PRAGMA foreign_keys=OFF;
BEGIN TRANSACTION;
CREATE TABLE settings (
            name TEXT UNIQUE,
            settings TEXT
    );
INSERT INTO settings VALUES('app','{"roster_x-position": 0, "roster_y-position": 24, "roster_width": 1280, "roster_height": 751, "last_roster_visible": true, "collapsed_rows": "", "emoticons_theme": "font", "one_message_window": "always_with_roster", "roster_hpaned_position": 200, "msgwin-max-state": false, "msgwin-width": 1080, "msgwin-height": 751, "msgwin-x-position": 0, "msgwin-y-position": 24, "positive_184_ack": true, "print_status_in_chats": true, "autoaway": false}');
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
    );
INSERT INTO account_settings VALUES('member.fsf.org','{"account": {"active": true, "name": "pehjota", "resource": "gajim.BPUIG4D6", "account_label": "pehjota@member.fsf.org", "account_color": "rgb(132,154,51)", "hostname": "member.fsf.org", "savepass": true, "anonymous_auth": false, "autoconnect": true, "sync_with_global_status": true, "use_custom_host": false, "password": "", "last_status": "online", "last_status_msg": "", "opened_chat_controls": ""}, "contact": {"pehjota@member.fsf.org": {"send_marker": true}, "cheogram.com": {"send_marker": true}}, "group_chat": {}}');
COMMIT;