Compare commits
	
		
			8 Commits
		
	
	
		
			f23d86476b
			...
			6ea5f9fe8b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					6ea5f9fe8b | ||
| 
						 | 
					98e0b5d6e6 | ||
| 
						 | 
					38ab2bef7e | ||
| 
						 | 
					6149f39421 | ||
| 
						 | 
					9269b7dd58 | ||
| 
						 | 
					d4da19f83a | ||
| 
						 | 
					e47bd62d7f | ||
| 
						 | 
					157a01e5d8 | 
@ -1,6 +0,0 @@
 | 
			
		||||
Files to be added to /etc/profile.d
 | 
			
		||||
 | 
			
		||||
Files here do not need shebang or to be marked executable UNLESS actually running shell commands.
 | 
			
		||||
 | 
			
		||||
These files will be read after /etc/profile by most shells.  However, they are not read on logins such as 'su' or 'sudo -u'.
 | 
			
		||||
Variables set here are GLOBAL.
 | 
			
		||||
@ -1,7 +0,0 @@
 | 
			
		||||
Files to be added/changed in /etc/skel
 | 
			
		||||
 | 
			
		||||
This folder contains the base 'template' files from which .bashrc, .profile, etc. are generated for new users.
 | 
			
		||||
Changes made to these templates will be applied to all NEW users.
 | 
			
		||||
These files can also be manually copied to existing users' home directories to apply changes.
 | 
			
		||||
 | 
			
		||||
*** ROOT user is NOT based off these templates
 | 
			
		||||
@ -1,3 +0,0 @@
 | 
			
		||||
Configuration files and/or changes to default configs for bash.
 | 
			
		||||
 | 
			
		||||
This includes changes to the prompt and/or command aliases, etc.
 | 
			
		||||
							
								
								
									
										76
									
								
								config/etc/bash.bashrc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								config/etc/bash.bashrc
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,76 @@
 | 
			
		||||
# System-wide .bashrc file for interactive bash(1) shells.
 | 
			
		||||
 | 
			
		||||
# To enable the settings / commands in this file for login shells as well,
 | 
			
		||||
# this file has to be sourced in /etc/profile.
 | 
			
		||||
 | 
			
		||||
# If not running interactively, don't do anything
 | 
			
		||||
[ -z "$PS1" ] && return
 | 
			
		||||
 | 
			
		||||
# check the window size after each command and, if necessary,
 | 
			
		||||
# update the values of LINES and COLUMNS.
 | 
			
		||||
shopt -s checkwinsize
 | 
			
		||||
 | 
			
		||||
# set variable identifying the chroot you work in (used in the prompt below)
 | 
			
		||||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
 | 
			
		||||
    debian_chroot=$(cat /etc/debian_chroot)
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# set a fancy prompt (non-color, overwrite the one in /etc/profile)
 | 
			
		||||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
 | 
			
		||||
 | 
			
		||||
# Commented out, don't overwrite xterm -T "title" -n "icontitle" by default.
 | 
			
		||||
# If this is an xterm set the title to user@host:dir
 | 
			
		||||
#case "$TERM" in
 | 
			
		||||
#xterm*|rxvt*)
 | 
			
		||||
#    PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME}: ${PWD}\007"'
 | 
			
		||||
#    ;;
 | 
			
		||||
#*)
 | 
			
		||||
#    ;;
 | 
			
		||||
#esac
 | 
			
		||||
 | 
			
		||||
# enable bash completion in interactive shells
 | 
			
		||||
#if ! shopt -oq posix; then
 | 
			
		||||
#  if [ -f /usr/share/bash-completion/bash_completion ]; then
 | 
			
		||||
#    . /usr/share/bash-completion/bash_completion
 | 
			
		||||
#  elif [ -f /etc/bash_completion ]; then
 | 
			
		||||
#    . /etc/bash_completion
 | 
			
		||||
#  fi
 | 
			
		||||
#fi
 | 
			
		||||
 | 
			
		||||
# if the command-not-found package is installed, use it
 | 
			
		||||
