@sebastienrousseau/dotfiles 0.2.440 → 0.2.453

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (156) hide show
  1. package/COPYRIGHT +5 -0
  2. package/LICENSE +1260 -2
  3. package/Makefile +79 -0
  4. package/README.md +390 -70
  5. package/bin/dotfiles.sh +157 -0
  6. package/index.js +24 -0
  7. package/package.json +99 -25
  8. package/pnpm-lock.yaml +232 -0
  9. package/pnpm-workspace.yaml +2 -0
  10. package/shell/README.md +3 -0
  11. package/{Icon/r → shell/aliases/default/README.md} +0 -0
  12. package/shell/aliases/default/default.aliases.sh +199 -0
  13. package/shell/aliases/gcloud/gcloud.aliases.sh +121 -0
  14. package/shell/aliases/git/git.aliases.wip +586 -0
  15. package/shell/aliases/heroku/heroku.aliases.sh +1031 -0
  16. package/shell/aliases/jekyll/jekyll.aliases.sh +50 -0
  17. package/shell/aliases/pnpm/pnpm.aliases.sh +42 -0
  18. package/shell/aliases/subversion/subversion.aliases.sh +123 -0
  19. package/shell/aliases/tmux/tmux.aliases.sh +14 -0
  20. package/shell/aliases.sh +12 -0
  21. package/shell/configurations/README.md +3 -0
  22. package/shell/configurations/bash/bashrc +36 -0
  23. package/shell/configurations/curl/cacert.pem +3460 -0
  24. package/shell/configurations/curl/curlrc +55 -0
  25. package/shell/configurations/default/color.sh +17 -0
  26. package/shell/configurations/default/editor.sh +16 -0
  27. package/shell/configurations/default/prompt.sh +37 -0
  28. package/shell/configurations/inputrc/inputrc +22 -0
  29. package/shell/configurations/jshint/jshintrc +37 -0
  30. package/shell/configurations/profile/profile +36 -0
  31. package/shell/configurations/tmux/tmux +95 -0
  32. package/shell/configurations/vim/vimrc +73 -0
  33. package/{.wgetrc → shell/configurations/wget/wgetrc} +4 -0
  34. package/shell/configurations/zsh/zshrc +50 -0
  35. package/shell/configurations.sh +10 -0
  36. package/shell/exit.sh +9 -0
  37. package/shell/functions/README.md +3 -0
  38. package/shell/functions/cdls.sh +19 -0
  39. package/shell/functions/changediskpwd.wip +19 -0
  40. package/shell/functions/code.wip +18 -0
  41. package/shell/functions/countdown.wip +33 -0
  42. package/shell/functions/curlheader.sh +20 -0
  43. package/shell/functions/curltime.sh +31 -0
  44. package/shell/functions/encode64.sh +25 -0
  45. package/shell/functions/environment.sh +37 -0
  46. package/shell/functions/extract.sh +32 -0
  47. package/shell/functions/filehead.sh +4 -0
  48. package/{zsh/zsh/functions/genpwd.zsh → shell/functions/genpwd.sh} +8 -3
  49. package/shell/functions/goto.sh +14 -0
  50. package/shell/functions/headers.wip +4 -0
  51. package/{zsh/zsh/functions/hidehiddenfiles.zsh → shell/functions/hidehiddenfiles.sh} +7 -2
  52. package/shell/functions/history-all.wip +7 -0
  53. package/shell/functions/hostinfo.sh +25 -0
  54. package/{zsh/zsh/functions/hstats.zsh → shell/functions/hstats.sh} +6 -1
  55. package/shell/functions/httpdebug.sh +7 -0
  56. package/shell/functions/keygen.sh +23 -0
  57. package/shell/functions/last.sh +9 -0
  58. package/shell/functions/logout.sh +10 -0
  59. package/shell/functions/lowercase.sh +28 -0
  60. package/shell/functions/macos.sh +47 -0
  61. package/shell/functions/matrix.sh +9 -0
  62. package/shell/functions/mcd.sh +18 -0
  63. package/shell/functions/mount_read_only.sh +9 -0
  64. package/shell/functions/myproc.sh +7 -0
  65. package/shell/functions/prependpath.sh +19 -0
  66. package/shell/functions/print.wip +13 -0
  67. package/shell/functions/ql.sh +7 -0
  68. package/shell/functions/rd.sh +15 -0
  69. package/shell/functions/remove_disk.sh +9 -0
  70. package/shell/functions/ren.sh +11 -0
  71. package/shell/functions/rm.wip +13 -0
  72. package/shell/functions/rps.wip +103 -0
  73. package/{zsh/zsh/functions/showhiddenfiles.zsh → shell/functions/showhiddenfiles.sh} +7 -2
  74. package/{zsh/zsh/functions/size.zsh → shell/functions/size.sh} +6 -1
  75. package/shell/functions/stopwatch.sh +13 -0
  76. package/shell/functions/trash.wip +13 -0
  77. package/shell/functions/tree.wip +13 -0
  78. package/shell/functions/uppercase.sh +28 -0
  79. package/shell/functions/uuidgen.wip +27 -0
  80. package/shell/functions/view-source.sh +8 -0
  81. package/shell/functions/vscode.sh +31 -0
  82. package/shell/functions/whoisport.sh +12 -0
  83. package/shell/functions/zipf.sh +14 -0
  84. package/shell/functions.sh +10 -0
  85. package/shell/history.sh +107 -0
  86. package/shell/paths/ant/ant.paths.sh +15 -0
  87. package/shell/paths/default/default.paths.sh +17 -0
  88. package/shell/paths/homebrew/homebrew.paths.sh +25 -0
  89. package/shell/paths/java/java.paths.sh +16 -0
  90. package/shell/paths/maven/maven.paths.sh +17 -0
  91. package/shell/paths/node/node.paths.sh +13 -0
  92. package/shell/paths/nvm/nvm.paths.sh +21 -0
  93. package/shell/paths/pnpm/pnpm.paths.sh +13 -0
  94. package/shell/paths/python/python.paths.sh +19 -0
  95. package/shell/paths/ruby/ruby.paths.sh +23 -0
  96. package/shell/paths/tmux/tmux.paths.sh +14 -0
  97. package/shell/paths.sh +12 -0
  98. package/.curlrc +0 -17
  99. package/.eslintrc +0 -44
  100. package/.jshintrc +0 -22
  101. package/.travis.yml +0 -21
  102. package/CODE_OF_CONDUCT.md +0 -46
  103. package/CONTRIBUTING.md +0 -60
  104. package/Dotfiles.png +0 -0
  105. package/ISSUE_TEMPLATE.md +0 -43
  106. package/bash/.bash_aliases +0 -409
  107. package/bash/.bash_exit +0 -25
  108. package/bash/.bash_functions +0 -312
  109. package/bash/.bash_load_completion +0 -62
  110. package/bash/.bash_profile +0 -295
  111. package/bash/.bashrc +0 -47
  112. package/homebrew/brew-cask.sh +0 -165
  113. package/homebrew/brew-package.sh +0 -256
  114. package/homebrew/brew-tap.sh +0 -35
  115. package/homebrew/install.sh +0 -29
  116. package/zsh/.zshrc +0 -64
  117. package/zsh/aliases.zsh +0 -427
  118. package/zsh/configurations.zsh +0 -19
  119. package/zsh/exit.zsh +0 -21
  120. package/zsh/functions.zsh +0 -42
  121. package/zsh/history.zsh +0 -53
  122. package/zsh/profile.zsh +0 -17
  123. package/zsh/zsh/configurations/color.zsh +0 -21
  124. package/zsh/zsh/configurations/editor.zsh +0 -21
  125. package/zsh/zsh/configurations/history.zsh +0 -53
  126. package/zsh/zsh/configurations/path.zsh +0 -123
  127. package/zsh/zsh/configurations/prompt.zsh +0 -24
  128. package/zsh/zsh/functions/cd.zsh +0 -51
  129. package/zsh/zsh/functions/cdls.zsh +0 -11
  130. package/zsh/zsh/functions/changediskpwd.zsh +0 -4
  131. package/zsh/zsh/functions/code.zsh +0 -2
  132. package/zsh/zsh/functions/countdown.zsh +0 -33
  133. package/zsh/zsh/functions/curlheader.zsh +0 -12
  134. package/zsh/zsh/functions/curltime.zsh +0 -12
  135. package/zsh/zsh/functions/extract.zsh +0 -27
  136. package/zsh/zsh/functions/goto.zsh +0 -8
  137. package/zsh/zsh/functions/history-all.zsh +0 -2
  138. package/zsh/zsh/functions/hostinfo.zsh +0 -19
  139. package/zsh/zsh/functions/httpdebug.zsh +0 -2
  140. package/zsh/zsh/functions/keygen.zsh +0 -18
  141. package/zsh/zsh/functions/logout.zsh +0 -5
  142. package/zsh/zsh/functions/lowercase.zsh +0 -23
  143. package/zsh/zsh/functions/matrix.zsh +0 -4
  144. package/zsh/zsh/functions/mcd.zsh +0 -11
  145. package/zsh/zsh/functions/mount_read_only.zsh +0 -4
  146. package/zsh/zsh/functions/myproc.zsh +0 -2
  147. package/zsh/zsh/functions/print.zsh +0 -8
  148. package/zsh/zsh/functions/ql.zsh +0 -2
  149. package/zsh/zsh/functions/rd.zsh +0 -8
  150. package/zsh/zsh/functions/remove_disk.zsh +0 -4
  151. package/zsh/zsh/functions/rm.zsh +0 -10
  152. package/zsh/zsh/functions/stopwatch.zsh +0 -8
  153. package/zsh/zsh/functions/trash.zsh +0 -8
  154. package/zsh/zsh/functions/tree.zsh +0 -8
  155. package/zsh/zsh/functions/uppercase.zsh +0 -23
  156. package/zsh/zsh/functions/zipf.zsh +0 -9
