ncmpcpp symlink

This commit is contained in:
Daniel Flanagan 2016-09-24 05:36:01 -05:00
parent 84f937c8ff
commit 2a3f25e9dc
3 changed files with 44 additions and 11 deletions

1
env/sh/bashrc vendored
View file

@ -32,6 +32,7 @@ if [ -t 0 ]; then
alias ....="cd ../../.." alias ....="cd ../../.."
alias .....="cd ../../../.." alias .....="cd ../../../.."
alias ......="cd ../../../../.." alias ......="cd ../../../../.."
alias todo="todo.sh"
# tmux aliases # tmux aliases
alias tmux='TERM=screen-256color-bce tmux' # syntax higlighting for vim in tmux alias tmux='TERM=screen-256color-bce tmux' # syntax higlighting for vim in tmux

View file

@ -1,9 +1,41 @@
key_move_song_up = 'K' # the t key isn't used and it's easier to press than /, so lets use it
key_move_song_down = 'J' def_key "t"
key_next_found_position = 'n' find
key_prev_found_position = 'N' def_key "t"
key_prev_column = 260 'h' find_item_forward
key_next_column = 261 'l'
key_lyrics = '.' def_key "+"
key_home = 262 'g' show_clock
key_end = 360 'G' def_key "="
volume_up
def_key "j"
scroll_down
def_key "k"
scroll_up
def_key "ctrl-u"
page_up
#push_characters "kkkkkkkkkkkkkkk"
def_key "ctrl-d"
page_down
#push_characters "jjjjjjjjjjjjjjj"
def_key "h"
previous_column
def_key "l"
next_column
def_key "."
show_lyrics
def_key "n"
next_found_item
def_key "N"
previous_found_item
# not used but bound
def_key "J"
move_sort_order_down
def_key "K"
move_sort_order_up

View file

@ -3,6 +3,6 @@
DIR=$(cd "$(dirname "${BASH_SOURCE[0]}" )/../.." && pwd) DIR=$(cd "$(dirname "${BASH_SOURCE[0]}" )/../.." && pwd)
source "$DIR/variables.bash" source "$DIR/variables.bash"
rm -rf "$HOME/.ncmpcpp/" rm -rf "$HOME/.ncmpcpp"
ln -s "$DOTFILES_PATH/music/ncmpcpp/" "$HOME/.ncmpcpp/" ln -s "$DOTFILES_PATH/music/ncmpcpp" "$HOME/.ncmpcpp"