From ffa7c7aaf7d68dee71ac50722fa37d3687a5df7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Mon, 10 Oct 2022 15:20:41 +0200 Subject: =?UTF-8?q?m=C3=A5n=2010=20okt=202022=2015:20:41=20CEST?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .githooks/post-receive.d/post-receive | 2 + .vimwiki_tags | 4 +- GitServer.wiki | 107 +++++++++++++++++++++++++++++++++- alacritty.wiki | 13 +++++ deb.wiki | 11 ++-- index.wiki | 1 + 6 files changed, 131 insertions(+), 7 deletions(-) create mode 100755 .githooks/post-receive.d/post-receive create mode 100644 alacritty.wiki diff --git a/.githooks/post-receive.d/post-receive b/.githooks/post-receive.d/post-receive new file mode 100755 index 0000000..7249a1c --- /dev/null +++ b/.githooks/post-receive.d/post-receive @@ -0,0 +1,2 @@ +#!/bin/bash +echo ~/jobs/wiki-public/post-receive | at now diff --git a/.vimwiki_tags b/.vimwiki_tags index 358ee21..7e801ab 100644 --- a/.vimwiki_tags +++ b/.vimwiki_tags @@ -5,8 +5,8 @@ !_TAG_PROGRAM_NAME Vimwiki Tags !_TAG_PROGRAM_URL https://github.com/vimwiki/vimwiki !_TAG_PROGRAM_VERSION 2.5 -TODO GitServer.wiki 49;" vimwiki:GitServer\tGitServer#Git Server#Autentisering#Autentisering SSH#Problem -TODO GitServer.wiki 92;" vimwiki:GitServer\tGitServer#Taggning#Cleanup +TODO GitServer.wiki 58;" vimwiki:GitServer\tGitServer#Git Server#Autentisering#Autentisering SSH#Problem +TODO GitServer.wiki 101;" vimwiki:GitServer\tGitServer#Taggning#Cleanup tidle Media.wiki 33;" vimwiki:Media\tMedia#tidle tilde Media.wiki 34;" vimwiki:Media\tMedia#tilde todo Västgöta/webbsida.wiki 299;" vimwiki:Västgöta/webbsida\tVästgöta/webbsida#Kalender diff --git a/GitServer.wiki b/GitServer.wiki index 18a21af..ea9cf82 100644 --- a/GitServer.wiki +++ b/GitServer.wiki @@ -12,6 +12,15 @@ - [[#Taggning|Taggning]] - [[#Taggning#Cleanup|Cleanup]] - [[#Hooks|Hooks]] + - [[#Hooks#Att dokumentera|Att dokumentera]] + - [[#Hooks#Framtida förbättringar|Framtida förbättringar]] + - [[#Hooks#Default config|Default config]] + - [[#Hooks#Default config#cclite|cclite]] + - [[#Hooks#Default config#VVVVVV|VVVVVV]] + - [[#Hooks#Default config#password-store|password-store]] + - [[#Hooks#Default config#reddit-parenthesis-bot|reddit-parenthesis-bot]] + - [[#Hooks#Default config#cgit|cgit]] + - [[#Hooks#Default config#guile-cairo|guile-cairo]] = Git Server = https://git.hornquist.se @@ -46,7 +55,7 @@ problem: - [[#gitweb.owner]] ==== Problem ==== -:TODO: +:TODO: 2018-12-28 Jag satte upp gitolite, och pull fungerade bra. Dock med vissa @@ -109,3 +118,99 @@ remote: fatal: Not a valid object name HEAD:.gitconfig To git.hornquist.se:git/r11k.git 87acf40..5fb0e6c cs -> cs }}} + +=== Att dokumentera === +- Hur körs krokar + - Standardkrokar + - Lägga till egna +- Hur sätts git konfiguration +- Här sätts description +- Hur byter man standardgren +- Hur underkataloger och taggar interagerar + - Vad de olika underkatalogerna är till för + - Vad de olika taggarna är till för +- Is owner from cgit? Is it supported? +- Which configuration variables are supported, and what do they do +- Allow shared repositories? + +=== Framtida förbättringar === +- Resterande krokar +- kör olika krokar beroende på `git config gitweb.category` +- `enable-remote-branches` ([[man:cgitrc#5]]) +- Alt-text för speciella bilder + + +=== Default config === +{{{ +[core] + repositoryformatversion = 0 + filemode = true + bare = true +}}} +41adefcd1f91e91d473275a100d31a2c + +{{{ +[gitweb] category = Liu +}}} +4a7ec14607090979f0b8a040e9a766da + +{{{ +[gitweb] category = fork +}}} +fe8d1fed27f4e9e7a89fde75007ba8eb + +{{{ +[gitweb] category = archive +}}} +9df34b64ba47fc85ed73fe98c6626397 + +{{{ +[gitweb] category = doc +}}} +ca367e334f62a408ec13f182af14f99b + + +===== cclite ===== +[remote "origin"] + url = https://github.com/Sorroko/cclite + +===== VVVVVV ===== +[cgit] + defbranch = ps + homepage = https://github.com/TerryCavanagh/VVVVVV + desc = VVVVVV With sysadmin mod + logo = /extra-content/VVVVVV/logo.png +[gitweb] + category = fork + +[remote "origin"] + url = https://github.com/TerryCavanagh/VVVVVV + fetch = `+refs/heads/*:refs/remotes/origin/*` + +===== password-store ===== +[remote "upstream"] + url = https://git.zx2c4.com/password-store + fetch = `+refs/heads/*:refs/remotes/upstream` + +===== reddit-parenthesis-bot ===== +[gitweb] + category = fork +[remote "origin"] + url = https://github.com/HugoNikanor/reddit-parenthesis-bot + +===== cgit ===== +[gitweb] + group = cgit + category = fork +[remote "upstream"] + url = git://git.zx2c4.com/cgit + fetch = `+refs/heads/*:refs/remotes/upstream/*` + +===== guile-cairo ===== +[gitweb] + category = fork +[remote "upstream"] + url = git://git.savannah.nongnu.org/guile-cairo.git + fetch = `+refs/heads/*:refs/remotes/upstream/*` + +`liu/TDDD86-Labbar` byt standardgren till redovisning diff --git a/alacritty.wiki b/alacritty.wiki new file mode 100644 index 0000000..2797dd0 --- /dev/null +++ b/alacritty.wiki @@ -0,0 +1,13 @@ += Alacritty = + +== Dynamic background colors == +- https://medium.com/@joao.paulo.silvasouza/change-your-terminals-background-color-dynamically-using-escape-sequences-aba6e5ed2b29 +- https://github.com/alacritty/alacritty/issues/656 +- +https://chromium.googlesource.com/apps/libapps/+/a5fb83c190aa9d74f4a9bca233dac6be2664e9e9/hterm/doc/ControlSequences.md#OSC§ + +change foreground :: `\033]10;#<6-digit-hexcode>\007` +change background :: `\033]11;#<6-digit-hexcode>\007` +change cursor :: `\033]12;#<6-digit-hexcode>\007` +terminal border bg :: `\033]708;#<6-digit-hexcode>\007` + diff --git a/deb.wiki b/deb.wiki index 9470403..d933ca7 100644 --- a/deb.wiki +++ b/deb.wiki @@ -14,11 +14,11 @@ directory. - _____-_____.{build,buildinfo,changes,deb,dsc} == debmake == -Creates debian directory +Creates a new `debian` directory. -- `/dir/` - - `-` ← cwd - - `-.tar.gz` +Assumes that +- that `$PWD` is `-` +- than `$PWD/../_.orig.tar.gz` exists == debuild == Builds a pakage. @@ -28,6 +28,9 @@ Runs `debian/rules build` to build package sudo debuild --no-sign }}} +== sections == +https://packages.debian.org/stable/ + == debian/watch == https://wiki.debian.org/debian/watch diff --git a/index.wiki b/index.wiki index d346e9d..0312cd5 100644 --- a/index.wiki +++ b/index.wiki @@ -34,6 +34,7 @@ - [[ansible]] - [[lsp]] - [[Virtualization]] +- [[alacritty]] == Projekt == - [[GitServer]] -- cgit v1.2.3