bashrc.local

* Make a '.bashrc.local' file in your home directory with user specific
aliases or shell variables
This commit is contained in:
ackman678
2019-02-11 15:17:07 -08:00
parent 2fd8d2d7d6
commit 4ea527e581
3 changed files with 10 additions and 5 deletions

View File

@@ -50,7 +50,11 @@ if [ -d "$HOME/bin/Fiji.app" ]; then
fi
#source custom user aliases
if [[ -e $HOME/.myconfig ]]; then
source $HOME/.myconfig
if [[ -e $HOME/.bashrc.local ]]; then
source $HOME/.bashrc.local
fi
# if [[ -z "$TMUX" ]] && [ "$SSH_CONNECTION" != "" ]; then
# tmux attach-session -t ssh_tmux || tmux new-session -s ssh_tmux
# fi

View File

@@ -12,8 +12,9 @@
set $mod Mod4
#jba
#bindsym --release $mod+z exec scrot -s
bindsym --release $mod+z exec scrot -u '%Y-%m-%d_$wx$h.png' -e '~/bin/mv2figs.sh $f'
#full screenshot is scrot with no flag by default. Add -s for selection cursor or -u for focus window
bindsym --release $mod+z exec scrot '%Y-%m-%d_$wx$h.png' -e '~/bin/mv2figs.sh $f'
#bindsym --release $mod+z exec scrot -u '%Y-%m-%d_$wx$h.png' -e '~/bin/mv2figs.sh $f'
bindsym $mod+Shift+z exec "date --iso-8601='seconds' | tr -d '\n' | xclip -selection clipboard"
#audio output kbd control- pulse audio

View File

@@ -35,7 +35,7 @@ order += "load"
order += "tztime local"
wireless _first_ {
format_up = "W: (%quality at %essid) %ip"
format_up = "W: (%quality at %essid, %frequency) %ip"
format_down = "W: down"
}