if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-not-found ]; then
 | 
			
		||||
	function command_not_found_handle {
 | 
			
		||||
	        # check because c-n-f could've been removed in the meantime
 | 
			
		||||
                if [ -x /usr/lib/command-not-found ]; then
 | 
			
		||||
		   /usr/lib/command-not-found -- "$1"
 | 
			
		||||
                   return $?
 | 
			
		||||
                elif [ -x /usr/share/command-not-found/command-not-found ]; then
 | 
			
		||||
		   /usr/share/command-not-found/command-not-found -- "$1"
 | 
			
		||||
                   return $?
 | 
			
		||||
		else
 | 
			
		||||
		   printf "%s: command not found\n" "$1" >&2
 | 
			
		||||
		   return 127
 | 
			
		||||
		fi
 | 
			
		||||
	}
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Colorize directory listing and prompt
 | 
			
		||||
export LS_OPTIONS='--color=auto'
 | 
			
		||||
eval "`dircolors`"
 | 
			
		||||
force_color_prompt=yes
 | 
			
		||||
 | 
			
		||||
# Test for root and change prompt username to RED, otherwise username is GREEN
 | 
			
		||||
if [ $(id -u) -eq 0 ];
 | 
			
		||||
then
 | 
			
		||||
    PS1='[$(date +%H:%M)] \[\033[00;31m\]\u\[\033[00m\]@\[\033[00;33m\]\h\[\033[00m\]:\w\$ '
 | 
			
		||||
else
 | 
			
		||||
    PS1='[$(date +%H:%M)] \[\033[00;32m\]\u\[\033[00m\]@\[\033[00;33m\]\h\[\033[00m\]:\w\$ '
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# Command aliases
 | 
			
		||||
alias ll='ls $LS_OPTIONS -l'
 | 
			
		||||
alias l='ls $LS_OPTIONS -lAsh --group-directories-first'
 | 
			
		||||
alias ld='ls $LS_OPTIONS -ldsh'
 | 
			
		||||
alias rm='rm -i'
 | 
			
		||||
alias mv='mv -i'
 | 
			
		||||
alias cp='cp -i'
 | 
			
		||||
							
								
								
									
										267
									
								
								config/etc/nanorc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										267
									
								
								config/etc/nanorc
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,267 @@
 | 
			
		||||
## Sample initialization file for GNU nano.
 | 
			
		||||
##
 | 
			
		||||
## Please note that you must have configured nano with --enable-nanorc
 | 
			
		||||
## for this file to be read!  Also note that this file should not be in
 | 
			
		||||
## DOS or Mac format, and that characters specially interpreted by the
 | 
			
		||||
## shell should not be escaped here.
 | 
			
		||||
##
 | 
			
		||||
## To make sure an option is disabled, use "unset <option>".
 | 
			
		||||
##
 | 
			
		||||
## For the options that take parameters, the default value is given.
 | 
			
		||||
## Other options are unset by default.
 | 
			
		||||
##
 | 
			
		||||
## Quotes inside string parameters don't have to be escaped with
 | 
			
		||||
## backslashes.  The last double quote in the string will be treated as
 | 
			
		||||
## its end.  For example, for the "brackets" option, ""')>]}" will match
 | 
			
		||||
## ", ', ), >, ], and }.
 | 
			
		||||
 | 
			
		||||
## Silently ignore problems with unknown directives in the nanorc file.
 | 
			
		||||
## Useful when your nanorc file might be read on systems with multiple
 | 
			
		||||
## versions of nano installed (e.g. your home directory is on NFS).
 | 
			
		||||
# set quiet
 | 
			
		||||
 | 
			
		||||
## Use auto-indentation.
 | 
			
		||||
set autoindent
 | 
			
		||||
 | 
			
		||||
## Back up files to the current filename plus a tilde.
 | 
			
		||||
# set backup
 | 
			
		||||
 | 
			
		||||
## The directory to put unique backup files in.
 | 
			
		||||
# set backupdir ""
 | 
			
		||||
 | 
			
		||||
## Do backwards searches by default.
 | 
			
		||||
# set backwards
 | 
			
		||||
 | 
			
		||||
## Use bold text instead of reverse video text.
 | 
			
		||||
# set boldtext
 | 
			
		||||
 | 
			
		||||
## The characters treated as closing brackets when justifying
 | 
			
		||||
## paragraphs.  They cannot contain blank characters.  Only closing
 | 
			
		||||
## punctuation, optionally followed by closing brackets, can end
 | 
			
		||||
