update
This commit is contained in:
parent
62121dc6ff
commit
7e8c037dc2
2 changed files with 5 additions and 12 deletions
|
@ -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
13
profile
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue