bashrc.local
* Make a '.bashrc.local' file in your home directory with user specific aliases or shell variables
This commit is contained in:
8
.bashrc
8
.bashrc
@@ -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
|
||||
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user