## sentences.
 | 
			
		||||
set brackets ""')>]}"
 | 
			
		||||
 | 
			
		||||
## Do case-sensitive searches by default.
 | 
			
		||||
# set casesensitive
 | 
			
		||||
 | 
			
		||||
## Constantly display the cursor position in the statusbar.  Note that
 | 
			
		||||
## this overrides "quickblank".
 | 
			
		||||
set constantshow
 | 
			
		||||
## (The old form, 'const', is deprecated.)
 | 
			
		||||
 | 
			
		||||
## Use cut-to-end-of-line by default.
 | 
			
		||||
set cut
 | 
			
		||||
 | 
			
		||||
## Set the line length for wrapping text and justifying paragraphs.
 | 
			
		||||
## If the value is 0 or less, the wrapping point will be the screen
 | 
			
		||||
## width less this number.
 | 
			
		||||
# set fill -8
 | 
			
		||||
 | 
			
		||||
## Remember the used search/replace strings for the next session.
 | 
			
		||||
set historylog
 | 
			
		||||
 | 
			
		||||
## Make the justify command kill whitespace at the end of lines.
 | 
			
		||||
# set justifytrim
 | 
			
		||||
 | 
			
		||||
## Display line numbers to the left of the text.
 | 
			
		||||
set linenumbers
 | 
			
		||||
 | 
			
		||||
## Enable vim-style lock-files.  This is just to let a vim user know you
 | 
			
		||||
## are editing a file [s]he is trying to edit and vice versa. There are
 | 
			
		||||
## no plans to implement vim-style undo state in these files.
 | 
			
		||||
set locking
 | 
			
		||||
 | 
			
		||||
## The opening and closing brackets that can be found by bracket
 | 
			
		||||
## searches.  They cannot contain blank characters.  The former set must
 | 
			
		||||
## come before the latter set, and both must be in the same order.
 | 
			
		||||
set matchbrackets "(<[{)>]}"
 | 
			
		||||
 | 
			
		||||
## Use the blank line below the titlebar as extra editing space.
 | 
			
		||||
# set morespace
 | 
			
		||||
 | 
			
		||||
## Enable mouse support, if available for your system.  When enabled,
 | 
			
		||||
## mouse clicks can be used to place the cursor, set the mark (with a
 | 
			
		||||
## double click), and execute shortcuts.  The mouse will work in the X
 | 
			
		||||
## Window System, and on the console when gpm is running.
 | 
			
		||||
# set mouse
 | 
			
		||||
 | 
			
		||||
## Switch on multiple file buffers (inserting a file will put it into
 | 
			
		||||
## a separate buffer).
 | 
			
		||||
set multibuffer
 | 
			
		||||
 | 
			
		||||
## Don't convert files from DOS/Mac format.
 | 
			
		||||
# set noconvert
 | 
			
		||||
 | 
			
		||||
## Don't display the helpful shortcut lists at the bottom of the screen.
 | 
			
		||||
# set nohelp
 | 
			
		||||
 | 
			
		||||
## Don't add newlines to the ends of files.
 | 
			
		||||
# set nonewlines
 | 
			
		||||
 | 
			
		||||
## Don't wrap text at all.
 | 
			
		||||
set nowrap
 | 
			
		||||
 | 
			
		||||
## Set operating directory.  nano will not read or write files outside
 | 
			
		||||
## this directory and its subdirectories.  Also, the current directory
 | 
			
		||||
## is changed to here, so any files are inserted from this dir.  A blank
 | 
			
		||||
## string means the operating-directory feature is turned off.
 | 
			
		||||
# set operatingdir ""
 | 
			
		||||
 | 
			
		||||
## Remember the cursor position in each file for the next editing session.
 | 
			
		||||
# set positionlog
 | 
			
		||||
## (The old form, 'poslog', is deprecated.)
 | 
			
		||||
 | 
			
		||||
## Preserve the XON and XOFF keys (^Q and ^S).
 | 
			
		||||
# set preserve
 | 
			
		||||
 | 
			
		||||
## The characters treated as closing punctuation when justifying
 | 
			
		||||
## paragraphs.  They cannot contain blank characters.  Only closing
 | 
			
		||||
