This commit is contained in:
Tobias Schmidl 2015-02-17 09:00:02 +01:00
parent 62121dc6ff
commit 7e8c037dc2
2 changed files with 5 additions and 12 deletions

View file

@ -197,8 +197,8 @@ client.urgent #002b36 #dc322f #002b36 #dc322f
# finds out, if available)
bar {
output LVDS-0
mode hide
hidden_state hide
#mode hide
#hidden_state hide
tray_output LVDS-0
status_command i3status
position top

13
profile
View file

@ -8,17 +8,10 @@
# for ssh logins, install and configure the libpam-umask package.
#umask 022
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# if running bash, include .bashrc, if it exists
[ -n "$BASH_VERSION" -a -r "$HOME/.bashrc" ] && . "$HOME/.bashrc"
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
[[ -f "$HOME/bin/set_environ.sh" ]] && . "$HOME/bin/set_environ.sh";