You've already forked personal-linux-config
							
							Compare commits
	
		
			18 Commits
		
	
	
		
			0.1.2
			...
			799af1f6a1
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 799af1f6a1 | |||
| c51a067dda | |||
| 8a8f304c1c | |||
| ead9cb0d71 | |||
| 6dd1d386d1 | |||
| 9c4db7fef6 | |||
| fe4a896ada | |||
| c33ae90b33 | |||
| 09cf9b8bbe | |||
| 2913920987 | |||
| ee267c0c50 | |||
| 6179e8d809 | |||
| e8f69fbbad | |||
| 53752a866e | |||
| a4885fa060 | |||
| 627282b2cc | |||
| a8eaab7e81 | |||
| 6b2dded19a | 
							
								
								
									
										12
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										12
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,4 +1,10 @@ | ||||
| # personal-kde-config | ||||
| Personal KDE and other Linux-related configs to help me succeed in life (or at least simplify it). | ||||
| # Personal Linux config | ||||
| Personal Linux-related configs to help me succeed in life (or at least simplify it). | ||||
|  | ||||
| Feel free to try this out, or even add "cool stuff" to help each other out! | ||||
| Feel free to try or poke around in the source (it's all human-readable bash), or heck even add "cool stuff" to help each other out! | ||||
|  | ||||
| ## Usage | ||||
| Explaining section for not-so-intuitive configurations | ||||
|  | ||||
| - alias `sambaserver`: please `cd` into the directoy is needed to be shared and execute `sambaserver` followed by `"shareuser;<SUBSTITUTE-YOUR-PASSWORD-HERE>"`, then just login with username `shareuser` and the provided password with the host computer as URL/IP, autodiscovery of both the host and the share was tested working on Windows and a Samsung Tablet. | ||||
| - alias `termbin`: use when piping a cat/echo/file/etc to upload to termbin.com (¡requires Netcat!) | ||||
|   | ||||
| @@ -7,7 +7,5 @@ for source in colored_commands \ | ||||
|               safety_aliases \ | ||||
|               terminal_colors \ | ||||
|               terminal_fancyfying; do | ||||
|   if [ -f ~/.bashrc_overrides/$source ]; then | ||||
|     . ~/.bashrc_overrides/$source | ||||
|   fi | ||||
|   . "$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )/$source" | ||||
| done | ||||
|   | ||||
| @@ -1,4 +1,10 @@ | ||||
| alias pubkey='cat ~/.ssh/id_rsa.pub' | ||||
| alias hosts='sudo nano /etc/hosts' | ||||
| alias historygrep='history | grep' | ||||
| alias sshconfig='nano ~/.ssh/config' | ||||
| alias newrepo='bash <(curl -s https://get.bjphoster.com/new-git-repo.sh)' | ||||
| alias newansibleworkspace='bash <(curl -s https://get.bjphoster.com/new-ansible-workspace.sh)' | ||||
|  | ||||
| alias sambaserver='docker run -it --rm --network host -p 137:137 -p 138:138 -p 139:139 -p 445:445 -v `pwd`:/share dperson/samba -n -p -s "sambashare;/share;yes;no;no;shareuser" -w "WORKGROUP"' | ||||
| alias termbin='nc termbin.com 9999' | ||||
| alias dnsversion='dig txt chaos version.bind @' | ||||
|   | ||||
| @@ -13,4 +13,4 @@ if [ $GIT_FUNCTIONS ]; then | ||||
| fi | ||||
|  | ||||
| #PS1="$PS1${RED}#${FORMAT_RESET}" | ||||
| PS1="$PS1${RED}${FORMAT_BLINK}\$${FORMAT_RESET}" | ||||
| PS1="$PS1${RED}\$${FORMAT_RESET}" | ||||
|   | ||||
							
								
								
									
										60
									
								
								deploy.sh
									
									
									
									
									
								
							
							
						
						
									
										60
									
								
								deploy.sh
									
									
									
									
									
								
							| @@ -2,17 +2,17 @@ | ||||
|  | ||||
| THIS="$(dirname "$(readlink -fm "$0")")" | ||||
| SERVER=false | ||||
| FORCE=false | ||||
| CLEANUP=false | ||||
| DELETE=false | ||||
| MOVE=false | ||||
|  | ||||
| _arguments() { | ||||
|   for PARM in "$@"; do | ||||
|     if [ "${PARM}" = "--server" ]; then | ||||
|       SERVER=true | ||||
|     elif [ "${PARM}" = "--force" ]; then | ||||
|       FORCE=true | ||||
|     elif [ "${PARM}" = "--cleanup" ]; then | ||||
|       CLEANUP=true | ||||
|     elif [ "${PARM}" = "--delete" ]; then | ||||
|       DELETE=true | ||||
|     elif [ "${PARM}" = "--move" ]; then | ||||
|       MOVE=true | ||||
|     elif [ "${PARM}" = "-h" ] || [ "${PARM}" = "--help" ]; then | ||||
|       _help | ||||
|       exit 0 | ||||
| @@ -24,44 +24,54 @@ _help() { | ||||
|   echo "Usage: $(readlink -fm "$0") [-h | --help] [--cleanup]" | ||||
|   echo | ||||
|   echo "Options:" | ||||
|   echo "  -h | --help : Prints this help message and quits" | ||||
|   echo "  --server: Customizes the terminal feel for a server installation" | ||||
|   echo "  --cleanup: Removes the source folder after installation" | ||||
|   echo "  -h | --help" | ||||
|   echo "    Prints this help message and quits" | ||||
|   echo "  --force" | ||||
|   echo "    Force the reinstallation of the files" | ||||
|   echo "  --delete" | ||||
|   echo "    Delete the reference in ~/.bashrc" | ||||
|   echo "  --move" | ||||
|   echo "    Create a new reference if the location of this folder has been changed" | ||||
|   echo "  --server" | ||||
|   echo "    Customizes the terminal feel for a server installation" | ||||
|   echo | ||||
| } | ||||
|  | ||||
| _bash_overrides() { | ||||
|   cp -r bashrc_overrides ~/.bashrc_overrides | ||||
|   echo "#REF:bashrc_overrides:REF" >> ~/.bashrc | ||||
|   echo "if [ -f ~/.bashrc_overrides/_all ]; then" >> ~/.bashrc | ||||
|   echo "  . ~/.bashrc_overrides/_all" >> ~/.bashrc | ||||
|   echo "fi" >> ~/.bashrc | ||||
| _delete() { | ||||
|   sed -i '/REF:bashrc_overrides:REF/{N;d}' ~/.bashrc | ||||
| } | ||||
|  | ||||
| _cleanup() { | ||||
|   rm -rf ${THIS} | ||||
| _bashrc_ref() { | ||||
|   echo "#REF:bashrc_overrides:REF" >> ~/.bashrc | ||||
|   echo ". ${THIS}/bashrc_overrides/_all" >> ~/.bashrc | ||||
| } | ||||
|  | ||||
| _move() { | ||||
|   _delete | ||||
|   _bashrc_ref | ||||
| } | ||||
|  | ||||
| _main() { | ||||
|   _arguments "$@" | ||||
|  | ||||
|   if [ ! -z "$(grep "#REF:bashrc_overrides:REF" ~/.bashrc)" ] && [ "${FORCE}" = false ]; then | ||||
|   if [ "${DELETE}" = true ]; then | ||||
|     _delete | ||||
|   elif [ "${MOVE}" = true ]; then | ||||
|     _move | ||||
|   elif [ ! -z "$(grep "#REF:bashrc_overrides:REF" ~/.bashrc)" ]; then | ||||
|     echo "bash overrides already in place" | ||||
|     echo "skipping..." | ||||
|     echo | ||||
|   else | ||||
|     _bash_overrides | ||||
|     _bashrc_ref | ||||
|     echo "bash overrides added" | ||||
|     echo | ||||
|   fi | ||||
|  | ||||
|   if [ "${SERVER}" = true ]; then | ||||
|     sed -i 's/terminal_fancyfying/terminal_fancyfying_server/' ~/.bashrc_overrides/_all | ||||
|   fi | ||||
|  | ||||
|   if [ "${CLEANUP}" = true ]; then | ||||
|     echo "cleaning up..." | ||||
|     _cleanup | ||||
|     sed -i 's/terminal_fancyfying/terminal_fancyfying_server/' ${THIS}/bashrc_overrides/_all | ||||
|   else | ||||
|     sed -i 's/terminal_fancyfying_server/terminal_fancyfying/' ${THIS}/bashrc_overrides/_all | ||||
|   fi | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user