## punctuation, optionally followed by closing brackets, can end
 | 
			
		||||
## sentences.
 | 
			
		||||
# set punct "!.?"
 | 
			
		||||
 | 
			
		||||
## Do quick statusbar blanking.  Statusbar messages will disappear after
 | 
			
		||||
## 1 keystroke instead of 26.  Note that "const" overrides this.
 | 
			
		||||
# set quickblank
 | 
			
		||||
 | 
			
		||||
## The email-quote string, used to justify email-quoted paragraphs.
 | 
			
		||||
## This is an extended regular expression if your system supports them,
 | 
			
		||||
## otherwise a literal string.
 | 
			
		||||
## If you have extended regular expression support, the default is:
 | 
			
		||||
# set quotestr "^([ 	]*[#:>\|}])+"
 | 
			
		||||
## Otherwise:
 | 
			
		||||
# set quotestr "> "
 | 
			
		||||
 | 
			
		||||
## Fix Backspace/Delete confusion problem.
 | 
			
		||||
# set rebinddelete
 | 
			
		||||
 | 
			
		||||
## Fix numeric keypad key confusion problem.
 | 
			
		||||
set rebindkeypad
 | 
			
		||||
 | 
			
		||||
## Do extended regular expression searches by default.
 | 
			
		||||
# set regexp
 | 
			
		||||
 | 
			
		||||
## Put the cursor on the highlighted item in the file browser;
 | 
			
		||||
## useful for people who use a braille display.
 | 
			
		||||
# set showcursor
 | 
			
		||||
 | 
			
		||||
## Make the Home key smarter.  When Home is pressed anywhere but at the
 | 
			
		||||
## very beginning of non-whitespace characters on a line, the cursor
 | 
			
		||||
## will jump to that beginning (either forwards or backwards).  If the
 | 
			
		||||
## cursor is already at that position, it will jump to the true
 | 
			
		||||
## beginning of the line.
 | 
			
		||||
set smarthome
 | 
			
		||||
 | 
			
		||||
## Use smooth scrolling as the default.
 | 
			
		||||
# set smooth
 | 
			
		||||
 | 
			
		||||
## Enable soft line wrapping (AKA full-line display).
 | 
			
		||||
set softwrap
 | 
			
		||||
 | 
			
		||||
## Use this spelling checker instead of the internal one.  This option
 | 
			
		||||
## does not properly have a default value.
 | 
			
		||||
# set speller "aspell -x -c"
 | 
			
		||||
 | 
			
		||||
## Allow nano to be suspended.
 | 
			
		||||
set suspend
 | 
			
		||||
 | 
			
		||||
## Use this tab size instead of the default; it must be greater than 0.
 | 
			
		||||
set tabsize 4
 | 
			
		||||
 | 
			
		||||
## Convert typed tabs to spaces.
 | 
			
		||||
set tabstospaces
 | 
			
		||||
 | 
			
		||||
## Save automatically on exit; don't prompt.
 | 
			
		||||
# set tempfile
 | 
			
		||||
 | 
			
		||||
## Disallow file modification.  Why would you want this in an rcfile? ;)
 | 
			
		||||
# set view
 | 
			
		||||
 | 
			
		||||
## The two single-column characters used to display the first characters
 | 
			
		||||
## of tabs and spaces.  187 in ISO 8859-1 (0000BB in Unicode) and 183 in
 | 
			
		||||
## ISO-8859-1 (0000B7 in Unicode) seem to be good values for these.
 | 
			
		||||
## The default when in a UTF-8 locale:
 | 
			
		||||
# set whitespace "»·"
 | 
			
		||||
## The default otherwise:
 | 
			
		||||
# set whitespace ">."
 | 
			
		||||
 | 
			
		||||
## Detect word boundaries differently by treating punctuation
 | 
			
		||||
## characters as parts of words.
 | 
			
		||||
# set wordbounds
 | 
			
		||||
 | 
			
		||||
## The characters (besides alphanumeric ones) that should be considered
 | 
			
		||||
## as parts of words.  This option does not have a default value.  When
 | 
			
		||||
## set, it overrides option 'set wordbounds'.
 | 
			
		||||
# set wordchars "<_>."
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Paint the interface elements of nano.
 | 
			
		||||
## These are examples; by default there are no colors.
 | 
			
		||||
