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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
|
use Rex -feature => [ '1.14', 'exec_autodie' ];
use Rex::Logger;
our $HOME = $ENV{HOME};
# In a public Git rapository.
our $DOT = "$HOME/git/dotfiles";
# In a private Git repository.
our $DOT_PRIVATE = "$HOME/git/conf_private/dotfiles";
sub ensure_dir {
my ( $src_glob, $dst_dir, $file_mode ) = @_;
Rex::Logger::info("Ensure dir glob $src_glob");
file $dst_dir,
ensure => 'directory',
mode => '0700';
file "$dst_dir/" . basename($_),
ensure => 'present',
source => $_,
mode => $file_mode // '0640'
for glob $src_glob;
}
sub ensure_file {
my ( $src_file, $dst_file, $file_mode ) = @_;
file $dst_file,
ensure => 'present',
source => $src_file,
mode => $file_mode // '0640';
}
sub ensure {
my ( $src, $dst, $mode ) = @_;
( $dst =~ /\/$/ ? \&ensure_dir : \&ensure_file )->( $src, $dst, $mode );
}
desc 'Install packages on Termux';
task 'pkg_termux', sub {
my @pkgs = qw/
ack-grep
ctags
fzf
golang
htop
make
nodejs
ripgrep
rsync
ruby
starship
tig
/;
for my $pkg (@pkgs) {
Rex::Logger::info("Installing package $pkg");
pkg $pkg, ensure => 'installed';
}
};
desc 'Install packages on FreeBSD';
task 'pkg_freebsd', sub {
my @pkgs = qw/
zoxide
dust
lazygit
taskwarrior
bat
ctags
fzf
gmake
go
gron
htop
lynx
node
p5-ack
ripgrep
tig
doas
tmux
/;
for my $pkg (@pkgs) {
Rex::Logger::info("Installing package $pkg");
pkg $pkg, ensure => 'installed';
}
};
desc 'Install packages on Fedora Linux';
task 'pkg_fedora', sub {
my @pkgs = qw/
opendoas
fd-find
nodejs-bash-language-server
fortune-mod
syncthing
ncdu
ack
fish
bat
ctags
fzf
golang
golang-x-tools-gopls
gpaste
gron
htop
java-latest-openjdk-devel
lynx
make
nodejs
perl-File-Slurp
procs
rakudo
Rex
ripgrep
ruby
strace
task2
tig
tmux
dialect
chromium
strawberry
gnumeric
sway-config-fedora
sway
waybar
zathura
/;
for my $pkg (@pkgs) {
Rex::Logger::info("Installing package $pkg");
pkg $pkg, ensure => 'installed';
}
};
desc 'Install ~/.config/helix';
task 'home_helix', sub { ensure "$DOT/helix/*" => "$HOME/.config/helix/" };
desc 'Install ~/.config/ghostty';
task 'home_ghostty', sub { ensure "$DOT/ghostty/*" => "$HOME/.config/ghostty/" };
desc 'Install ~/.cursor';
task 'home_cursor', sub {
file "$HOME/.cursor" => ensure => 'directory', mode => '0750';
ensure "$DOT/cursor/commands/*" => "$HOME/.cursor/commands/", '0750';
};
desc 'Install ~/scripts';
task 'home_scripts', sub { ensure "$DOT/scripts/*" => "$HOME/scripts/", '0750' };
desc 'Install ~/.ssh files';
task 'home_ssh', sub { ensure "$DOT/ssh/config" => "$HOME/.ssh/config", '0600' };
desc 'Install BASH configuration';
task 'home_bash', sub {
ensure "$DOT/bash/bash_profile" => "$HOME/.bash_profile";
ensure "$DOT/bash/bashrc" => "$HOME/.bashrc";
};
desc 'Install ZSH configuration';
task 'home_zsh', sub {
if ( $^O eq 'darwin' ) {
ensure "$DOT/zsh/zshrc" => "$HOME/.zshrc";
}
else {
Rex::Logger::info( 'Skipping ZSH configuration (not on macOS)', 'warn' );
}
};
desc 'Install fish configuration';
task 'home_fish', sub {
# ensure "$DOT/fish/conf.d/*" => "$HOME/.config/fish/conf.d/";
my $dest_dir = "$HOME/.config/fish/conf.d";
if ( !-l $dest_dir ) {
if ( -d $dest_dir ) {
rename $dest_dir, "$dest_dir.old" or die "Could not rename $dest_dir: $!";
}
symlink "$DOT/fish/conf.d" => $dest_dir or die "Could not create symlink: $!";
}
};
desc 'Install gitsyncer configuration';
task 'home_gitsyncer', sub {
my $dest_dir = "$HOME/.config/gitsyncer";
symlink "$DOT/gitsyncer/" => $dest_dir or die "Could not create symlink: $!";
};
sub isFileSymlink() {
my $file = shift;
return -l $file && -e $file;
}
desc 'Vale and proselint';
task 'home_vale', sub {
ensure "$DOT/vale.ini" => "$HOME/.vale.ini";
say 'Now you can run "vale sync"';
};
desc 'Install tmux configuration';
task 'home_tmux', sub {
ensure "$DOT/tmux/*" => "$HOME/.config/tmux/";
};
desc 'Install Sway configuration';
task 'home_sway', sub {
ensure "$DOT/sway/config.d/*" => "$HOME/.config/sway/config.d/";
ensure "$DOT/waybar/*" => "$HOME/.config/waybar/";
};
desc 'Install my signature';
task 'home_signature', sub {
ensure "$DOT/signature" => "$HOME/.signature";
};
desc 'Install my calendar files';
task 'home_calendar', sub {
unless ( -d $DOT_PRIVATE ) {
Rex::Logger::info( "$DOT_PRIVATE not there, skipping task", 'warn' );
}
else {
ensure "$DOT_PRIVATE/calendar/*" => "$HOME/.calendar/";
}
};
desc 'Install my Pipewire tuned for High-Res config';
task 'home_pipewire', sub {
file "$HOME/.config/pipewire" => ensure => 'directory',
mode => '0750';
ensure
"$DOT/pipewire/pipewire.conf" => "$HOME/.config/pipewire/pipewire.conf",
'0600';
};
desc 'Manage ~/QuickEdit directory and symlinks';
task 'home_quickedit', sub {
if ( $^O eq 'linux' || $^O eq 'freebsd' ) {
Rex::Logger::info('Setting up ~/QuickEdit');
file "$HOME/QuickEdit",
ensure => 'directory',
mode => '0700';
my %symlinks = (
'data' => "$HOME/data/",
'Documents' => "$HOME/Documents//",
'dotfiles' => "$HOME/git/dotfiles/",
'foo.zone-gemtext' => "$HOME/git/foo.zone-content/gemtext//",
'Notes' => "$HOME/Notes/",
'public-snippets' => "$HOME/git/conf/snippets//",
'worktime' => "$HOME/git/worktime/",
);
for my $name ( keys %symlinks ) {
my $link_path = "$HOME/QuickEdit/$name";
my $target = $symlinks{$name};
# Remove existing symlink if it points to a different target
if ( -l $link_path ) {
my $current_target = readlink($link_path);
if ( $current_target ne $target ) {
unlink $link_path or die "Could not remove $link_path: $!";
symlink $target => $link_path or die "Could not create symlink $link_path: $!";
}
}
elsif ( -e $link_path ) {
Rex::Logger::info( "$link_path exists but is not a symlink, skipping", 'warn' );
}
else {
symlink $target => $link_path or die "Could not create symlink $link_path: $!";
}
}
}
elsif ( $^O eq 'darwin' ) {
Rex::Logger::info('QuickEdit placeholder for macOS (not yet implemented)');
# TODO: Implement QuickEdit management for macOS
}
};
desc 'Install all my ~ files';
task 'home', sub {
require Rex::TaskList;
run_task $_ for Rex::TaskList->create()->get_all_tasks('^home_');
};
|