An open API service indexing awesome lists of open source software.

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

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]