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)
|
# finds out, if available)
|
||||||
bar {
|
bar {
|
||||||
output LVDS-0
|
output LVDS-0
|
||||||
mode hide
|
#mode hide
|
||||||
hidden_state hide
|
#hidden_state hide
|
||||||
tray_output LVDS-0
|
tray_output LVDS-0
|
||||||
status_command i3status
|
status_command i3status
|
||||||
position top
|
position top
|
||||||
|
|
13
profile
13
profile
|
@ -8,17 +8,10 @@
|
||||||
# for ssh logins, install and configure the libpam-umask package.
|
# for ssh logins, install and configure the libpam-umask package.
|
||||||
#umask 022
|
#umask 022
|
||||||
|
|
||||||
# if running bash
|
# if running bash, include .bashrc, if it exists
|
||||||
if [ -n "$BASH_VERSION" ]; then
|
[ -n "$BASH_VERSION" -a -r "$HOME/.bashrc" ] && . "$HOME/.bashrc"
|
||||||
# include .bashrc if it exists
|
|
||||||
if [ -f "$HOME/.bashrc" ]; then
|
|
||||||
. "$HOME/.bashrc"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# set PATH so it includes user's private bin if it exists
|
# set PATH so it includes user's private bin if it exists
|
||||||
if [ -d "$HOME/bin" ] ; then
|
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
|
||||||
PATH="$HOME/bin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
[[ -f "$HOME/bin/set_environ.sh" ]] && . "$HOME/bin/set_environ.sh";
|
[[ -f "$HOME/bin/set_environ.sh" ]] && . "$HOME/bin/set_environ.sh";
|
||||||
|
|
Loading…
Reference in a new issue