@sebastienrousseau/dotfiles 0.2.463 → 0.2.465
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.
- package/README.md +118 -281
- package/dist/Makefile +2 -2
- package/dist/bin/constants.d.ts +2 -2
- package/dist/bin/constants.d.ts.map +1 -1
- package/dist/bin/constants.js +1 -1
- package/dist/bin/constants.js.map +1 -1
- package/dist/filesizes.txt +170 -144
- package/dist/lib/README.md +6 -1
- package/dist/lib/aliases/README.md +47 -0
- package/dist/lib/aliases/archives/README.md +39 -67
- package/dist/lib/aliases/archives/archives.aliases.sh +128 -60
- package/dist/lib/aliases/cd/README.md +26 -9
- package/dist/lib/aliases/cd/cd.aliases.sh +1 -4
- package/dist/lib/aliases/chmod/README.md +48 -13
- package/dist/lib/aliases/chmod/chmod.aliases.sh +1 -1
- package/dist/lib/aliases/clear/README.md +33 -38
- package/dist/lib/aliases/clear/clear.aliases.sh +35 -33
- package/dist/lib/aliases/configuration/README.md +26 -37
- package/dist/lib/aliases/configuration/configuration.aliases.sh +40 -36
- package/dist/lib/aliases/default/README.md +26 -52
- package/dist/lib/aliases/default/default.aliases.sh +105 -44
- package/dist/lib/aliases/dig/README.md +23 -40
- package/dist/lib/aliases/dig/dig.aliases.sh +26 -29
- package/dist/lib/aliases/disk-usage/README.md +32 -0
- package/dist/lib/aliases/disk-usage/du.aliases.sh +84 -0
- package/dist/lib/aliases/editor/README.md +35 -33
- package/dist/lib/aliases/editor/editor.aliases.sh +13 -39
- package/dist/lib/aliases/find/README.md +42 -29
- package/dist/lib/aliases/find/find.aliases.sh +52 -26
- package/dist/lib/aliases/gcloud/README.md +59 -148
- package/dist/lib/aliases/gcloud/gcloud.aliases.sh +327 -138
- package/dist/lib/aliases/git/README.md +149 -0
- package/dist/lib/aliases/git/git.aliases.sh +535 -131
- package/dist/lib/aliases/gnu/README.md +85 -0
- package/dist/lib/aliases/gnu/gnucoreutils-aliases.sh +143 -109
- package/dist/lib/aliases/heroku/README.md +426 -0
- package/dist/lib/aliases/heroku/heroku.aliases.sh +1047 -288
- package/dist/lib/aliases/interactive/README.md +43 -0
- package/dist/lib/aliases/interactive/interactive.aliases.sh +48 -9
- package/dist/lib/aliases/jekyll/README.md +37 -0
- package/dist/lib/aliases/jekyll/jekyll.aliases.sh +49 -10
- package/dist/lib/aliases/list/README.md +38 -0
- package/dist/lib/aliases/list/list.aliases.sh +81 -30
- package/dist/lib/aliases/macos/README.md +38 -0
- package/dist/lib/aliases/macos/macos.aliases.sh +65 -0
- package/dist/lib/aliases/make/README.md +28 -0
- package/dist/lib/aliases/make/make.aliases.sh +30 -10
- package/dist/lib/aliases/mkdir/README.md +26 -0
- package/dist/lib/aliases/mkdir/mkdir.aliases.sh +24 -8
- package/dist/lib/aliases/npm/README.md +37 -0
- package/dist/lib/aliases/npm/npm.aliases.sh +54 -17
- package/dist/lib/aliases/permission/README.md +43 -0
- package/dist/lib/aliases/permission/permission.aliases.sh +73 -0
- package/dist/lib/aliases/pnpm/README.md +49 -0
- package/dist/lib/aliases/pnpm/pnpm.aliases.sh +70 -36
- package/dist/lib/aliases/ps/README.md +25 -0
- package/dist/lib/aliases/ps/ps.aliases.sh +14 -6
- package/dist/lib/aliases/rsync/README.md +21 -0
- package/dist/lib/aliases/rsync/rsync.aliases.sh +10 -4
- package/dist/lib/aliases/rust/README.md +57 -0
- package/dist/lib/aliases/rust/rust.aliases.sh +116 -39
- package/dist/lib/aliases/subversion/README.md +62 -0
- package/dist/lib/aliases/subversion/subversion.aliases.sh +4 -3
- package/dist/lib/aliases/sudo/README.md +23 -0
- package/dist/lib/aliases/sudo/sudo.aliases.sh +15 -6
- package/dist/lib/aliases/tmux/README.md +27 -0
- package/dist/lib/aliases/tmux/tmux.aliases.sh +29 -10
- package/dist/lib/aliases/update/README.md +34 -0
- package/dist/lib/aliases/update/update.aliases.sh +57 -26
- package/dist/lib/aliases/uuid/README.md +20 -0
- package/dist/lib/aliases/uuid/uuid.aliases.sh +13 -4
- package/dist/lib/aliases/wget/README.md +23 -0
- package/dist/lib/aliases/wget/wget.aliases.sh +15 -6
- package/dist/lib/aliases.sh +4 -3
- package/dist/lib/configurations/README.md +13 -2
- package/dist/lib/configurations/bash/bashrc +4 -3
- package/dist/lib/configurations/curl/curlrc +2 -2
- package/dist/lib/configurations/default/color.sh +3 -2
- package/dist/lib/configurations/default/constants.sh +4 -3
- package/dist/lib/configurations/default/editor.sh +3 -2
- package/dist/lib/configurations/default/prompt.sh +3 -2
- package/dist/lib/configurations/input/inputrc +2 -2
- package/dist/lib/configurations/nano/nanorc +2 -2
- package/dist/lib/configurations/profile/profile +2 -2
- package/dist/lib/configurations/tmux/default +2 -2
- package/dist/lib/configurations/tmux/display +6 -2
- package/dist/lib/configurations/tmux/linux +2 -2
- package/dist/lib/configurations/tmux/navigation +2 -2
- package/dist/lib/configurations/tmux/panes +2 -2
- package/dist/lib/configurations/tmux/theme +3 -3
- package/dist/lib/configurations/tmux/tmux +2 -2
- package/dist/lib/configurations/tmux/vi +2 -2
- package/dist/lib/configurations/vim/vimrc +1 -1
- package/dist/lib/configurations/wget/wgetrc +2 -2
- package/dist/lib/configurations/zsh/zshrc +2 -2
- package/dist/lib/configurations.sh +4 -3
- package/dist/lib/functions/README.md +69 -2
- package/dist/lib/functions/cdls.sh +3 -2
- package/dist/lib/functions/curlheader.sh +3 -2
- package/dist/lib/functions/curlstatus.sh +17 -0
- package/dist/lib/functions/curltime.sh +4 -3
- package/dist/lib/functions/encode64.sh +3 -2
- package/dist/lib/functions/environment.sh +3 -2
- package/dist/lib/functions/extract.sh +3 -2
- package/dist/lib/functions/filehead.sh +1 -1
- package/dist/lib/functions/freespace.sh +21 -0
- package/dist/lib/functions/genpwd.sh +33 -7
- package/dist/lib/functions/goto.sh +3 -2
- package/dist/lib/functions/hidehiddenfiles.sh +3 -2
- package/dist/lib/functions/hostinfo.sh +3 -2
- package/dist/lib/functions/hstats.sh +3 -2
- package/dist/lib/functions/httpdebug.sh +3 -2
- package/dist/lib/functions/keygen.sh +20 -13
- package/dist/lib/functions/last.sh +3 -2
- package/dist/lib/functions/logout.sh +3 -2
- package/dist/lib/functions/lowercase.sh +3 -2
- package/dist/lib/functions/matrix.sh +34 -8
- package/dist/lib/functions/mount_read_only.sh +3 -2
- package/dist/lib/functions/myproc.sh +4 -3
- package/dist/lib/functions/prependpath.sh +3 -2
- package/dist/lib/functions/ql.sh +3 -2
- package/dist/lib/functions/rd.sh +3 -2
- package/dist/lib/functions/remove_disk.sh +3 -2
- package/dist/lib/functions/ren.sh +3 -2
- package/dist/lib/functions/showhiddenfiles.sh +3 -2
- package/dist/lib/functions/size.sh +3 -2
- package/dist/lib/functions/stopwatch.sh +4 -3
- package/dist/lib/functions/uppercase.sh +3 -2
- package/dist/lib/functions/view-source.sh +3 -2
- package/dist/lib/functions/vscode.sh +3 -2
- package/dist/lib/functions/whoisport.sh +3 -2
- package/dist/lib/functions/zipf.sh +3 -2
- package/dist/lib/functions.sh +4 -3
- package/dist/lib/history.sh +20 -26
- package/dist/lib/paths/ant/ant.paths.sh +9 -10
- package/dist/lib/paths/default/default.paths.sh +3 -2
- package/dist/lib/paths/homebrew/homebrew.paths.sh +3 -2
- package/dist/lib/paths/java/java.paths.sh +3 -2
- package/dist/lib/paths/maven/maven.paths.sh +12 -13
- package/dist/lib/paths/node/node.paths.sh +3 -2
- package/dist/lib/paths/nvm/nvm.paths.sh +3 -2
- package/dist/lib/paths/pnpm/pnpm.paths.sh +3 -2
- package/dist/lib/paths/python/python.paths.sh +3 -2
- package/dist/lib/paths/ruby/ruby.paths.sh +3 -2
- package/dist/lib/paths/tmux/tmux.paths.sh +3 -7
- package/dist/lib/paths.sh +4 -3
- package/dist/scripts/backup.sh +3 -2
- package/dist/scripts/banner.sh +3 -2
- package/dist/scripts/build.sh +3 -2
- package/dist/scripts/clean.sh +3 -2
- package/dist/scripts/compile.sh +3 -2
- package/dist/scripts/copy.sh +3 -2
- package/dist/scripts/dotfiles.sh +3 -2
- package/dist/scripts/download.sh +3 -2
- package/dist/scripts/help.sh +3 -2
- package/dist/scripts/ssh.sh +3 -2
- package/dist/scripts/unpack.sh +3 -2
- package/package.json +7 -7
- package/dist/lib/aliases/du/README.md +0 -35
- package/dist/lib/aliases/du/du.aliases.sh +0 -37
- package/dist/lib/functions/changediskpwd.tmp +0 -19
- package/dist/lib/functions/code.tmp +0 -18
- package/dist/lib/functions/countdown.tmp +0 -34
- package/dist/lib/functions/headers.tmp +0 -4
- package/dist/lib/functions/history-all.tmp +0 -8
- package/dist/lib/functions/macos.sh +0 -47
- package/dist/lib/functions/mcd.tmp +0 -19
- package/dist/lib/functions/print.tmp +0 -14
- package/dist/lib/functions/rm.tmp +0 -14
- package/dist/lib/functions/rps.tmp +0 -104
- package/dist/lib/functions/trash.tmp +0 -14
- package/dist/lib/functions/tree.tmp +0 -14
- package/dist/lib/functions/uuidgen.tmp +0 -28
package/README.md
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
|
-
|
|
1
|
+
<!-- markdownlint-disable MD033 MD041 -->
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
<img src="https://kura.pro/dotfiles/v2/images/logos/dotfiles.svg"
|
|
4
|
+
alt="dotfiles logo" width="261" align="right" />
|
|
5
|
+
|
|
6
|
+
<!-- markdownlint-enable MD033 MD041 -->
|
|
7
|
+
|
|
8
|
+
# Dotfiles (v0.2.465)
|
|
9
|
+
|
|
10
|
+
Simply designed to fit your shell life 🐚
|
|
11
|
+
|
|
12
|
+
![Dotfiles banner][banner]
|
|
4
13
|
|
|
5
14
|
[![Codacy][codacy-grade]][codacy-url]
|
|
6
15
|
[![Contributors][contributors-shield]][contributors-url]
|
|
@@ -8,105 +17,118 @@
|
|
|
8
17
|
[![License][license]][license-url]
|
|
9
18
|
[![Love][love]][website-url]
|
|
10
19
|
|
|
11
|
-
|
|
12
|
-
• [Report Bug][issues-url]
|
|
13
|
-
• [
|
|
14
|
-
• [Contributing Guidelines][contributing-url]**
|
|
20
|
+
• [Website][website-url] • [Documentation][github-url]
|
|
21
|
+
• [Report Bug][issues-url] • [Request Feature][issues-url]
|
|
22
|
+
• [Contributing Guidelines][contributing-url]
|
|
15
23
|
|
|
16
|
-
|
|
24
|
+
![divider][divider]
|
|
17
25
|
|
|
18
|
-
|
|
26
|
+
## Welcome to Dotfiles (v0.2.465) 👋
|
|
19
27
|
|
|
20
|
-
|
|
21
|
-
aimed at making your life easier by providing a set of scripts and configuration
|
|
22
|
-
files with new ways to get things done.
|
|
28
|
+
## Overview 📖
|
|
23
29
|
|
|
24
|
-
|
|
25
|
-
|
|
30
|
+
Dotfiles are a powerful set of configuration files for macOS, Linux, and
|
|
31
|
+
Windows providing scripts and customized settings to streamline your
|
|
32
|
+
workflow. These files are an essential tool for developers and users who
|
|
33
|
+
want to modify their environment and applications to their exact needs.
|
|
26
34
|
|
|
27
|
-
Dotfiles
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
35
|
+
The Dotfiles library are combined into a single `lib` directory. This
|
|
36
|
+
directory allows you to easily setup your development environment across
|
|
37
|
+
numerous computers and operating systems, ensuring consistency and
|
|
38
|
+
productivity no matter where you work.
|
|
31
39
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
40
|
+
<!-- markdownlint-disable MD033 MD041 -->
|
|
41
|
+
<br>
|
|
42
|
+
<center>
|
|
43
|
+
<!-- markdownlint-enable MD033 MD041 -->
|
|
35
44
|
|
|
36
|
-
![
|
|
45
|
+
[![Getting Started][getting_started]][getting-started-url]
|
|
46
|
+
[![Download Dotfiles v0.2.465][download_button]][download-url]
|
|
37
47
|
|
|
38
|
-
|
|
48
|
+
<!-- markdownlint-disable MD033 MD041 -->
|
|
49
|
+
</center>
|
|
50
|
+
<br>
|
|
51
|
+
<!-- markdownlint-enable MD033 MD041 -->
|
|
39
52
|
|
|
40
|
-
|
|
53
|
+
## Features ✨
|
|
41
54
|
|
|
42
|
-
-
|
|
43
|
-
-
|
|
55
|
+
- A familiar feel and comforts across environments.
|
|
56
|
+
- A unified set of aliases and useful commands for macOS, Linux, and
|
|
57
|
+
Windows.
|
|
58
|
+
- Coloured multiplexer tmux prompt, customizable, and easy to use.
|
|
59
|
+
- Fast and flexible configuration files for Bash, Zsh, and more.
|
|
60
|
+
- Fully documented and translated into several languages (English,
|
|
61
|
+
French, and more).
|
|
62
|
+
- Supports Apple Silicon (M1) and Intel chips (x86_64).
|
|
63
|
+
- Uses Roboto Mono for Powerline font for enhanced terminal experience.
|
|
44
64
|
|
|
45
65
|
![divider][divider]
|
|
46
66
|
|
|
47
|
-
##
|
|
67
|
+
## Getting Started 🚀
|
|
48
68
|
|
|
49
|
-
We are so delighted that you have decided to try Dotfiles, and are sure
|
|
50
|
-
will find Dotfiles unique and helpful.
|
|
69
|
+
We are so delighted that you have decided to try Dotfiles, and are sure
|
|
70
|
+
that you will find Dotfiles unique and helpful.
|
|
51
71
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
across numerous computers and operating systems (macOS, Windows, Linux).
|
|
72
|
+
To get started, please follow the instructions below. If you have any
|
|
73
|
+
questions, please feel free to contact us.
|
|
55
74
|
|
|
56
|
-
###
|
|
75
|
+
### Installation
|
|
57
76
|
|
|
58
|
-
We understand that you may want to install Dotfiles without reading long
|
|
59
|
-
and lengthy documentation. In that respect, we have tried to
|
|
60
|
-
installation process as easy as possible.
|
|
77
|
+
We understand that you may want to install Dotfiles without reading long
|
|
78
|
+
manuals and lengthy documentation. In that respect, we have tried to
|
|
79
|
+
make the installation process as easy and automated as possible.
|
|
61
80
|
|
|
62
|
-
A range of installation methods are available, and we recommend that you
|
|
63
|
-
the one that best suits your needs.
|
|
81
|
+
A range of installation methods are available, and we recommend that you
|
|
82
|
+
choose the one that best suits your needs.
|
|
64
83
|
|
|
65
|
-
Before you begin your installation, use this information to ensure that
|
|
66
|
-
all the hardware, software, and system requirements for
|
|
84
|
+
Before you begin your installation, use this information to ensure that
|
|
85
|
+
you meet all the hardware, software, and system requirements for
|
|
86
|
+
installing Dotfiles.
|
|
67
87
|
|
|
68
|
-
####
|
|
88
|
+
#### 1) System Requirements
|
|
69
89
|
|
|
70
|
-
You need a modern operating system to install Dotfiles. Here's an non-
|
|
71
|
-
list of the recommended operating systems that we support.
|
|
90
|
+
You need a modern operating system to install Dotfiles. Here's an non-
|
|
91
|
+
exhaustive list of the recommended operating systems that we support.
|
|
72
92
|
|
|
73
|
-
If you don't see your operating system listed, it may still work, but we
|
|
74
|
-
yet been able to test it. If you have any issues, please let us
|
|
93
|
+
If you don't see your operating system listed, it may still work, but we
|
|
94
|
+
have yet been able to test it. If you have any issues, please let us
|
|
95
|
+
know.
|
|
75
96
|
|
|
76
97
|
- macOS 10.15 or later
|
|
77
98
|
- Windows 10 or later
|
|
78
|
-
- A Debian based distribution ([Debian][debian-url],
|
|
79
|
-
[PoP!_OS][pop-url], [Zorin OS][zorin-url],
|
|
80
|
-
[
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
- [**Bash**][bash-url] - a shell, or command language interpreter, for
|
|
89
|
-
operating system.
|
|
90
|
-
- Or [**Zsh**][zsh-url] - a shell designed for interactive use, although
|
|
91
|
-
also a powerful scripting language.
|
|
92
|
-
- [**Git**][git-url] - a free and open source distributed version
|
|
93
|
-
designed to handle everything from small to very large
|
|
94
|
-
efficiency.
|
|
95
|
-
- [**Curl**][curl-url] - a command line tool for transferring data with
|
|
96
|
-
syntax.
|
|
97
|
-
- [**Wget**][wget-url] - a free software package for retrieving files
|
|
98
|
-
HTTP, HTTPS and FTP, the most widely-used Internet protocols.
|
|
99
|
-
- [**Make**][make-url] - a tool which controls the generation of
|
|
100
|
-
other non-source files of a program from the
|
|
99
|
+
- A Debian based distribution ([Debian][debian-url],
|
|
100
|
+
[Ubuntu][ubuntu-url], [PoP!_OS][pop-url], [Zorin OS][zorin-url],
|
|
101
|
+
[Q4OS][q4-url], [Kali Linux][kali-url], [Devuan][devuan-url],
|
|
102
|
+
[Deepin][deepin-url], etc.)
|
|
103
|
+
|
|
104
|
+
#### 2) Software Requirements
|
|
105
|
+
|
|
106
|
+
The following programs must be installed on your system to install
|
|
107
|
+
Dotfiles:
|
|
108
|
+
|
|
109
|
+
- [**Bash**][bash-url] - a shell, or command language interpreter, for
|
|
110
|
+
the GNU operating system.
|
|
111
|
+
- Or [**Zsh**][zsh-url] - a shell designed for interactive use, although
|
|
112
|
+
it is also a powerful scripting language.
|
|
113
|
+
- [**Git**][git-url] - a free and open source distributed version
|
|
114
|
+
control system designed to handle everything from small to very large
|
|
115
|
+
projects with speed and efficiency.
|
|
116
|
+
- [**Curl**][curl-url] - a command line tool for transferring data with
|
|
117
|
+
URL syntax.
|
|
118
|
+
- [**Wget**][wget-url] - a free software package for retrieving files
|
|
119
|
+
using HTTP, HTTPS and FTP, the most widely-used Internet protocols.
|
|
120
|
+
- [**Make**][make-url] - a tool which controls the generation of
|
|
121
|
+
executables and other non-source files of a program from the
|
|
122
|
+
program's source files.
|
|
101
123
|
- [**Shell**][shell-url] - a shell command line interpreter program for
|
|
102
124
|
Unix-like operating systems.
|
|
103
|
-
- [**PnPM**][pnpm-url] - a package manager for JavaScript and Node.js.
|
|
104
|
-
fast, disk space efficient and reliable.
|
|
125
|
+
- [**PnPM**][pnpm-url] - a package manager for JavaScript and Node.js.
|
|
126
|
+
It is fast, disk space efficient and reliable.
|
|
105
127
|
|
|
106
|
-
#### Font
|
|
128
|
+
#### 3) Font Requirements
|
|
107
129
|
|
|
108
|
-
We recommend using a font such as `Roboto Mono for Powerline` for
|
|
109
|
-
vscode editor.
|
|
130
|
+
We recommend using a font such as `Roboto Mono for Powerline` for
|
|
131
|
+
terminal and vscode editor.
|
|
110
132
|
|
|
111
133
|
On macOS, you can install the font using the following command:
|
|
112
134
|
|
|
@@ -124,17 +146,28 @@ On Linux, you can install the font using the following command:
|
|
|
124
146
|
sudo apt install fonts-roboto-mono-for-powerline
|
|
125
147
|
```
|
|
126
148
|
|
|
149
|
+
### Documentation
|
|
150
|
+
|
|
151
|
+
To read the documentation for Dotfiles, please visit:
|
|
152
|
+
|
|
153
|
+
- [Dotfiles website][website-url]
|
|
154
|
+
- [Dotfiles Docs GitHub repository][docs-url]
|
|
155
|
+
|
|
156
|
+
![divider][divider]
|
|
157
|
+
|
|
158
|
+
## Usage 📖
|
|
159
|
+
|
|
127
160
|
### 1️⃣ Download Dotfiles
|
|
128
161
|
|
|
129
|
-
You can download the latest version (v0.2.
|
|
162
|
+
You can download the latest version (v0.2.465) with the following options:
|
|
130
163
|
|
|
131
164
|
- [**Manual download**][releases-url] - **The easiest way to install Dotfiles.**
|
|
132
165
|
- [**Install with PnPM**][package-url]
|
|
133
|
-
`pnpm i @
|
|
166
|
+
`pnpm i @wwdseb/dotfiles`.
|
|
134
167
|
- [**Install with Npm**][package-url]
|
|
135
|
-
`npm install @
|
|
168
|
+
`npm install @wwdseb/dotfiles`.
|
|
136
169
|
- [**Install with Yarn**][package-url]
|
|
137
|
-
`yarn add @
|
|
170
|
+
`yarn add @wwdseb/dotfiles`.
|
|
138
171
|
- **Clone the main repository** to get all source files including build scripts:
|
|
139
172
|
`git clone https://github.com/sebastienrousseau/dotfiles.git`. This will clone
|
|
140
173
|
the latest version of the Dotfiles repository.
|
|
@@ -208,7 +241,7 @@ make help
|
|
|
208
241
|
|
|
209
242
|
If you want to install Dotfiles using Node.js, you can run the following
|
|
210
243
|
command in the `dist` directory located in your
|
|
211
|
-
`node_modules/@
|
|
244
|
+
`node_modules/@wwdseb/dotfiles/dist` directory:
|
|
212
245
|
|
|
213
246
|
```bash
|
|
214
247
|
node .
|
|
@@ -246,209 +279,13 @@ Please refer to the [documentation][docs-url] for more information.
|
|
|
246
279
|
|
|
247
280
|
![divider][divider]
|
|
248
281
|
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
Dotfiles contains core elements that are used to configure your shell, and
|
|
252
|
-
other components catered for your environment setup.
|
|
253
|
-
|
|
254
|
-
Within the download you'll find all the Dotfiles source files grouped within
|
|
255
|
-
the `dist` folder.
|
|
256
|
-
|
|
257
|
-
You'll see something like this:
|
|
258
|
-
|
|
259
|
-
```bash
|
|
260
|
-
.
|
|
261
|
-
├── bin
|
|
262
|
-
│ ├── backup.d.ts
|
|
263
|
-
│ ├── backup.d.ts.map
|
|
264
|
-
│ ├── backup.js
|
|
265
|
-
│ ├── backup.js.map
|
|
266
|
-
│ ├── constants.d.ts
|
|
267
|
-
│ ├── constants.d.ts.map
|
|
268
|
-
│ ├── constants.js
|
|
269
|
-
│ ├── constants.js.map
|
|
270
|
-
│ ├── copy.d.ts
|
|
271
|
-
│ ├── copy.d.ts.map
|
|
272
|
-
│ ├── copy.js
|
|
273
|
-
│ ├── copy.js.map
|
|
274
|
-
│ ├── dotfiles.d.ts
|
|
275
|
-
│ ├── dotfiles.d.ts.map
|
|
276
|
-
│ ├── dotfiles.js
|
|
277
|
-
│ ├── dotfiles.js.map
|
|
278
|
-
│ ├── download.d.ts
|
|
279
|
-
│ ├── download.d.ts.map
|
|
280
|
-
│ ├── download.js
|
|
281
|
-
│ ├── download.js.map
|
|
282
|
-
│ ├── index.d.ts
|
|
283
|
-
│ ├── index.d.ts.map
|
|
284
|
-
│ ├── index.js
|
|
285
|
-
│ ├── index.js.map
|
|
286
|
-
│ ├── transfer.d.ts
|
|
287
|
-
│ ├── transfer.d.ts.map
|
|
288
|
-
│ ├── transfer.js
|
|
289
|
-
│ ├── transfer.js.map
|
|
290
|
-
│ ├── unpack.d.ts
|
|
291
|
-
│ ├── unpack.d.ts.map
|
|
292
|
-
│ ├── unpack.js
|
|
293
|
-
│ └── unpack.js.map
|
|
294
|
-
├── lib
|
|
295
|
-
│ ├── aliases
|
|
296
|
-
│ │ ├── default
|
|
297
|
-
│ │ │ └── default.aliases.sh
|
|
298
|
-
│ │ ├── gcloud
|
|
299
|
-
│ │ │ └── gcloud.aliases.sh
|
|
300
|
-
│ │ ├── git
|
|
301
|
-
│ │ │ └── git.aliases.sh
|
|
302
|
-
│ │ ├── heroku
|
|
303
|
-
│ │ │ └── heroku.aliases.sh
|
|
304
|
-
│ │ ├── jekyll
|
|
305
|
-
│ │ │ └── jekyll.aliases.sh
|
|
306
|
-
│ │ ├── pnpm
|
|
307
|
-
│ │ │ └── pnpm.aliases.sh
|
|
308
|
-
│ │ ├── subversion
|
|
309
|
-
│ │ │ └── subversion.aliases.sh
|
|
310
|
-
│ │ └── tmux
|
|
311
|
-
│ │ └── tmux.aliases.sh
|
|
312
|
-
│ ├── configurations
|
|
313
|
-
│ │ ├── bash
|
|
314
|
-
│ │ │ └── bashrc
|
|
315
|
-
│ │ ├── curl
|
|
316
|
-
│ │ │ ├── cacert.pem
|
|
317
|
-
│ │ │ └── curlrc
|
|
318
|
-
│ │ ├── default
|
|
319
|
-
│ │ │ ├── color.sh
|
|
320
|
-
│ │ │ ├── constants.sh
|
|
321
|
-
│ │ │ ├── editor.sh
|
|
322
|
-
│ │ │ └── prompt.sh
|
|
323
|
-
│ │ ├── gem
|
|
324
|
-
│ │ │ └── gemrc
|
|
325
|
-
│ │ ├── input
|
|
326
|
-
│ │ │ └── inputrc
|
|
327
|
-
│ │ ├── jshint
|
|
328
|
-
│ │ │ └── jshintrc
|
|
329
|
-
│ │ ├── nano
|
|
330
|
-
│ │ │ └── nanorc
|
|
331
|
-
│ │ ├── profile
|
|
332
|
-
│ │ │ └── profile
|
|
333
|
-
│ │ ├── tmux
|
|
334
|
-
│ │ │ ├── default
|
|
335
|
-
│ │ │ ├── display
|
|
336
|
-
│ │ │ ├── linux
|
|
337
|
-
│ │ │ ├── navigation
|
|
338
|
-
│ │ │ ├── panes
|
|
339
|
-
│ │ │ ├── theme
|
|
340
|
-
│ │ │ ├── tmux
|
|
341
|
-
│ │ │ └── vi
|
|
342
|
-
│ │ ├── vim
|
|
343
|
-
│ │ │ └── vimrc
|
|
344
|
-
│ │ ├── wget
|
|
345
|
-
│ │ │ └── wgetrc
|
|
346
|
-
│ │ ├── zsh
|
|
347
|
-
│ │ │ └── zshrc
|
|
348
|
-
│ │ └── README.md
|
|
349
|
-
│ ├── functions
|
|
350
|
-
│ │ ├── README.md
|
|
351
|
-
│ │ ├── cdls.sh
|
|
352
|
-
│ │ ├── changediskpwd.tmp
|
|
353
|
-
│ │ ├── code.tmp
|
|
354
|
-
│ │ ├── countdown.tmp
|
|
355
|
-
│ │ ├── curlheader.sh
|
|
356
|
-
│ │ ├── curltime.sh
|
|
357
|
-
│ │ ├── encode64.sh
|
|
358
|
-
│ │ ├── environment.sh
|
|
359
|
-
│ │ ├── extract.sh
|
|
360
|
-
│ │ ├── filehead.sh
|
|
361
|
-
│ │ ├── genpwd.sh
|
|
362
|
-
│ │ ├── goto.sh
|
|
363
|
-
│ │ ├── headers.tmp
|
|
364
|
-
│ │ ├── hidehiddenfiles.sh
|
|
365
|
-
│ │ ├── history-all.tmp
|
|
366
|
-
│ │ ├── hostinfo.sh
|
|
367
|
-
│ │ ├── hstats.sh
|
|
368
|
-
│ │ ├── httpdebug.sh
|
|
369
|
-
│ │ ├── keygen.sh
|
|
370
|
-
│ │ ├── last.sh
|
|
371
|
-
│ │ ├── logout.sh
|
|
372
|
-
│ │ ├── lowercase.sh
|
|
373
|
-
│ │ ├── macos.sh
|
|
374
|
-
│ │ ├── matrix.sh
|
|
375
|
-
│ │ ├── mcd.sh
|
|
376
|
-
│ │ ├── mount_read_only.sh
|
|
377
|
-
│ │ ├── myproc.sh
|
|
378
|
-
│ │ ├── prependpath.sh
|
|
379
|
-
│ │ ├── print.tmp
|
|
380
|
-
│ │ ├── ql.sh
|
|
381
|
-
│ │ ├── rd.sh
|
|
382
|
-
│ │ ├── remove_disk.sh
|
|
383
|
-
│ │ ├── ren.sh
|
|
384
|
-
│ │ ├── rm.tmp
|
|
385
|
-
│ │ ├── rps.tmp
|
|
386
|
-
│ │ ├── showhiddenfiles.sh
|
|
387
|
-
│ │ ├── size.sh
|
|
388
|
-
│ │ ├── stopwatch.sh
|
|
389
|
-
│ │ ├── trash.tmp
|
|
390
|
-
│ │ ├── tree.tmp
|
|
391
|
-
│ │ ├── uppercase.sh
|
|
392
|
-
│ │ ├── uuidgen.tmp
|
|
393
|
-
│ │ ├── view-source.sh
|
|
394
|
-
│ │ ├── vscode.sh
|
|
395
|
-
│ │ ├── whoisport.sh
|
|
396
|
-
│ │ └── zipf.sh
|
|
397
|
-
│ ├── paths
|
|
398
|
-
│ │ ├── ant
|
|
399
|
-
│ │ │ └── ant.paths.sh
|
|
400
|
-
│ │ ├── default
|
|
401
|
-
│ │ │ └── default.paths.sh
|
|
402
|
-
│ │ ├── homebrew
|
|
403
|
-
│ │ │ └── homebrew.paths.sh
|
|
404
|
-
│ │ ├── java
|
|
405
|
-
│ │ │ └── java.paths.sh
|
|
406
|
-
│ │ ├── maven
|
|
407
|
-
│ │ │ └── maven.paths.sh
|
|
408
|
-
│ │ ├── node
|
|
409
|
-
│ │ │ └── node.paths.sh
|
|
410
|
-
│ │ ├── nvm
|
|
411
|
-
│ │ │ └── nvm.paths.sh
|
|
412
|
-
│ │ ├── pnpm
|
|
413
|
-
│ │ │ └── pnpm.paths.sh
|
|
414
|
-
│ │ ├── python
|
|
415
|
-
│ │ │ └── python.paths.sh
|
|
416
|
-
│ │ ├── ruby
|
|
417
|
-
│ │ │ └── ruby.paths.sh
|
|
418
|
-
│ │ └── tmux
|
|
419
|
-
│ │ └── tmux.paths.sh
|
|
420
|
-
│ ├── README.md
|
|
421
|
-
│ ├── aliases.sh
|
|
422
|
-
│ ├── configurations.sh
|
|
423
|
-
│ ├── exit.sh
|
|
424
|
-
│ ├── functions.sh
|
|
425
|
-
│ ├── history.sh
|
|
426
|
-
│ └── paths.sh
|
|
427
|
-
├── scripts
|
|
428
|
-
│ ├── backup.sh
|
|
429
|
-
│ ├── banner.sh
|
|
430
|
-
│ ├── build.sh
|
|
431
|
-
│ ├── clean.sh
|
|
432
|
-
│ ├── compile.sh
|
|
433
|
-
│ ├── copy.sh
|
|
434
|
-
│ ├── dotfiles.sh
|
|
435
|
-
│ ├── download.sh
|
|
436
|
-
│ ├── help.sh
|
|
437
|
-
│ └── unpack.sh
|
|
438
|
-
├── Makefile
|
|
439
|
-
└── filesizes.txt
|
|
440
|
-
|
|
441
|
-
38 directories, 141 files
|
|
442
|
-
|
|
443
|
-
```
|
|
444
|
-
|
|
445
|
-
## 🔗 Releases
|
|
282
|
+
## Releases 🔗
|
|
446
283
|
|
|
447
284
|
Releases are available on the [GitHub releases page][releases-url].
|
|
448
285
|
|
|
449
286
|
![divider][divider]
|
|
450
287
|
|
|
451
|
-
##
|
|
288
|
+
## Semantic versioning policy 🚥
|
|
452
289
|
|
|
453
290
|
For transparency into our release cycle and in striving to maintain backward
|
|
454
291
|
compatibility, `Dotfiles` follows [Semantic Versioning][semver-url].
|
|
@@ -480,7 +317,7 @@ Please read our [Code of Conduct][code-of-conduct-url].
|
|
|
480
317
|
|
|
481
318
|
![divider][divider]
|
|
482
319
|
|
|
483
|
-
##
|
|
320
|
+
## Contribution 🤝
|
|
484
321
|
|
|
485
322
|
Thank you for using Dotfiles! If you like the library, it would be
|
|
486
323
|
great if you can give it a star ⭐ on [Github][github-url].
|
|
@@ -500,7 +337,7 @@ for further details on the process for submitting pull requests to us.
|
|
|
500
337
|
|
|
501
338
|
![divider][divider]
|
|
502
339
|
|
|
503
|
-
##
|
|
340
|
+
## License 📝
|
|
504
341
|
|
|
505
342
|
This project is licensed under the [MIT License][license-url] file for details.
|
|
506
343
|
|
|
@@ -508,7 +345,7 @@ This project is licensed under the [MIT License][license-url] file for details.
|
|
|
508
345
|
|
|
509
346
|
![divider][divider]
|
|
510
347
|
|
|
511
|
-
##
|
|
348
|
+
## Acknowledgements 💙
|
|
512
349
|
|
|
513
350
|
[Dotfiles][website-url] is beautifully crafted by these people and a bunch of
|
|
514
351
|
awesome [contributors][contributors-url]
|
|
@@ -526,7 +363,7 @@ awesome [contributors][contributors-url]
|
|
|
526
363
|
[deepin-url]: https://www.deepin.org/en/
|
|
527
364
|
[devuan-url]: https://devuan.org/
|
|
528
365
|
[docs-url]: https://github.com/sebastienrousseau/dotfiles/docs
|
|
529
|
-
[download-url]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.
|
|
366
|
+
[download-url]: https://github.com/sebastienrousseau/dotfiles/archive/refs/tags/v0.2.465.tar.gz
|
|
530
367
|
[forks-url]: https://github.com/sebastienrousseau/dotfiles/network/members
|
|
531
368
|
[fossa-url]: https://app.fossa.io/projects/git%2Bgithub.com%2Freedia%2Fdotfiles?ref=badge_large
|
|
532
369
|
[getting-started-url]: https://github.com/sebastienrousseau/dotfiles#getting-started
|
|
@@ -537,7 +374,7 @@ awesome [contributors][contributors-url]
|
|
|
537
374
|
[kali-url]: https://www.kali.org/
|
|
538
375
|
[license-url]: https://opensource.org/licenses/MIT
|
|
539
376
|
[make-url]: https://www.gnu.org/software/make/
|
|
540
|
-
[package-url]:https://www.npmjs.com/package/@
|
|
377
|
+
[package-url]:https://www.npmjs.com/package/@wwdseb/dotfiles
|
|
541
378
|
[pnpm-url]: https://pnpm.io
|
|
542
379
|
[pop-url]: https://pop.system76.com/
|
|
543
380
|
[q4-url]: https://q4os.org/
|
|
@@ -551,6 +388,7 @@ awesome [contributors][contributors-url]
|
|
|
551
388
|
[zorin-url]: https://zorinos.com/
|
|
552
389
|
[zsh-url]: https://www.zsh.org/
|
|
553
390
|
|
|
391
|
+
[banner]: https://kura.pro/dotfiles/v2/images/titles/title-dotfiles.svg
|
|
554
392
|
[codacy-grade]: https://img.shields.io/codacy/grade/634cfc4de08e492ebcbb341631066241?style=for-the-badge "Codacy grade"
|
|
555
393
|
[contributors-shield]: https://img.shields.io/github/contributors/sebastienrousseau/dotfiles.svg?style=for-the-badge "Contributors"
|
|
556
394
|
[contributors-url]: https://github.com/sebastienrousseau/dotfiles/graphs/contributors "List of contributors"
|
|
@@ -561,6 +399,5 @@ awesome [contributors][contributors-url]
|
|
|
561
399
|
[getting_started]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/button-primary.svg "Getting Started"
|
|
562
400
|
[gr]: https://avatars0.githubusercontent.com/u/35816108?s=117 "Graham Colgate"
|
|
563
401
|
[license]: https://img.shields.io/badge/License-MIT-green.svg?style=for-the-badge\&color=ff69b4 "License"
|
|
564
|
-
[logo]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/dotfiles.svg "Dotfiles"
|
|
565
402
|
[love]: https://github.com/sebastienrousseau/dotfiles/raw/master/assets/made-with-love.svg "Made with Love"
|
|
566
403
|
[sr]: https://avatars0.githubusercontent.com/u/1394998?s=117 "Sebastien Rousseau"
|
package/dist/Makefile
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env make -f
|
|
2
2
|
|
|
3
|
-
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.
|
|
4
|
-
# Made with ♥ in London, UK by @
|
|
3
|
+
# 🅳🅾🆃🅵🅸🅻🅴🆂 (v0.2.465) - <https://dotfiles.io>
|
|
4
|
+
# Made with ♥ in London, UK by @wwdseb
|
|
5
5
|
# Copyright (c) 2015-2023. All rights reserved
|
|
6
6
|
# License: MIT
|
|
7
7
|
|
package/dist/bin/constants.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export const aliases: string[];
|
|
2
2
|
export const config: string[];
|
|
3
3
|
export const copies: string[];
|
|
4
|
-
export const dotfile: "https://registry.npmjs.org/@
|
|
4
|
+
export const dotfile: "https://registry.npmjs.org/@wwdseb/dotfiles/-/dotfiles-0.2.465.tgz";
|
|
5
5
|
export const tmux: "$DOTFILES/configurations/tmux/";
|
|
6
|
-
export const version: "dotfiles-0.2.
|
|
6
|
+
export const version: "dotfiles-0.2.465.tgz";
|
|
7
7
|
//# sourceMappingURL=constants.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../bin/constants.js"],"names":[],"mappings":"AAWA,+BAaE;AAiBF,8BAQE;AAvBF,8BAaE;AA9BF,
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../bin/constants.js"],"names":[],"mappings":"AAWA,+BAaE;AAiBF,8BAQE;AAvBF,8BAaE;AA9BF,2FAAqF;AA0CrF,oDAA8C;AA3C9C,6CAAuC"}
|
package/dist/bin/constants.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
|
|
2
|
-
const version="dotfiles-0.2.
|
|
2
|
+
const version="dotfiles-0.2.465.tgz";const dotfile="https://registry.npmjs.org/@wwdseb/dotfiles/-/dotfiles-0.2.465.tgz";const aliases=[".bashrc","cacert.pem",".curlrc",".gemrc",".inputrc",".jshintrc",".nanorc",".profile",".tmux.conf",".vimrc",".wgetrc",".zshrc"];const copies=["lib/configurations/bash/bashrc","lib/configurations/curl/cacert.pem","lib/configurations/curl/curlrc","lib/configurations/gem/gemrc","lib/configurations/input/inputrc","lib/configurations/jshint/jshintrc","lib/configurations/nano/nanorc","lib/configurations/profile/profile","lib/configurations/tmux/tmux","lib/configurations/vim/vimrc","lib/configurations/wget/wgetrc","lib/configurations/zsh/zshrc",];const config=["lib/configurations/tmux/default","lib/configurations/tmux/display","lib/configurations/tmux/linux","lib/configurations/tmux/navigation","lib/configurations/tmux/panes","lib/configurations/tmux/theme","lib/configurations/tmux/vi"];const tmux="$DOTFILES/configurations/tmux/";module.exports={aliases,config,copies,dotfile,tmux,version};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../bin/constants.js"],"names":[],"mappings":";AAQA,IAAM,OAAO,GAAG,sBAAsB,CAAC;AACvC,IAAM,OAAO,GAAG
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../../bin/constants.js"],"names":[],"mappings":";AAQA,IAAM,OAAO,GAAG,sBAAsB,CAAC;AACvC,IAAM,OAAO,GAAG,oEAAoE,CAAC;AAErF,IAAM,OAAO,GAAG;IACd,SAAS;IACT,YAAY;IACZ,SAAS;IACT,QAAQ;IACR,UAAU;IACV,WAAW;IACX,SAAS;IACT,UAAU;IACV,YAAY;IACZ,QAAQ;IACR,SAAS;IACT,QAAQ;CACT,CAAC;AAEF,IAAM,MAAM,GAAG;IACb,gCAAgC;IAChC,oCAAoC;IACpC,gCAAgC;IAChC,8BAA8B;IAC9B,kCAAkC;IAClC,oCAAoC;IACpC,gCAAgC;IAChC,oCAAoC;IACpC,8BAA8B;IAC9B,8BAA8B;IAC9B,gCAAgC;IAChC,8BAA8B;CAC/B,CAAC;AAEF,IAAM,MAAM,GAAG;IACb,iCAAiC;IACjC,iCAAiC;IACjC,+BAA+B;IAC/B,oCAAoC;IACpC,+BAA+B;IAC/B,+BAA+B;IAC/B,4BAA4B;CAC7B,CAAC;AAEF,IAAM,IAAI,GAAG,gCAAgC,CAAC;AAE9C,MAAM,CAAC,OAAO,GAAG,EAAE,OAAO,SAAA,EAAE,MAAM,QAAA,EAAE,MAAM,QAAA,EAAE,OAAO,SAAA,EAAE,IAAI,MAAA,EAAE,OAAO,SAAA,EAAE,CAAC"}
|