| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- # Example keymap file
- # To define your own keys for MOC commands, create a keymap file in the ~/.moc/
- # directory and add options Keymap = FILE in ~/.moc/config
- #
- # The format of this file is:
- # Lines beginning with # are comments.
- # Blank lines are ignored.
- # Every other line is expected to be in format:
- #
- # COMMAND = [KEY ...]
- #
- # The key can be:
- # - just a char, like i, L, ", *
- # - CTRL-KEY sequence: ^k (CTRL-k), ^4
- # - ALT-KEY (meta sequence): M-j (ALT-j), M-%
- # - Special keys:
- # DOWN
- # UP
- # LEFT
- # RIGHT
- # HOME
- # BACKSPACE
- # DEL
- # INS
- # ENTER
- # PAGE_UP
- # PAGE_DOWN
- # TAB
- # END
- # KEYPAD_CENTER
- # SPACE
- # ESCAPE
- # F1 - F12
- #
- # Maximum number of keys for one command is 5.
- #
- # Omitting the key for a command will disassociate the key from the command.
- #
- # Default key configuration for MOC (and a list of all available commands):
- quit_client = q
- go = l ENTER
- menu_down = j
- menu_up = k
- menu_page_down = PAGE_DOWN
- menu_page_up = PAGE_UP
- menu_first_item = g
- menu_last_item = G
- quit = Q
- stop = s
- next = L
- previous = H
- pause = SPACE
- toggle_read_tags =
- toggle_shuffle = S
- toggle_repeat = R
- toggle_auto_next = X
- toggle_menu = TAB
- toggle_layout = ^l
- add_file = a
- clear_playlist = C
- remove_dead_entries = Y
- add_directory = A
- volume_down_1 = <
- volume_up_1 = >
- volume_down_5 = ,
- volume_up_5 = .
- seek_forward = }
- seek_backward = {
- seek_forward_fast = ]
- seek_backward_fast = [
- help = ?
- hide_message =
- refresh = ^r
- reload = r
- toggle_hidden_files =
- go_to_music_directory =
- delete_from_playlist = d
- search_menu = /
- save_playlist = V
- toggle_show_time = ^t
- toggle_show_format = ^f
- go_to_playing_file =
- go_to_a_directory = i
- go_up = h
- next_search = ^g ^n
- cancel = ^x ESCAPE
- go_url = o
- volume_10 = M-1
- volume_20 = M-2
- volume_30 = M-3
- volume_40 = M-4
- volume_50 = M-5
- volume_60 = M-6
- volume_70 = M-7
- volume_80 = M-8
- volume_90 = M-9
- mark_start = '
- mark_end = "
- # Key bindings for directories: defaults are Shift-number
- # shift 1 = ! = Fastdir1
- go_to_fast_dir1 = !
- go_to_fast_dir2 = @
- go_to_fast_dir3 = #
- go_to_fast_dir4 = $
- go_to_fast_dir5 = %
- go_to_fast_dir6 = ^
- go_to_fast_dir7 = &
- go_to_fast_dir8 = *
- go_to_fast_dir9 = (
- go_to_fast_dir10 = )
- plist_add_stream = ^u
- toggle_mixer = x
- # for softmixer
- #toggle_softmixer = w
- history_up = UP
- history_down = DOWN
- delete_to_start = ^u
- delete_to_end = ^k
- plist_move_up = K
- plist_move_down = J
- theme_menu = T
- toggle_equalizer = E
- equalizer_refresh = e
- equalizer_prev =
- equalizer_next =
- toggle_make_mono = m
- show_lyrics =
- playlist_full_paths = P
- enqueue_file = z
- clear_queue = Z
- exec_command1 = F1
- exec_command2 = F2
- exec_command3 = F3
- exec_command4 = F4
- exec_command5 = F5
- exec_command6 = F6
- exec_command7 = F7
- exec_command8 = F8
- exec_command9 = F9
- exec_command10 = F10
- # The following commands are available but not assigned to any keys by
- # default:
- #
- # toggle_percent Switch on/off play progress bar time percentage
- #
|