Skip to content

Commit

Permalink
Merge alex-ubuntu-server configs
Browse files Browse the repository at this point in the history
Conflicts:
	.bash_logout
	.bash_profile
	.bashrc
	.profile
  • Loading branch information
strugee committed Jul 7, 2013
2 parents cedc957 + fc04d31 commit f632cb0
Show file tree
Hide file tree
Showing 8 changed files with 505 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .bash_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

# Aliases for maintinence
alias upgradepackages='maintenence'
alias updatepackages='maintenence'
alias updatepackages='maintenence'
2 changes: 1 addition & 1 deletion .bash_logout
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ if [ "$SHLVL" = 1 ]; then
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
fi

echo "bye"
echo "bye"
12 changes: 4 additions & 8 deletions .bash_profile
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,10 @@ echo -e "\nYou've succesfully connected to the system.\nIdeally, you would keep
export PATH=$PATH:~/bin

# Add .bashrc stuff
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
[[ -f ~/.bashrc ]] && . ~/.bashrc

export PAGER=less
export BROWSER=lynx
export EDITOR=nano
export VISUAL=emacs
# this includes env variables
[[ -f ~/.profile ]] && . ~/.profile

#_byobu_sourced=1 . /usr/bin/byobu-launch -S byobu
byobu -R -S byobu;exit
byobu -R -S byobu;exit
12 changes: 11 additions & 1 deletion .bashrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# ~/.bashrc: executed by bash(1) for non-login shells.
# ubuntu ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples

Expand Down Expand Up @@ -101,3 +101,13 @@ fi
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
. /etc/bash_completion
fi

#
# arch default ~/.bashrc
#

# If not running interactively, don't do anything
[[ $- != *i* ]] && return

alias ls='ls --color=auto'
PS1='[\u@\h \W]\$ '
Loading

0 comments on commit f632cb0

Please sign in to comment.