From 3210398a1ebd47bba79a5a223f14020bcc2ae2b5 Mon Sep 17 00:00:00 2001 From: Dustin Kirkland Date: Wed, 9 Apr 2014 15:57:12 -0400 Subject: [PATCH] * usr/share/byobu/profiles/bashrc: - Ensure that we use ls with colors, and class/type indicators --- debian/changelog | 2 ++ usr/share/byobu/profiles/bashrc | 2 ++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index 41efc967..6194e06a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ byobu (5.78) unreleased; urgency=medium * usr/share/byobu/profiles/dircolors: - give executables just a little more pop + * usr/share/byobu/profiles/bashrc: + - Ensure that we use ls with colors, and class/type indicators -- Dustin Kirkland Sun, 30 Mar 2014 20:42:10 -0500 diff --git a/usr/share/byobu/profiles/bashrc b/usr/share/byobu/profiles/bashrc index 00f8e06f..35960b9f 100644 --- a/usr/share/byobu/profiles/bashrc +++ b/usr/share/byobu/profiles/bashrc @@ -63,5 +63,7 @@ if [ -n "$TMUX" ] || [ "${TERMCAP#*screen}" != "${TERMCAP}" ]; then PS1="${debian_chroot:+($debian_chroot)}\[\e[31m\]\$(byobu_prompt_status)\[\e[00;32m\]\u\[\e[00m\]@\[\e[00;31m\]\h\[\e[00m\]:\[\e[00;36m\]\w\[\e[00m\]\$(byobu_prompt_symbol) " ;; esac + # Ensure that we use ls with colors, and class/type indicators + alias ls='ls --color=auto -F' fi fi