Skip to content

Commit f015cf6

Browse files
committed
2025.11.19
1 parent 1684710 commit f015cf6

9 files changed

Lines changed: 785 additions & 627 deletions

File tree

os-unix/config-editor/.config/Code/User/settings.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"editor.minimap.renderCharacters": false,
3434
"editor.minimap.showSlider": "always",
3535
"editor.minimap.side": "left",
36-
"editor.renderWhitespace": "all",
36+
"editor.renderWhitespace": "none",
3737
"editor.suggestSelection": "recentlyUsedByPrefix",
3838
"editor.suggest.snippetsPreventQuickSuggestions": false,
3939
"editor.tabSize": 3,
@@ -561,5 +561,6 @@
561561
"editor.defaultFormatter": "esbenp.prettier-vscode"
562562
},
563563
"gitlens.ai.model": "vscode",
564-
"gitlens.ai.vscode.model": "copilot:gpt-4.1"
564+
"gitlens.ai.vscode.model": "copilot:gpt-4.1",
565+
"workbench.iconTheme": "symbols"
565566
}

os-unix/config-editor/.config/zed/settings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"play_sound_when_agent_done": true,
5151
"default_model": {
5252
"provider": "copilot_chat",
53-
"model": "claude-3.5-sonnet"
53+
"model": "claude-sonnet-4"
5454
}
5555
},
5656
"telemetry": {

os-unix/config-version-control/.config/git/gitk

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ set maxgraphpct 50
77
set maxwidth 16
88
set cmitmode patch
99
set wrapcomment none
10+
set wrapdefault none
11+
set autocopy 0
1012
set autoselect 1
1113
set autosellen 40
1214
set showneartags 1
@@ -53,12 +55,12 @@ set linkfgcolor blue
5355
set circleoutlinecolor black
5456
set diffbgcolors {"#fff3f3" "#f0fff0"}
5557
set web_browser xdg-open
56-
set geometry(main) 1920x1052+1920+0
58+
set geometry(main) 2431x1334+65+192
5759
set geometry(state) normal
58-
set geometry(topwidth) 1920
59-
set geometry(topheight) 195
60-
set geometry(pwsash0) "1227 1"
61-
set geometry(pwsash1) "1840 1"
62-
set geometry(botwidth) 1509
63-
set geometry(botheight) 852
60+
set geometry(topwidth) 2431
61+
set geometry(topheight) 339
62+
set geometry(pwsash0) "1556 1"
63+
set geometry(pwsash1) "2333 1"
64+
set geometry(botwidth) 1910
65+
set geometry(botheight) 990
6466
set permviews {}

os-unix/data/d.h

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#include <stdbool.h>
2+
#include <stddef.h>
3+
4+
typedef struct Group {
5+
char const *name;
6+
struct Entry **entries;
7+
} Group;
8+
9+
typedef struct Entry {
10+
char const *category;
11+
char const *source;
12+
char const *destination;
13+
} Entry;
14+
15+
// clang-format off
16+
#define Home(path, category) { \
17+
.source = Src category path, \
18+
.destination = Dst path \
19+
}
20+
#define Config(path, category) { \
21+
.source = Src category ".config/" path, \
22+
.destination = Dst ".config/" path \
23+
}
24+
#define Data(path, category) { \
25+
.source = Src category ".local/share/" path, \
26+
.destination = Dst ".local/share/" path \
27+
}
28+
#define Done { \
29+
.source = NULL, \
30+
.destination = NULL \
31+
}
32+
// clang-format on
33+
34+
#define HomeEntry(path, category) { Home(path, category), Done }
35+
#define ConfigEntry(path, category) { Config(path, category), Done }
36+
#define DataEntry(path, category) { Data(path, category), Done }

os-unix/data/data.o

-62.2 KB
Binary file not shown.

0 commit comments

Comments
 (0)