joapuiib / usr

My Linux setup and custom scripts

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

usr

This is my Linux setup, configuration and custom scripts. I'm currently using Linux Mint 19 "Tara"

This repository has the following folders:

  • /usr/bashrc: Contains all bash customizations and configurations.
  • /usr/bin: Bash scripts
  • /usr/etc: Configuration files for the system or programs.

/usr/bashrc

Contains all bash customizations and configurations, instead of writting them in ~/.bashrc In order to be effective, the main file has to be sourced first.

This can be done executing the /usr/bashrc/install.sh script.

In ~/.bashrc

# Source custom .bashrc
if [ -f $HOME/usr/bashrc/bashrc ]; then
    source $HOME/usr/bashrc/bashrc
fi

~/usr/bin

My bash scripts

~/usr/etc

Custom configuration


Feel free to use them. (DISCLAIMER: Use at your own risk)

Any fix or suggestion is welcome. 😄

About

My Linux setup and custom scripts

License:GNU General Public License v3.0


Languages

Language:Shell 85.5%Language:Vim Script 11.7%Language:Python 2.8%Language:Vim Snippet 0.1%