https://github.com/jarrydk/dotfiles
dotfiles I found handy
https://github.com/jarrydk/dotfiles
bash dot-files dotfiles linux
Last synced: 6 months ago
JSON representation
dotfiles I found handy
- Host: GitHub
- URL: https://github.com/jarrydk/dotfiles
- Owner: jarryDk
- License: apache-2.0
- Created: 2017-04-26T05:51:24.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-21T06:46:35.000Z (7 months ago)
- Last Synced: 2025-03-29T07:51:32.229Z (6 months ago)
- Topics: bash, dot-files, dotfiles, linux
- Language: Shell
- Homepage:
- Size: 135 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= dotfiles
dotfiles I found handy.
== requirement
[source,bash]
----
sudo dnf install python3-pygments
----== Structure
- `bin/` contains binaries and will be add via `logical links` to the `/usr/local/bin/` folder
== To install
[source,bash]
----
make
----== To customize
Save env vars, etc in a `.extra` file, that looks something like
this:[source,bash]
----
###
### Git credentials
###GIT_AUTHOR_NAME="Your Name"
GIT_COMMITTER_NAME="$GIT_AUTHOR_NAME"
git config --global user.name "$GIT_AUTHOR_NAME"
GIT_AUTHOR_EMAIL="email@you.com"
GIT_COMMITTER_EMAIL="$GIT_AUTHOR_EMAIL"
git config --global user.email "$GIT_AUTHOR_EMAIL"
GH_USER="nickname"
git config --global github.user "$GH_USER"###
### Gmail credentials for mutt
###
export GMAIL=email@you.com
export GMAIL_NAME="Your Name"
export GMAIL_FROM=from-email@you.com
----=== Change Jdk
To allow to run `sudo alternatives` with being promt for password - update /etc/sudos via
[source,bash]
----
sudo visudo
----Add shomething like this to the bottom of the file
----
micbn ALL=NOPASSWD:/usr/sbin/alternatives
----== Links
- https://github.com/jessfraz/dotfiles[Jess Frazelle - dotfiles - github.com]
- https://github.com/thoughtbot/dotfiles[thoughtbot, inc - dotfiles - github.com]
- https://github.com/henrik/dotfiles[Henrik Nyh - dotfiles - github.com]
- https://github.com/sdaschner/dotfiles[Sebastian Daschner - dotfiles - github.com]
- https://github.com/thoughtbot/dotfiles[thoughtbot, inc - dotfiles - github.com]- https://gist.github.com/mohanpedala/1e2ff5661761d3abd0385e8223e16425[set -e, -u, -o, -x pipefail explanation]
- https://www.gnu.org/software/wget/manual/html_node/Exit-Status.html[wget - Exit Status]