From 432efa3b615c5cc6143077c6088c377a8fdba97f Mon Sep 17 00:00:00 2001 From: Geoffrey Frogeye Date: Thu, 2 Jun 2016 10:31:06 +0200 Subject: [PATCH] Commit before trying things --- bashrc | 10 +++++++--- config/gtk-3.0/settings.ini | 2 +- bash_profile => profile | 5 +---- 3 files changed, 9 insertions(+), 8 deletions(-) rename bash_profile => profile (58%) diff --git a/bashrc b/bashrc index 2307bfa..86833d6 100644 --- a/bashrc +++ b/bashrc @@ -19,7 +19,11 @@ fi export USER=$(whoami) export HOSTNAME=$(cat /etc/hostname) -PS1="\[\e[0;37m\][\[\e[0;${col}m\]\u\[\e[0;37m\]@\[\e[0;34m\]${HOSTNAME//geoffrey-/} \[\e[0;36m\]\W\[\e[0;37m\]]\$\[\e[1;97m\] " +HOST=${HOSTNAME//geoffrey-/} +PS1="\[\e]2;\u@${HOST} \w\a\]\[\e[0;37m\][\[\e[0;${col}m\]\u\[\e[0;37m\]@\[\e[0;34m\]${HOST} \[\e[0;36m\]\W\[\e[0;37m\]]\$\[\e[1;97m\] " +PS2="> " +PS3="+ " +PS4="+ " trap 'echo -ne "\e[0m"' DEBUG @@ -71,7 +75,7 @@ alias dd='dd status=progress' alias rm='rm -Iv --one-file-system' alias free='free -m' alias df='df -h' -alias 49.3='sudo !!' +alias 49.3='sudo' alias pacman='pacman --color auto' # Solarized theme for tty, the dark version. @@ -109,7 +113,7 @@ alias FUCK='fuck' # Functions function clean { - find . -type d -name bower_components -or -name node_modules -print0 | while read file; do + find . -type d -name bower_components -or -name node_modules -print0 | while read file; do rm -rf "$file" done find . -type f -name Makefile -print0 | while IFS= read -r -d '' file; do diff --git a/config/gtk-3.0/settings.ini b/config/gtk-3.0/settings.ini index acb0fb1..8d29faa 100644 --- a/config/gtk-3.0/settings.ini +++ b/config/gtk-3.0/settings.ini @@ -1,5 +1,5 @@ [Settings] -gtk-theme-name=Menda +gtk-theme-name=Greenbird gtk-icon-theme-name=Faenza-Green gtk-font-name=Sans 10 gtk-cursor-theme-size=0 diff --git a/bash_profile b/profile similarity index 58% rename from bash_profile rename to profile index 0f05bd9..08b19b4 100644 --- a/bash_profile +++ b/profile @@ -1,9 +1,6 @@ # -# ~/.bash_profile +# ~/.profile # - if [ -z "$SSH_AUTH_SOCK" ] ; then eval `ssh-agent -s` > /dev/null fi - -[[ -f ~/.bashrc ]] && . ~/.bashrc