-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsync_config.toml
More file actions
200 lines (175 loc) · 3.68 KB
/
Copy pathsync_config.toml
File metadata and controls
200 lines (175 loc) · 3.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
# Dotfiles Sync Configuration
# This file controls how configurations are synced between your system and this repository
[global]
# Directory where configs are stored in this repo
config_root = "configs"
# Backup directory for system configs
backup_root = "backups"
# Default exclusion patterns (applied to all configs)
exclude_patterns = [
"*.log",
"*.cache",
".git/**",
".gitignore",
".gitmodules",
".gitattributes",
"*.orig",
"*.rej",
"*.patch",
".mailmap",
".svn/**",
".hg/**",
".bzr/**",
"CVS/**",
"node_modules/**",
"__pycache__/**",
"*.pyc",
"*.pyo",
".pytest_cache/**",
"*.bak",
"*.backup",
"*.swp",
"*.swo",
"*.tmp",
"*~",
".#*",
"#*#",
".DS_Store",
"Thumbs.db",
"desktop.ini",
".directory",
".vscode/**",
".idea/**",
"*.sublime-*",
".vim/**",
".nvim/**",
".CLAUDE.md",
".claude/**",
]
# Desktop Environment Configurations
[configs.sway]
name = "Sway Window Manager"
source = "$HOME/.config/sway"
dest = "sway"
enabled = true
[configs.river]
name = "River Window Manager"
source = "$HOME/.config/river"
dest = "river"
enabled = true
[configs.niri]
name = "Niri Window Manager"
source = "$HOME/.config/niri"
dest = "niri"
enabled = true
[configs.waybar]
name = "Waybar Status Bar"
source = "$HOME/.config/waybar"
dest = "waybar"
enabled = true
[configs.swaylock]
name = "Swaylock Screen Locker"
source = "$HOME/.config/swaylock"
dest = "swaylock"
enabled = true
[configs.mako]
name = "Mako Notifications"
source = "$HOME/.config/mako"
dest = "mako"
enabled = true
[configs.dunst]
name = "Dunst Notifications"
source = "$HOME/.config/dunst"
dest = "dunst"
enabled = true
# Terminal Environment
[configs.tmux]
name = "Tmux Terminal Multiplexer"
source = "$HOME/.config/tmux"
dest = "tmux"
enabled = true
[configs.kitty]
name = "Kitty Terminal"
source = "$HOME/.config/kitty"
dest = "kitty"
enabled = true
[configs.alacritty]
name = "Alacritty Terminal"
source = "$HOME/.config/alacritty"
dest = "alacritty"
enabled = true
[configs.foot]
name = "Foot Terminal"
source = "$HOME/.config/foot"
dest = "foot"
enabled = true
# Shell Configurations
[configs.zsh]
name = "Zsh Shell"
source = "$HOME/.config/zsh"
dest = "zsh"
enabled = true
[configs.starship]
name = "Starship Prompt"
source = "$HOME/.config/starship.toml"
dest = "starship/starship.toml"
enabled = true
# Applications
[configs.rofi]
name = "Rofi Application Launcher"
source = "$HOME/.config/rofi"
dest = "rofi"
enabled = true
[configs.yazi]
name = "Yazi Terminal File Manager"
source = "$HOME/.config/yazi"
dest = "yazi"
enabled = true
[configs.mpv]
name = "MPV Media Player"
source = "$HOME/.config/mpv"
dest = "mpv"
enabled = true
[configs.mpd]
name = "Music Player Daemon"
source = "$HOME/.config/mpd"
dest = "mpd"
enabled = true
[configs.ncmpcpp]
name = "NCurses MPD Client"
source = "$HOME/.config/ncmpcpp"
dest = "ncmpcpp"
enabled = true
[configs.fontconfig]
name = "Font Configuration"
source = "$HOME/.config/fontconfig"
dest = "fontconfig"
enabled = true
[configs.cava]
name = "Cava Audio Visualizer"
source = "$HOME/.config/cava"
dest = "cava"
enabled = true
[configs.swayimg]
name = "Swayimg Image Viewer"
source = "$HOME/.config/swayimg"
dest = "swayimg"
enabled = true
[configs.zathura]
name = "Zathura PDF Viewer"
source = "$HOME/.config/zathura"
dest = "zathura"
enabled = true
# System-level configurations (manual installation required)
[configs.keymap_udev]
name = "udev Hardware Database"
source = "/etc/udev/hwdb.d"
dest = "keymap/udev"
enabled = true
backup_only = true
[configs.keymap_keyd]
name = "keyd Configuration"
source = "/etc/keyd/default.conf"
dest = "keymap/keyd"
enabled = true
backup_only = true