1
0
mirror of https://github.com/osmarks/random-stuff synced 2025-09-10 06:16:00 +00:00

yet more dotfiles

This commit is contained in:
osmarks
2025-07-28 11:19:15 +01:00
parent 3fe5d0a9de
commit 23f58cc0d4
2 changed files with 23 additions and 3 deletions

20
dotfiles/wezterm.lua Normal file
View File

@@ -0,0 +1,20 @@
local wezterm = require 'wezterm'
local config = {}
config.ssh_domains = {
{
name = 'protagonism',
remote_address = 'protagonism'
},
}
config.unix_domains = {
{
name = 'unix',
}
}
config.font = wezterm.font "Fira Code"
config.font_size = 10
return config

View File

@@ -1,6 +1,6 @@
import sqlite3
import sqlite3, sys
longterm = sqlite3.connect("/data/archive/lthist.sqlite3")
longterm = sqlite3.connect(sys.argv[1])
longterm.executescript(f"""
CREATE TABLE IF NOT EXISTS places (
guid TEXT PRIMARY KEY,