set titlecolor brightwhite,blue
 | 
			
		||||
set numbercolor cyan
 | 
			
		||||
set statuscolor brightwhite,green
 | 
			
		||||
set keycolor green
 | 
			
		||||
set functioncolor yellow
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Setup of syntax coloring.
 | 
			
		||||
##
 | 
			
		||||
## Format:
 | 
			
		||||
##
 | 
			
		||||
## syntax "short description" ["filename regex" ...]
 | 
			
		||||
##
 | 
			
		||||
## The "none" syntax is reserved; specifying it on the command line is
 | 
			
		||||
## the same as not having a syntax at all.  The "default" syntax is
 | 
			
		||||
## special: it takes no filename regexes, and applies to files that
 | 
			
		||||
## don't match any other syntax's filename regexes.
 | 
			
		||||
##
 | 
			
		||||
## color foreground,background "regex" ["regex"...]
 | 
			
		||||
## or
 | 
			
		||||
## icolor foreground,background "regex" ["regex"...]
 | 
			
		||||
##
 | 
			
		||||
## "color" will do case-sensitive matches, while "icolor" will do
 | 
			
		||||
## case-insensitive matches.
 | 
			
		||||
##
 | 
			
		||||
## Valid colors: white, black, red, blue, green, yellow, magenta, cyan.
 | 
			
		||||
## For foreground colors, you may use the prefix "bright" to get a
 | 
			
		||||
## stronger highlight.
 | 
			
		||||
##
 | 
			
		||||
## To use multi-line regexes, use the start="regex" end="regex"
 | 
			
		||||
## [start="regex" end="regex"...] format.
 | 
			
		||||
##
 | 
			
		||||
## If your system supports transparency, not specifying a background
 | 
			
		||||
## color will use a transparent color.  If you don't want this, be sure
 | 
			
		||||
## to set the background color to black or white.
 | 
			
		||||
##
 | 
			
		||||
## All regexes should be extended regular expressions.
 | 
			
		||||
##
 | 
			
		||||
## If you wish, you may put your syntax definitions in separate files.
 | 
			
		||||
## You can make use of such files as follows:
 | 
			
		||||
##
 | 
			
		||||
## include "/path/to/syntax_file.nanorc"
 | 
			
		||||
##
 | 
			
		||||
## Unless otherwise noted, the name of the syntax file (without the
 | 
			
		||||
## ".nanorc" extension) should be the same as the "short description"
 | 
			
		||||
## name inside that file.  These names are kept fairly short to make
 | 
			
		||||
## them easier to remember and faster to type using nano's -Y option.
 | 
			
		||||
##
 | 
			
		||||
## To include all existing syntax definitions, you can do:
 | 
			
		||||
include "/usr/share/nano/*.nanorc"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
## Key bindings.
 | 
			
		||||
## See nanorc(5) (section REBINDING KEYS) for more details on this.
 | 
			
		||||
##
 | 
			
		||||
## The following five functions are not bound to any key by default.
 | 
			
		||||
## You may wish to choose different keys than the ones suggested here.
 | 
			
		||||
bind ^S savefile main
 | 
			
		||||
bind M-C copytext main
 | 
			
		||||
bind M-X cut main
 | 
			
		||||
bind M-V uncut main
 | 
			
		||||
# bind M-Q findprevious main
 | 
			
		||||
# bind M-W findnext main
 | 
			
		||||
# bind M-B cutwordleft main
 | 
			
		||||
# bind M-N cutwordright main
 | 
			
		||||
 | 
			
		||||
## Set this if your Backspace key sends Del most of the time.
 | 
			
		||||
# bind Del backspace all
 | 
			
		||||
							
								
								
									
										34
									
								
								config/etc/profile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								config/etc/profile
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,34 @@
 | 
			
		||||
# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
 | 
			
		||||
# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
 | 
			
		||||
 | 
			
		||||
if [ "`id -u`" -eq 0 ]; then
 | 
			
		||||
  PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
 | 
			
		||||
else
 | 
			
		||||
  PATH="/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games"
 | 
			
		||||
fi
 | 
			
		||||
export PATH
 | 
			
		||||
 | 
			
		||||
