about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* Restructure code, rename tar_create to archiveAndinus2020-08-271-44/+41
| | | | | Moved @ARGV parsing & HelpMessage sub to the end. tar_create is now a simple wrapper around `/bin/tar'.
* Move archive dispatch table to mainAndinus2020-08-271-63/+47
| | | | | | I'm thinking of making leo as my archive program instead of a meta-program to hold all my scripts. It's simpler to keep them seperated, meta-program would've been complex.
* Add encrypt & sign option, remove archive_HelpMessage()Andinus2020-08-271-17/+21
| | | | | | | | | | | | | | | | | | | `archive_HelpMessage' was removed because variables from `archive' sub are not shared with it. On #perl@freenode: <andinus> i have a sub archive_Help inside of sub archive, when i try to use archive's var in archive_Help perl says "Variable "$archive_dir" will not stay shared at..." [02:55] [...] <Grinnz> generally, you pass variables into subs that you call [02:57] <Grinnz> defining a sub within another sub is evidence that you did it wrong [...] <andinus> is defining a sub within a sub not a good idea? <Grinnz> it does nothing useful [03:01] <Grinnz> and causes issues like the one you are having [...]
* Warn if $tar_file existsAndinus2020-08-271-1/+4
| | | | | "might overwrite" because I don't know what happens if tar fails, maybe it leaves the file untouched (?).
* Add pass to archive listAndinus2020-08-271-1/+7
| | | | | `pass' will archive `.password-store' directory which holds my passwords.
* Update README, add documentationAndinus2020-08-271-3/+71
|
* Add ssh to archive list, add date in tar file namesAndinus2020-08-271-3/+21
| | | | | | | | Date was added in `yyyy-mm-dd' format because it'll be easier to manage these archives later. `ssh' was added to archive list, it archives `$ENV{HOME}/.ssh' directory.
* Remove repetition, move checks to tar_create()Andinus2020-08-271-15/+30
| | | | | | This does make tar_create() complex & confusing but that's okay because otherwise there would've been lots of repetition in program as I added more definied archive paths.
* Remove unused files/modules, add archive subAndinus2020-08-253-2092/+68
| | | | `archive' will create tars of files, there is a pre-defined list.
* Remove unused code, Term::ANSIColorAndinus2020-08-251-23/+13
| | | | | I moved these to a shell scripts again because it's much simpler. Term::ANSIColor is not really required.
* Shorten option lengthAndinus2020-07-041-2/+2
| | | | `sync emacs irclogs' was too big, now it's `sync irclogs'.
* Sync irclogs, seperate sync optionsAndinus2020-07-032-29/+51
| | | | | By default it syncs only the config now & the user has to mention `irclogs' or `authinfo' to sync them.
* Add theo insultsAndinus2020-07-031-0/+1985
| | | | | | | | | | 9front is a continuation of Plan 9, and includes in its base system a program by the name of theo which prints out insults by Theo de Raadt when run. - https://jo.ie/doas-insults.html https://code.9front.org/hg/plan9front/raw-file/00bf6c34e13e/lib/theo
* Add Emacs.pm to sync authinfo & emacs configAndinus2020-07-031-0/+85
|
* Add syncemacs functionAndinus2020-07-031-0/+35
|
* Initial commitAndinus2020-07-023-0/+24
11 09:05:22 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-09-11 09:05:22 -0700 2181 - detect shift-tab' href='/akkartik/mu/commit/termbox/termbox.h?h=main&id=5cee556294afda23b0cce20afa365798f5ffbccc'>5cee5562 ^
5f128523 ^













































5f128523 ^





af336c44 ^


5f128523 ^
5f128523 ^




6f6b1b7f ^
5f128523 ^




6f6b1b7f ^
5f128523 ^
5e9eff8c ^

aa0bb974 ^
5f128523 ^
6f6b1b7f ^


e45c1ce2 ^
5f128523 ^



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