This commit is contained in:
committer@tuxwarrior
2025-04-15 20:41:19 -05:00
parent 3fd21e3987
commit ff4fb75304
3 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
// the correct connections.jsonl file is NOT stored in this repo. instead, it is located here:
// `/home/poq/syncDir/secrets/dbgate/connections.jsonl`
//
// and, from `99_deploy.sh`:
// `cp /home/${system_user}/syncDir/secrets/dbgate/connections.jsonl ${file_path}/`

21
dots/dbgate/settings.json Normal file
View File

@@ -0,0 +1,21 @@
{
"app.useNativeMenu": false,
"currentEditorTheme": "cobalt",
"other.licenseKey": null,
"currentEditorFontSize": "12",
"dataGrid.thousandsSeparator": false,
"commands": {
"query.executeCurrent": {
"keyText": "CtrlOrCommand+Enter",
"customKeyboardShortcut": true
},
"query.execute": {
"keyText": "F5 | CtrlOrCommand+Shift+Enter",
"customKeyboardShortcut": true
},
"shell.execute": {
"keyText": "F5 | CtrlOrCommand+Shift+Enter",
"customKeyboardShortcut": true
}
}
}

View File

@@ -283,6 +283,13 @@ if [ ${operation} == "dots" ] ; then
# programs # programs
# ---------- # ----------
# dbgate
file_name=settings.json
file_path=/home/${system_user}/.dbgate
create_dir ${file_path}
deploy_file "${dots_trg}/dbgate/${file_name}" "${file_path}/${file_name}"
cp /home/${system_user}/syncDir/secrets/dbgate/connections.jsonl ${file_path}/
# dunst # dunst
file_name=dunstrc file_name=dunstrc
file_path=/home/${system_user}/.config/dunst file_path=/home/${system_user}/.config/dunst