@@ -0,0 +1,157 @@
1
+ #!/usr/bin/env bash
2
+ # 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.453) - https://dotfiles.io
3
+ # Copyright (c) Sebastien Rousseau 2022. All rights reserved
4
+ # License: MIT
5
+
6
+ ## 🆅🅰🆁🅸🅰🅱🅻🅴🆂 - Set variables.
7
+ BACKUPDIR="${HOME}/.dotfiles_backup" # Backup directory.
8
+ BIGreen='\033[1;92m' # Green color.
9
+ BIRed='\033[1;91m' # Red color.
10
+ DOTFILESDIR="${HOME}/.dotfiles" # Location of dotfiles.
11
+ DOWNLOADDIR="${HOME}/Downloads" # Download directory.
12
+ NC='\033[0m' # Reset/No Color
13
+ VERSION="0.2.453" # Dotfiles Version number.
14
+
15
+ ## 🅱🅰🅲🅺🆄🅿 - Backup existing files.
16
+ backup() {
17
+ echo "${BIRed}❭${NC} Creating a backup directory '${BIGreen}${BACKUPDIR}${NC}'."
18
+ mkdir -p "${BACKUPDIR}"
19
+
20
+ echo "${BIRed}❭${NC} Backing up existing dotfiles in '${BIGreen}${BACKUPDIR}${NC}'..."
21
+ # File list (use trailing slash for directories)
22
+ FILES="
23
+ .alias
24
+ .bash_aliases
25
+ .bash_profile
26
+ .bash_prompt
27
+ .bashrc
28
+ .curlrc
29
+ .dir_colors
30
+ .exports
31
+ .functions
32
+ .gitattributes
33
+ .gitconfig
34
+ .gitignore
35
+ .gitmessage
36
+ .inputrc
37
+ .npmrc
38
+ .path
39
+ .profile
40
+ .tmux.conf
41
+ .vimrc
42
+ .wgetrc
43
+ .yarnrc
44
+ .zshenv
45
+ .zshrc
46
+ cacert.pem
47
+ "
48
+
49
+ for file in ${FILES}; do
50
+ # shellcheck disable=SC2292
51
+ if [ -e "${HOME}/${file}" ]; then
52
+ echo "${BIRed}❭${NC} Backing up ${BIGreen}${file}${NC}..."
53
+ cp -f "${HOME}"/"${file}" "${BACKUPDIR}"/"${file}"
54
+ fi
55
+ done
56
+ }
57
+
58
+ ## 🅸🅽🆂🆃🅰🅻🅻🅴🆁 - Install dotfiles.
59
+ download() {
60
+ echo "${BIRed}❭${NC} Installing ${BIGreen}Dotfiles v${VERSION}${NC}"
61
+ # wget https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v"${VERSION}".zip -N -O "${DOWNLOADDIR}/v${VERSION}.zip"
62
+ curl https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v"${VERSION}".zip -o "${DOWNLOADDIR}"/v"${VERSION}".zip
63
+ }
64
+
65
+ ## 🆄🅽🅿🅰🅲🅺 - Unpack installer.
66
+ unpack() {
67
+ echo "${BIRed}❭${NC} Unpacking ${BIGreen}Dotfiles v${VERSION}${NC}"
68
+ unzip -qq -u "${DOWNLOADDIR}"/v"${VERSION}".zip -d "${DOWNLOADDIR}"
69
+ mv "${DOWNLOADDIR}/dotfiles-${VERSION}/shell/" "${DOTFILESDIR}"
70
+ rm "${DOWNLOADDIR}/v${VERSION}.zip"
71
+ }
72
+
73
+ ## 🅸🅽🆂🆃🅰🅻🅻 - Install dotfiles.
74
+ installer() {
75
+ echo "${BIRed}❭${NC} Installing dotfiles..."
76
+ backup &&
77
+ download &&
78
+ unpack &&
79
+ copy
80
+ }
81
+
82
+ ## 🅲🅾🅿🆈 - Copy dotfiles.
83
+ copy() {
84
+ # echo "${BIRed}❭${NC} Switching to the Dotfiles directory"
85
+ # cd "${DOTFILESDIR}" &&
86
+
87
+ echo "${BIRed}❭${NC} Launching the installation script..."
88
+ cp -f "${DOTFILESDIR}"/shell/configurations/bash/bashrc "${HOME}"/.bashrc &&
89
+ cp -f "${DOTFILESDIR}"/shell/configurations/curl/cacert.pem "${HOME}"/cacert.pem &&
90
+ cp -f "${DOTFILESDIR}"/shell/configurations/curl/curlrc "${HOME}"/.curlrc &&
91
+ cp -f "${DOTFILESDIR}"/shell/configurations/jshint/jshintrc "${HOME}"/.jshintrc &&
92
+ cp -f "${DOTFILESDIR}"/shell/configurations/profile/profile "${HOME}"/.profile &&
93
+ cp -f "${DOTFILESDIR}"/shell/configurations/tmux/tmux "${HOME}"/.tmux.conf &&
94
+ cp -f "${DOTFILESDIR}"/shell/configurations/vim/vimrc "${HOME}"/.vimrc &&
95
+ cp -f "${DOTFILESDIR}"/shell/configurations/wget/wgetrc "${HOME}"/.wgetrc &&
96
+ cp -f "${DOTFILESDIR}"/shell/configurations/zsh/zshrc "${HOME}"/.zshrc
97
+
98
+ echo "${BIRed}❭${NC} Cleaning up..."
99
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/bash &&
100
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/curl &&
101
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/jshint &&
102
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/profile &&
103
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/tmux &&
104
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/vim &&
105
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/wget &&
106
+ rm -Rf "${DOTFILESDIR}"/shell/configurations/zsh &&
107
+
108
+ echo "${BIRed}❭${NC} ${BIGreen}Dotfiles v${VERSION}${NC} installed."
109
+ }
110
+
111
+ ## 🅷🅴🅻🅿 🅼🅴🅽🆄 - Display help menu.
112
+ help() {
113
+ cat <<EOF
114
+
115
+ ┌───────────────────────────────────────────┐
116
+ │ Dotfiles (v${VERSION}) │
117
+ ├───────────────────────────────────────────┤
118
+ │ Simply designed to fit your shell life. │
119
+ └───────────────────────────────────────────┘
120
+
121
+ USAGE:
122
+
123
+ dotfiles.sh [COMMAND]
124
+
125
+ COMMANDS:
126
+
127
+ backup - Backup previous dotfiles from your '${HOME}' directory.
128
+ copy - Copy dotfiles (v${VERSION}) to your '${HOME}' directory.
129
+ download - Download the latest dotfiles package (v${VERSION}.zip).
130
+ installer - Run the full installation process.
131
+ unpack - Unpack Dotfiles (v${VERSION}.zip) package.
132
+ help - Show the help menu.
133
+
134
+ EOF
135
+ }
136
+
137
+ # shellcheck disable=SC2292
138
+ if [ "$1" = "backup" ]; then
139
+ echo "${BIRed}❭${NC} Backing up.${NC}"
140
+ backup
141
+ elif [ "$1" = "copy" ]; then
142
+ echo "${BIRed}❭${NC} Copying dotfiles.${NC}"
143
+ copy
144
+ elif [ "$1" = "download" ]; then
145
+ echo "${BIRed}❭${NC} Downloading ${BIGreen}Dotfiles v${VERSION}${NC}."
146
+ download
147
+ elif [ "$1" = "help" ]; then
148
+ help
149
+ elif [ "$1" = "installer" ]; then
150
+ echo "${BIRed}❭${NC} Installing ${BIGreen}Dotfiles v${VERSION}${NC}."
151
+ installer
152
+ elif [ "$1" = "unpack" ]; then
153
+ echo "${BIRed}❭${NC} Unpacking ${BIGreen}Dotfiles v${VERSION}${NC}."
154
+ unpack
155
+ else
156
+ help
157
+ fi
package/index.js ADDED
@@ -0,0 +1,24 @@
1
+ import { exec } from "child_process";
2
+
3
+ /**
4
+ * Execute simple shell command (async wrapper).
5
+ * @param {String} cmd
6
+ * @return {Object} { stdout: String, stderr: String }
7
+ */
8
+ async function sh(cmd) {
9
+ return new Promise(function (resolve, reject) {
10
+ exec(cmd, (err, stdout, stderr) => {
11
+ if (err) {
12
+ reject(err);
13
+ } else {
14
+ resolve({ stdout, stderr });
15
+ }
16
+ });
17
+ });
18
+ }
19
+
20
+ async function main() {
21
+ let { stdout } = await sh("pnpm run installer");
22
+ }
23
+
24
+ main();
package/package.json CHANGED
@@ -1,28 +1,102 @@
1
1
  {
2
- "name": "@sebastienrousseau/dotfiles",
3
- "version": "0.2.440",
4
- "description": "Dotfiles - A set of Mac OS X configuration files - Simply designed to fit your shell life.",
5
- "keywords": [
6
- "dotfiles",
7
- "bash",
8
- "bash-profile",
9
- "macos",
10
- "macosx",
11
- "shell",
12
- "homebrew",
13
- "dotfiles-resources"
2
+ "author": "Sebastien Rousseau (https://github.com/sebastienrousseau)",
3
+ "autoupdate": {
4
+ "fileMap": [
5
+ {
6
+ "basePath": "dist",
7
+ "files": [
8
+ "**/*"
9
+ ]
10
+ }
14
11
  ],
15
- "repository": "https://github.com/sebastienrousseau/dotfiles.git",
16
- "author": "RSebastien Rousseau (https://github.com/sebastienrousseau)",
17
- "contributors": [
18
- "Graham Colgate (https://github.com/gramtech)"
19
- ],
20
- "license": "MIT",
21
- "license_URI": "http://www.opensource.org/licenses/mit-license.php",
22
- "bugs": {
23
- "url": "https://github.com/sebastienrousseau/dotfiles/issues"
24
- },
25
- "scripts": {},
26
- "devDependencies": {},
27
- "dependencies": {}
12
+ "source": "git",
13
+ "target": "git://github.com/sebastienrousseau/dotfiles.git"
14
+ },
15
+ "bin": {
16
+ "dotfiles": "./index.js"
17
+ },
18
+ "bugs": {
19
+ "url": "https://github.com/sebastienrousseau/dotfiles/issues"
20
+ },
21
+ "contributors": [
22
+ "Graham Colgate (https://github.com/gramtech)"
23
+ ],
24
+ "description": "Dotfiles - A set of macOS / Linux and Windows configuration files - Simply designed to fit your shell life.",
25
+ "devDependencies": {
26
+ "filesizes": "^0.1.2",
27
+ "pnpm": "^7.13.1",
28
+ "rimraf": "^3.0.2"
29
+ },
30
+ "directories": {
31
+ "bin": "./bin",
32
+ "docs": "./docs",
33
+ "shell": "./shell"
34
+ },
35
+ "files": [
36
+ "/index.js",
37
+ "/bin",
38
+ "/COPYRIGHT",
39
+ "/LICENSE",
40
+ "/Makefile",
41
+ "/package.json",
42
+ "/pnpm-lock.yaml",
43
+ "/pnpm-workspace.yaml",
44
+ "/README.md",
45
+ "/shell"
46
+ ],
47
+ "homepage": "https://dotfiles.io/",
48
+ "keywords": [
49
+ "dotfiles",
50
+ "bash",
51
+ "bash-profile",
52
+ "macos",
53
+ "macosx",
54
+ "shell",
55
+ "homebrew",
56
+ "dotfiles-resources"
57
+ ],
58
+ "license": "MIT",
59
+ "license_URI": "http://www.opensource.org/licenses/mit-license.php",
60
+ "main": "index.js",
61
+ "name": "@sebastienrousseau/dotfiles",
62
+ "publishConfig": {
63
+ "access": "public",
64
+ "registry": "https://npm.pkg.github.com/"
65
+ },
66
+ "repository": {
67
+ "type": "git",
68
+ "url": "git@github.com:sebastienrousseau/dotfiles.git"
69
+ },
70
+ "type": "module",
71
+ "version": "0.2.453",
72
+ "scripts": {
73
+ "backup": "pnpm run bk:dir && pnpm run bk:bsh && pnpm run bk:zsh",
74
+ "bk:bsh": "if [ -z $HOME/.bashrc ]; then mv -f $HOME/.bashrc $HOME/.dotfiles_backup/bashrc.bk; fi ",
75
+ "bk:dir": "if [ -d $HOME/.dotfiles ]; then mv -f $HOME/.dotfiles $HOME/dotfiles_backup; fi ",
76
+ "bk:zsh": "if [ -z $HOME/.zshrc ]; then mv -f $HOME/.zshrc $HOME/.dotfiles_backup/zshrc.bk; fi ",
77
+ "build": "pnpm run clean:dist && pnpm run cp:shell && pnpm run cp:bin && pnpm run cp:docs && pnpm run cp:make && pnpm run filesizes",
78
+ "clean:dist": "rimraf \"dist/\"",
79
+ "copy": "pnpm run cp:dirs && pnpm run cp:bash && pnpm run cp:prof && pnpm run cp:tmux && pnpm run cp:curl && pnpm run cp:jsht && pnpm run cp:inpt && pnpm run cp:cert && pnpm run cp:vimr && pnpm run cp:wget && pnpm run cp:zshr",
80
+ "cp:bash": "cp ./shell/configurations/bash/bashrc $HOME/.bashrc",
81
+ "cp:bin": "cp -R ./bin/ ./dist",
82
+ "cp:cert": "cp ./shell/configurations/curl/cacert.pem $HOME/cacert.pem",
83
+ "cp:curl": "cp ./shell/configurations/curl/curlrc $HOME/.curlrc",
84
+ "cp:dirs": "cp -R ./shell $HOME/.dotfiles/shell ",
85
+ "cp:docs": "cp -R ./docs ./dist/docs && cp ./README.md ./dist && cp ./LICENSE ./dist && cp ./COPYRIGHT ./dist",
86
+ "cp:inpt": "cp ./shell/configurations/inputrc/inputrc $HOME/.inputrc",
87
+ "cp:jsht": "cp ./shell/configurations/jshint/jshintrc $HOME/.jshintrc",
88
+ "cp:make": "cp ./Makefile ./dist",
89
+ "cp:prof": "cp ./shell/configurations/profile/profile $HOME/.profile",
90
+ "cp:shell": "cp -R ./shell/ ./dist",
91
+ "cp:tmux": "cp ./shell/configurations/tmux/tmux $HOME/.tmux.conf",
92
+ "cp:vimr": "cp ./shell/configurations/vim/vimrc $HOME/.vimrc",
93
+ "cp:wget": "cp ./shell/configurations/wget/wgetrc $HOME/.wgetrc",
94
+ "cp:zshr": "cp ./shell/configurations/zsh/zshrc $HOME/.zshrc",
95
+ "directory": "mkdir $HOME/.dotfiles",
96
+ "filesizes": "filesizes dist/ > dist/filesizes.txt",
97
+ "help": "sh ./bin/dotfiles.sh --help",
98
+ "installer": "pnpm run backup && pnpm run directory && pnpm run copy",
99
+ "start": "node index.js",
100
+ "test": "echo \"Error: no test specified\" && exit 1"
101
+ }
28
102
  }
package/pnpm-lock.yaml ADDED
@@ -0,0 +1,232 @@
1
+ lockfileVersion: 5.4
2
+
3
+ importers:
4
+
5
+ .:
6
+ specifiers:
7
+ filesizes: ^0.1.2
8
+ pnpm: ^7.13.1
9
+ rimraf: ^3.0.2
10
+ devDependencies:
11
+ filesizes: registry.npmjs.org/filesizes/0.1.2
12
+ pnpm: registry.npmjs.org/pnpm/7.13.1
13
+ rimraf: registry.npmjs.org/rimraf/3.0.2
14
+
15
+ packages:
16
+
17
+ registry.npmjs.org/ansi-styles/4.3.0:
18
+ resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz}
19
+ name: ansi-styles
20
+ version: 4.3.0
21
+ engines: {node: '>=8'}
22
+ dependencies:
23
+ color-convert: registry.npmjs.org/color-convert/2.0.1
24
+ dev: true
25
+
26
+ registry.npmjs.org/balanced-match/1.0.2:
27
+ resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz}
28
+ name: balanced-match
29
+ version: 1.0.2
30
+ dev: true
31
+
32
+ registry.npmjs.org/brace-expansion/1.1.11:
33
+ resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz}
34
+ name: brace-expansion
35
+ version: 1.1.11
36
+ dependencies:
37
+ balanced-match: registry.npmjs.org/balanced-match/1.0.2
38
+ concat-map: registry.npmjs.org/concat-map/0.0.1
39
+ dev: true
40
+
41
+ registry.npmjs.org/chalk/3.0.0:
42
+ resolution: {integrity: sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/chalk/-/chalk-3.0.0.tgz}
43
+ name: chalk
44
+ version: 3.0.0
45
+ engines: {node: '>=8'}
46
+ dependencies:
47
+ ansi-styles: registry.npmjs.org/ansi-styles/4.3.0
48
+ supports-color: registry.npmjs.org/supports-color/7.2.0
49
+ dev: true
50
+
51
+ registry.npmjs.org/cli-table/0.3.11:
52
+ resolution: {integrity: sha512-IqLQi4lO0nIB4tcdTpN4LCB9FI3uqrJZK7RC515EnhZ6qBaglkIgICb1wjeAqpdoOabm1+SuQtkXIPdYC93jhQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/cli-table/-/cli-table-0.3.11.tgz}
53
+ name: cli-table
54
+ version: 0.3.11
55
+ engines: {node: '>= 0.2.0'}
56
+ dependencies:
57
+ colors: registry.npmjs.org/colors/1.0.3
58
+ dev: true
59
+
60
+ registry.npmjs.org/color-convert/2.0.1:
61
+ resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz}
62
+ name: color-convert
63
+ version: 2.0.1
64
+ engines: {node: '>=7.0.0'}
65
+ dependencies:
66
+ color-name: registry.npmjs.org/color-name/1.1.4
67
+ dev: true
68
+
69
+ registry.npmjs.org/color-name/1.1.4:
70
+ resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz}
71
+ name: color-name
72
+ version: 1.1.4
73
+ dev: true
74
+
75
+ registry.npmjs.org/colors/1.0.3:
76
+ resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/colors/-/colors-1.0.3.tgz}
77
+ name: colors
78
+ version: 1.0.3
79
+ engines: {node: '>=0.1.90'}
80
+ dev: true
81
+
82
+ registry.npmjs.org/commander/4.1.1:
83
+ resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/commander/-/commander-4.1.1.tgz}
84
+ name: commander
85
+ version: 4.1.1
86
+ engines: {node: '>= 6'}
87
+ dev: true
88
+
89
+ registry.npmjs.org/concat-map/0.0.1:
90
+ resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz}
91
+ name: concat-map
92
+ version: 0.0.1
93
+ dev: true
94
+
95
+ registry.npmjs.org/duplexer/0.1.2:
96
+ resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz}
97
+ name: duplexer
98
+ version: 0.1.2
99
+ dev: true
100
+
101
+ registry.npmjs.org/filesizes/0.1.2:
102
+ resolution: {integrity: sha512-B7S28jvoR/mSmccYwh6jkZYvsmuXqULibMkT9rU4hYZfjHTk7bw8Zmygss9UNX49YbJirzvGb2MSh/CbSWKzzQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/filesizes/-/filesizes-0.1.2.tgz}
103
+ name: filesizes
104
+ version: 0.1.2
105
+ hasBin: true
106
+ dependencies:
107
+ chalk: registry.npmjs.org/chalk/3.0.0
108
+ cli-table: registry.npmjs.org/cli-table/0.3.11
109
+ commander: registry.npmjs.org/commander/4.1.1
110
+ gzip-size: registry.npmjs.org/gzip-size/5.1.1
111
+ pretty-bytes: registry.npmjs.org/pretty-bytes/5.6.0
112
+ dev: true
113
+
114
+ registry.npmjs.org/fs.realpath/1.0.0:
115
+ resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz}
116
+ name: fs.realpath
117
+ version: 1.0.0
118
+ dev: true
119
+
120
+ registry.npmjs.org/glob/7.2.3:
121
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/glob/-/glob-7.2.3.tgz}
122
+ name: glob
123
+ version: 7.2.3
124
+ dependencies:
125
+ fs.realpath: registry.npmjs.org/fs.realpath/1.0.0
126
+ inflight: registry.npmjs.org/inflight/1.0.6
127
+ inherits: registry.npmjs.org/inherits/2.0.4
128
+ minimatch: registry.npmjs.org/minimatch/3.1.2
129
+ once: registry.npmjs.org/once/1.4.0
130
+ path-is-absolute: registry.npmjs.org/path-is-absolute/1.0.1
131
+ dev: true
132
+
133
+ registry.npmjs.org/gzip-size/5.1.1:
134
+ resolution: {integrity: sha512-FNHi6mmoHvs1mxZAds4PpdCS6QG8B4C1krxJsMutgxl5t3+GlRTzzI3NEkifXx2pVsOvJdOGSmIgDhQ55FwdPA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/gzip-size/-/gzip-size-5.1.1.tgz}
135
+ name: gzip-size
136
+ version: 5.1.1
137
+ engines: {node: '>=6'}
138
+ dependencies:
139
+ duplexer: registry.npmjs.org/duplexer/0.1.2
140
+ pify: registry.npmjs.org/pify/4.0.1
141
+ dev: true
142
+
143
+ registry.npmjs.org/has-flag/4.0.0:
144
+ resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz}
145
+ name: has-flag
146
+ version: 4.0.0
147
+ engines: {node: '>=8'}
148
+ dev: true
149
+
150
+ registry.npmjs.org/inflight/1.0.6:
151
+ resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz}
152
+ name: inflight
153
+ version: 1.0.6
154
+ dependencies:
155
+ once: registry.npmjs.org/once/1.4.0
156
+ wrappy: registry.npmjs.org/wrappy/1.0.2
157
+ dev: true
158
+
159
+ registry.npmjs.org/inherits/2.0.4:
160
+ resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz}
161
+ name: inherits
162
+ version: 2.0.4
163
+ dev: true
164
+
165
+ registry.npmjs.org/minimatch/3.1.2:
166
+ resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz}
167
+ name: minimatch
168
+ version: 3.1.2
169
+ dependencies:
170
+ brace-expansion: registry.npmjs.org/brace-expansion/1.1.11
171
+ dev: true
172
+
173
+ registry.npmjs.org/once/1.4.0:
174
+ resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/once/-/once-1.4.0.tgz}
175
+ name: once
176
+ version: 1.4.0
177
+ dependencies:
178
+ wrappy: registry.npmjs.org/wrappy/1.0.2
179
+ dev: true
180
+
181
+ registry.npmjs.org/path-is-absolute/1.0.1:
182
+ resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz}
183
+ name: path-is-absolute
184
+ version: 1.0.1
185
+ engines: {node: '>=0.10.0'}
186
+ dev: true
187
+
188
+ registry.npmjs.org/pify/4.0.1:
189
+ resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pify/-/pify-4.0.1.tgz}
190
+ name: pify
191
+ version: 4.0.1
192
+ engines: {node: '>=6'}
193
+ dev: true
194
+
195
+ registry.npmjs.org/pnpm/7.13.1:
196
+ resolution: {integrity: sha512-Nu1LzxlH3qdIFe0DJ5SciqBl9i7t/eW+c0zKf9g8TXRo20EhXy/e9YwCLY2fEwbIYL/3gZ4zuys010PRpsbHFQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pnpm/-/pnpm-7.13.1.tgz}
197
+ name: pnpm
198
+ version: 7.13.1
199
+ engines: {node: '>=14.6'}
200
+ hasBin: true
201
+ dev: true
202
+
203
+ registry.npmjs.org/pretty-bytes/5.6.0:
204
+ resolution: {integrity: sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz}
205
+ name: pretty-bytes
206
+ version: 5.6.0
207
+ engines: {node: '>=6'}
208
+ dev: true
209
+
210
+ registry.npmjs.org/rimraf/3.0.2:
211
+ resolution: {integrity: sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz}
212
+ name: rimraf
213
+ version: 3.0.2
214
+ hasBin: true
215
+ dependencies:
216
+ glob: registry.npmjs.org/glob/7.2.3
217
+ dev: true
218
+
219
+ registry.npmjs.org/supports-color/7.2.0:
220
+ resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz}
221
+ name: supports-color
222
+ version: 7.2.0
223
+ engines: {node: '>=8'}
224
+ dependencies:
225
+ has-flag: registry.npmjs.org/has-flag/4.0.0
226
+ dev: true
227
+
228
+ registry.npmjs.org/wrappy/1.0.2:
229
+ resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==, registry: https://npm.pkg.github.com/sebastienrousseau, tarball: https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz}
230
+ name: wrappy
231
+ version: 1.0.2
232
+ dev: true
@@ -0,0 +1,2 @@
1
+ packages:
2
+ - "shell/**"
@@ -0,0 +1,3 @@
1
+ # Dotfiles aliases
2
+
3
+ ![Banner representing the Dotfiles Library](/assets/dotfiles.svg)
File without changes