diff options
author | Rasmus Steinke <rasi@xssn.at> | 2017-08-13 16:27:45 +0200 |
---|---|---|
committer | Rasmus Steinke <rasi@xssn.at> | 2017-08-13 16:27:45 +0200 |
commit | 95ae52ef38c01ecd7097449ce9b937a15925ee49 (patch) | |
tree | f191a28b47ccbbbf7fb2d81b2173940d0d2be6b5 | |
parent | 125cc17f61a5f382164e3364850c9e4ef0645d3b (diff) | |
download | perl-app-clerk-95ae52ef38c01ecd7097449ce9b937a15925ee49.tar.gz perl-app-clerk-95ae52ef38c01ecd7097449ce9b937a15925ee49.tar.xz |
update
-rw-r--r-- | clerk.tmux | 28 |
1 files changed, 14 insertions, 14 deletions
@@ -1,3 +1,17 @@ +# !Dont move this section. +## Key Bindings +bind-key -n F1 findw albums # show album list +bind-key -n F2 findw tracks # show tracks +bind-key -n F3 findw latest # show album list (latest first) +bind-key -n F4 findw playlists # load playlist +bind-key -n F5 findw queue # show queue +bind-key -n C-F5 run-shell 'mpc prev --quiet' # previous song +bind-key -n C-F6 run-shell 'mpc toggle --quiet' # toggle playback +bind-key -n C-F7 run-shell 'mpc stop > /dev/null' # stop playback +bind-key -n C-F8 run-shell 'mpc next --quiet' # next song +bind-key -n F10 run-shell 'clerk -f -x' # play random album/songs +bind-key -n C-F1 run-shell 'clerk -f -y' # show help +bind-key -n C-q kill-session -t music # quit clerk # Status bar set-option -g status-position top set -g status-interval 30 @@ -19,20 +33,6 @@ setw -g window-status-attr bright setw -g window-status-format ' #[fg=colour243,bold]#W ' setw -g window-status-current-format ' #[fg=yellow,bold]#[bg=colour235]#W ' -# !Dont remove this keybinding header! (used to generate help) -## Key Bindings -bind-key -n F1 findw albums # show album list -bind-key -n F2 findw tracks # show tracks -bind-key -n F3 findw latest # show album list (latest first) -bind-key -n F4 findw playlists # load playlist -bind-key -n F5 findw queue # show queue -bind-key -n C-F5 run-shell 'mpc prev --quiet' # previous song -bind-key -n C-F6 run-shell 'mpc toggle --quiet' # toggle playback -bind-key -n C-F7 run-shell 'mpc stop > /dev/null' # stop playback -bind-key -n C-F8 run-shell 'mpc next --quiet' # next song -bind-key -n F10 run-shell 'clerk -f -x' # play random album/songs -bind-key -n C-F1 run-shell 'clerk -f -y' # show help -bind-key -n C-q kill-session -t music # quit clerk # tmux options |