if [ "${PS1-}" ]; then
 | 
			
		||||
  if [ "${BASH-}" ] && [ "$BASH" != "/bin/sh" ]; then
 | 
			
		||||
    # The file bash.bashrc already sets the default PS1.
 | 
			
		||||
    # PS1='\h:\w\$ '
 | 
			
		||||
    if [ -f /etc/bash.bashrc ]; then
 | 
			
		||||
      . /etc/bash.bashrc
 | 
			
		||||
    fi
 | 
			
		||||
  else
 | 
			
		||||
    if [ "`id -u`" -eq 0 ]; then
 | 
			
		||||
      PS1='# '
 | 
			
		||||
    else
 | 
			
		||||
      PS1='$ '
 | 
			
		||||
    fi
 | 
			
		||||
  fi
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
if [ -d /etc/profile.d ]; then
 | 
			
		||||
  for i in /etc/profile.d/*.sh; do
 | 
			
		||||
    if [ -r $i ]; then
 | 
			
		||||
      . $i
 | 
			
		||||
    fi
 | 
			
		||||
  done
 | 
			
		||||
  unset i
 | 
			
		||||
fi
 | 
			
		||||
							
								
								
									
										6
									
								
								config/etc/readme.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								config/etc/readme.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,6 @@
 | 
			
		||||
Configuration files and/or changes to default config files in /etc/
 | 
			
		||||
 | 
			
		||||
Setup static networking
 | 
			
		||||
Setup timesyncd for NTP syncing (client only)
 | 
			
		||||
Setup nano with helpful configurations both locally and via SSH
 | 
			
		||||
Colourize prompt based on user-type and add additional information
 | 
			
		||||
							
								
								
									
										113
									
								
								config/etc/skel/.bashrc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										113
									
								
								config/etc/skel/.bashrc
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,113 @@
 | 
			
		||||
# ~/.bashrc: executed by bash(1) for non-login shells.
 | 
			
		||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
 | 
			
		||||
# for examples
 | 
			
		||||
 | 
			
		||||
# If not running interactively, don't do anything
 | 
			
		||||
case $- in
 | 
			
		||||
    *i*) ;;
 | 
			
		||||
      *) return;;
 | 
			
		||||
esac
 | 
			
		||||
 | 
			
		||||
# don't put duplicate lines or lines starting with space in the history.
 | 
			
		||||
# See bash(1) for more options
 | 
			
		||||
HISTCONTROL=ignoreboth
 | 
			
		||||
 | 
			
		||||
# append to the history file, don't overwrite it
 | 
			
		||||
shopt -s histappend
 | 
			
		||||
 | 
			
		||||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
 | 
			
		||||
HISTSIZE=1000
 | 
			
		||||
HISTFILESIZE=2000
 | 
			
		||||
 | 
			
		||||
# check the window size after each command and, if necessary,
 | 
			
		||||
# update the values of LINES and COLUMNS.
 | 
			
		||||
shopt -s checkwinsize
 | 
			
		||||
 | 
			
		||||
# If set, the pattern "**" used in a pathname expansion context will
 | 
			
		||||
# match all files and zero or more directories and subdirectories.
 | 
			
		||||
#shopt -s globstar
 | 
			
		||||
 | 
			
		||||
# make less more friendly for non-text input files, see lesspipe(1)
 | 
			
		||||
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
 | 
			
		||||
 | 
			
		||||
# set variable identifying the chroot you work in (used in the prompt below)
 | 
			
		||||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
 | 
			
		||||
    debian_chroot=$(cat /etc/debian_chroot)
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# set a fancy prompt (non-color, unless we know we "want" color)
 | 
			
		||||
case "$TERM" in
 | 
			
		||||
    xterm-color|*-256color) color_prompt=yes;;
 | 
			
		||||
esac
 | 
			
		||||
 | 
			
		||||
# uncomment for a colored prompt, if the terminal has the capability; turned
 | 
			
		||||
# off by default to not distract the user: the focus in a terminal window
 | 
			
		||||
# should be on the output of commands, not on the prompt
 | 
			
		||||
#force_color_prompt=yes
 | 
			
		||||
 | 
			
		||||
if [ -n "$force_color_prompt" ]; then
 | 
			
		||||
    if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
 | 
			
		||||
	# We have color support; assume it's compliant with Ecma-48
 | 
			
		||||
	# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
 | 
			
		||||
	# a case would tend to support setf rather than setaf.)
 | 
			
		||||
	color_prompt=yes
 | 
			
		||||
    else
 | 
			
		||||
	color_prompt=
 | 
			
		||||
    fi
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
#if [ "$color_prompt" = yes ]; then
 | 
			
		||||
#    PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
 | 
			
		||||
#else
 | 
			
		||||
#    PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
 | 
			
		||||
#fi
 | 
			
		||||
unset color_prompt force_color_prompt
 | 
			
		||||
 | 
			
		||||
# If this is an xterm set the title to user@host:dir
 | 
			
		||||
#case "$TERM" in
 | 
			
		||||
#xterm*|rxvt*)
 | 
			
		||||
#    PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
 | 
			
		||||
#    ;;
 | 
			
		||||
#*)
 | 
			
		||||
#    ;;
 | 
			
		||||
#esac
 | 
			
		||||
 | 
			
		||||
# enable color support of ls and also add handy aliases
 | 
			
		||||
if [ -x /usr/bin/dircolors ]; then
 | 
			
		||||
    test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
 | 
			
		||||
    alias ls='ls --color=auto'
 | 
			
		||||
    #alias dir='dir --color=auto'
 | 
			
		||||
    #alias vdir='vdir --color=auto'
 | 
			
		||||
 | 
			
		||||
    #alias grep='grep --color=auto'
 | 
			
		||||
    #alias fgrep='fgrep --color=auto'
 | 
			
		||||
    #alias egrep='egrep --color=auto'
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# colored GCC warnings and errors
 | 
			
		||||
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
 | 
			
		||||
 | 
			
		||||
# some more ls aliases
 | 
			
		||||
#alias ll='ls -l'
 | 
			
		||||
#alias la='ls -A'
 | 
			
		||||
#alias l='ls -CF'
 | 
			
		||||
 | 
			
		||||
# Alias definitions.
 | 
			
		||||
# You may want to put all your additions into a separate file like
 | 
			
		||||
# ~/.bash_aliases, instead of adding them here directly.
 | 
			
		||||
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
 | 
			
		||||
 | 
			
		||||
if [ -f ~/.bash_aliases ]; then
 | 
			
		||||
    . ~/.bash_aliases
 | 
			
		||||
fi
 | 
			
		||||
 | 
			
		||||
# enable programmable completion features (you don't need to enable
 | 
			
		||||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
 | 
			
		||||
# sources /etc/bash.bashrc).
 | 
			
		||||
if ! shopt -oq posix; then
 | 
			
		||||
  if [ -f /usr/share/bash-completion/bash_completion ]; then
 | 
			
		||||
    . /usr/share/bash-completion/bash_completion
 | 
			
		||||
  elif [ -f /etc/bash_completion ]; then
 | 
			
		||||
    . /etc/bash_completion
 | 
			
		||||
  fi
 | 
			
		||||
fi
 | 
			
		||||
							
								
								
									
										18
									
								
								config/root/.bashrc
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								config/root/.bashrc
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,18 @@
 | 
			
		||||
# ~/.bashrc: executed by bash(1) for non-login shells.
 | 
			
		||||
 | 
			
		||||
# Note: PS1 and umask are already set in /etc/profile. You should not
 | 
			
		||||
# need this unless you want different defaults for root.
 | 
			
		||||
# PS1='${debian_chroot:+($debian_chroot)}\h:\w\$ '
 | 
			
		||||
# umask 022
 | 
			
		||||
 | 
			
		||||
# You may uncomment the following lines if you want `ls' to be colorized:
 | 
			
		||||
# export LS_OPTIONS='--color=auto'
 | 
			
		||||
# eval "`dircolors`"
 | 
			
		||||
# alias ls='ls $LS_OPTIONS'
 | 
			
		||||
# alias ll='ls $LS_OPTIONS -l'
 | 
			
		||||
# alias l='ls $LS_OPTIONS -lA'
 | 
			
		||||
#
 | 
			
		||||
# Some more alias to avoid making mistakes:
 | 
			
		||||
# alias rm='rm -i'
 | 
			
		||||
# alias cp='cp -i'
 | 
			
		||||
# alias mv='mv -i'
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user