mirror of
https://github.com/kristoferssolo/solorice.git
synced 2026-02-04 06:32:03 +00:00
Update: 2024-10-15
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
bookmark = [
|
||||
{ key = "r", path = "/" },
|
||||
{ key = "e", path = "/etc" },
|
||||
{key = "r", path = "/"},
|
||||
{key = "e", path = "/etc"},
|
||||
|
||||
{ key = "h", path = "~/" },
|
||||
{key = "h", path = "~/"},
|
||||
]
|
||||
|
||||
@@ -13,7 +13,7 @@ mode = "default"
|
||||
automatically_count_files = false
|
||||
collapse_preview = true
|
||||
# ratios for parent view (optional), current view and preview
|
||||
column_ratio = [1, 4, 4]
|
||||
column_ratio = [ 1, 4, 4 ]
|
||||
scroll_offset = 6
|
||||
show_borders = true
|
||||
show_hidden = false
|
||||
|
||||
@@ -1,172 +1,172 @@
|
||||
[default_view]
|
||||
|
||||
keymap = [
|
||||
{ keys = ["escape"], command = "escape" },
|
||||
{ keys = ["ctrl+t"], command = "new_tab" },
|
||||
{ keys = ["alt+t"], command = "new_tab --cursor" },
|
||||
{ keys = ["T"], command = "new_tab --current" },
|
||||
{ keys = ["W"], command = "close_tab" },
|
||||
{ keys = ["ctrl+w"], command = "close_tab" },
|
||||
{ keys = ["q"], command = "close_tab" },
|
||||
{ keys = ["ctrl+c"], command = "quit" },
|
||||
{ keys = ["Q"], command = "quit --output-current-directory" },
|
||||
{keys = [ "escape" ], command = "escape"},
|
||||
{keys = [ "ctrl+t" ], command = "new_tab"},
|
||||
{keys = [ "alt+t" ], command = "new_tab --cursor"},
|
||||
{keys = [ "T" ], command = "new_tab --current"},
|
||||
{keys = [ "W" ], command = "close_tab"},
|
||||
{keys = [ "ctrl+w" ], command = "close_tab"},
|
||||
{keys = [ "q" ], command = "close_tab"},
|
||||
{keys = [ "ctrl+c" ], command = "quit"},
|
||||
{keys = [ "Q" ], command = "quit --output-current-directory"},
|
||||
|
||||
{ keys = ["R"], command = "reload_dirlist" },
|
||||
{ keys = ["z", "h"], command = "toggle_hidden" },
|
||||
{ keys = ["ctrl+h"], command = "toggle_hidden" },
|
||||
{ keys = ["\t"], command = "tab_switch 1" },
|
||||
{ keys = ["backtab"], command = "tab_switch -1" },
|
||||
{keys = [ "R" ], command = "reload_dirlist"},
|
||||
{keys = [ "z", "h" ], command = "toggle_hidden"},
|
||||
{keys = [ "ctrl+h" ], command = "toggle_hidden"},
|
||||
{keys = [ "\t" ], command = "tab_switch 1"},
|
||||
{keys = [ "backtab" ], command = "tab_switch -1"},
|
||||
|
||||
{ keys = ["alt+1"], command = "tab_switch_index 1" },
|
||||
{ keys = ["alt+2"], command = "tab_switch_index 2" },
|
||||
{ keys = ["alt+3"], command = "tab_switch_index 3" },
|
||||
{ keys = ["alt+4"], command = "tab_switch_index 4" },
|
||||
{ keys = ["alt+5"], command = "tab_switch_index 5" },
|
||||
{keys = [ "alt+1" ], command = "tab_switch_index 1"},
|
||||
{keys = [ "alt+2" ], command = "tab_switch_index 2"},
|
||||
{keys = [ "alt+3" ], command = "tab_switch_index 3"},
|
||||
{keys = [ "alt+4" ], command = "tab_switch_index 4"},
|
||||
{keys = [ "alt+5" ], command = "tab_switch_index 5"},
|
||||
|
||||
{ keys = ["1"], command = "numbered_command 1" },
|
||||
{ keys = ["2"], command = "numbered_command 2" },
|
||||
{ keys = ["3"], command = "numbered_command 3" },
|
||||
{ keys = ["4"], command = "numbered_command 4" },
|
||||
{ keys = ["5"], command = "numbered_command 5" },
|
||||
{ keys = ["6"], command = "numbered_command 6" },
|
||||
{ keys = ["7"], command = "numbered_command 7" },
|
||||
{ keys = ["8"], command = "numbered_command 8" },
|
||||
{ keys = ["9"], command = "numbered_command 9" },
|
||||
{keys = [ "1" ], command = "numbered_command 1"},
|
||||
{keys = [ "2" ], command = "numbered_command 2"},
|
||||
{keys = [ "3" ], command = "numbered_command 3"},
|
||||
{keys = [ "4" ], command = "numbered_command 4"},
|
||||
{keys = [ "5" ], command = "numbered_command 5"},
|
||||
{keys = [ "6" ], command = "numbered_command 6"},
|
||||
{keys = [ "7" ], command = "numbered_command 7"},
|
||||
{keys = [ "8" ], command = "numbered_command 8"},
|
||||
{keys = [ "9" ], command = "numbered_command 9"},
|
||||
|
||||
# arrow keys
|
||||
{ keys = ["arrow_up"], command = "cursor_move_up" },
|
||||
{ keys = ["arrow_down"], command = "cursor_move_down" },
|
||||
{ keys = ["arrow_left"], command = "cd .." },
|
||||
{ keys = ["arrow_right"], command = "open" },
|
||||
{ keys = ["\n"], command = "open" },
|
||||
{ keys = ["home"], command = "cursor_move_home" },
|
||||
{ keys = ["end"], command = "cursor_move_end" },
|
||||
{ keys = ["page_up"], command = "cursor_move_page_up" },
|
||||
{ keys = ["page_down"], command = "cursor_move_page_down" },
|
||||
{ keys = ["ctrl+u"], command = "cursor_move_page_up 0.5" },
|
||||
{ keys = ["ctrl+d"], command = "cursor_move_page_down 0.5" },
|
||||
{ keys = ["ctrl+b"], command = "cursor_move_page_up" },
|
||||
{ keys = ["ctrl+f"], command = "cursor_move_page_down" },
|
||||
{keys = [ "arrow_up" ], command = "cursor_move_up"},
|
||||
{keys = [ "arrow_down" ], command = "cursor_move_down"},
|
||||
{keys = [ "arrow_left" ], command = "cd .."},
|
||||
{keys = [ "arrow_right" ], command = "open"},
|
||||
{keys = [ "\n" ], command = "open"},
|
||||
{keys = [ "home" ], command = "cursor_move_home"},
|
||||
{keys = [ "end" ], command = "cursor_move_end"},
|
||||
{keys = [ "page_up" ], command = "cursor_move_page_up"},
|
||||
{keys = [ "page_down" ], command = "cursor_move_page_down"},
|
||||
{keys = [ "ctrl+u" ], command = "cursor_move_page_up 0.5"},
|
||||
{keys = [ "ctrl+d" ], command = "cursor_move_page_down 0.5"},
|
||||
{keys = [ "ctrl+b" ], command = "cursor_move_page_up"},
|
||||
{keys = [ "ctrl+f" ], command = "cursor_move_page_down"},
|
||||
|
||||
# vim-like keybindings
|
||||
{ keys = ["j"], command = "cursor_move_down" },
|
||||
{ keys = ["k"], command = "cursor_move_up" },
|
||||
{ keys = ["h"], command = "cd .." },
|
||||
{ keys = ["l"], command = "open" },
|
||||
{ keys = ["g", "g"], command = "cursor_move_home" },
|
||||
{ keys = ["G"], command = "cursor_move_end" },
|
||||
{ keys = ["r"], command = "open_with" },
|
||||
{keys = [ "j" ], command = "cursor_move_down"},
|
||||
{keys = [ "k" ], command = "cursor_move_up"},
|
||||
{keys = [ "h" ], command = "cd .."},
|
||||
{keys = [ "l" ], command = "open"},
|
||||
{keys = [ "g", "g" ], command = "cursor_move_home"},
|
||||
{keys = [ "G" ], command = "cursor_move_end"},
|
||||
{keys = [ "r" ], command = "open_with"},
|
||||
|
||||
{ keys = ["H"], command = "cursor_move_page_home" },
|
||||
{ keys = ["L"], command = "cursor_move_page_middle" },
|
||||
{ keys = ["M"], command = "cursor_move_page_end" },
|
||||
{keys = [ "H" ], command = "cursor_move_page_home"},
|
||||
{keys = [ "L" ], command = "cursor_move_page_middle"},
|
||||
{keys = [ "M" ], command = "cursor_move_page_end"},
|
||||
|
||||
{ keys = ["["], command = "parent_cursor_move_up" },
|
||||
{ keys = ["]"], command = "parent_cursor_move_down" },
|
||||
{keys = [ "[" ], command = "parent_cursor_move_up"},
|
||||
{keys = [ "]" ], command = "parent_cursor_move_down"},
|
||||
|
||||
{ keys = ["c", "d"], command = ":cd " },
|
||||
{ keys = ["d", "d"], command = "cut_files" },
|
||||
{ keys = ["y", "y"], command = "copy_files" },
|
||||
{ keys = ["y", "n"], command = "copy_filename" },
|
||||
{ keys = ["y", "."], command = "copy_filename_without_extension" },
|
||||
{ keys = ["y", "p"], command = "copy_filepath" },
|
||||
{ keys = ["y", "a"], command = "copy_filepath --all-selected=true" },
|
||||
{ keys = ["y", "d"], command = "copy_dirpath" },
|
||||
{keys = [ "c", "d" ], command = ":cd "},
|
||||
{keys = [ "d", "d" ], command = "cut_files"},
|
||||
{keys = [ "y", "y" ], command = "copy_files"},
|
||||
{keys = [ "y", "n" ], command = "copy_filename"},
|
||||
{keys = [ "y", "." ], command = "copy_filename_without_extension"},
|
||||
{keys = [ "y", "p" ], command = "copy_filepath"},
|
||||
{keys = [ "y", "a" ], command = "copy_filepath --all-selected=true"},
|
||||
{keys = [ "y", "d" ], command = "copy_dirpath"},
|
||||
|
||||
{ keys = ["p", "l"], command = "symlink_files --relative=false" },
|
||||
{ keys = ["p", "L"], command = "symlink_files --relative=true" },
|
||||
{keys = [ "p", "l" ], command = "symlink_files --relative=false"},
|
||||
{keys = [ "p", "L" ], command = "symlink_files --relative=true"},
|
||||
|
||||
{ keys = ["delete"], command = "delete_files" },
|
||||
{ keys = ["d", "D"], command = "delete_files" },
|
||||
{keys = [ "delete" ], command = "delete_files"},
|
||||
{keys = [ "d", "D" ], command = "delete_files"},
|
||||
|
||||
{ keys = ["p", "p"], command = "paste_files" },
|
||||
{ keys = ["p", "o"], command = "paste_files --overwrite=true" },
|
||||
{keys = [ "p", "p" ], command = "paste_files"},
|
||||
{keys = [ "p", "o" ], command = "paste_files --overwrite=true"},
|
||||
|
||||
{ keys = ["a"], command = "rename_append" },
|
||||
{ keys = ["A"], command = "rename_prepend" },
|
||||
{keys = [ "a" ], command = "rename_append"},
|
||||
{keys = [ "A" ], command = "rename_prepend"},
|
||||
|
||||
{ keys = ["f", "t"], command = ":touch " },
|
||||
{keys = [ "f", "t" ], command = ":touch "},
|
||||
|
||||
{ keys = [" "], command = "select --toggle=true" },
|
||||
{ keys = ["t"], command = "select --all=true --toggle=true" },
|
||||
{ keys = ["V"], command = "toggle_visual" },
|
||||
{keys = [ " " ], command = "select --toggle=true"},
|
||||
{keys = [ "t" ], command = "select --all=true --toggle=true"},
|
||||
{keys = [ "V" ], command = "toggle_visual"},
|
||||
|
||||
{ keys = ["w"], command = "show_tasks --exit-key=w" },
|
||||
{ keys = ["b", "b"], command = "bulk_rename" },
|
||||
{ keys = ["="], command = "set_mode" },
|
||||
{keys = [ "w" ], command = "show_tasks --exit-key=w"},
|
||||
{keys = [ "b", "b" ], command = "bulk_rename"},
|
||||
{keys = [ "=" ], command = "set_mode"},
|
||||
|
||||
{ keys = [":"], command = ":" },
|
||||
{ keys = [";"], command = ":" },
|
||||
{keys = [ ":" ], command = ":"},
|
||||
{keys = [ ";" ], command = ":"},
|
||||
|
||||
{ keys = ["'"], command = ":shell " },
|
||||
{ keys = ["m", "k"], command = ":mkdir " },
|
||||
{ keys = ["c", "w"], command = ":rename " },
|
||||
{keys = [ "'" ], command = ":shell "},
|
||||
{keys = [ "m", "k" ], command = ":mkdir "},
|
||||
{keys = [ "c", "w" ], command = ":rename "},
|
||||
|
||||
{ keys = ["/"], command = ":search " },
|
||||
{ keys = ["|"], command = ":search_inc " },
|
||||
{ keys = ["\\"], command = ":search_glob " },
|
||||
{ keys = ["S"], command = "search_fzf" },
|
||||
{ keys = ["C"], command = "subdir_fzf" },
|
||||
{keys = [ "/" ], command = ":search "},
|
||||
{keys = [ "|" ], command = ":search_inc "},
|
||||
{keys = [ "\\" ], command = ":search_glob "},
|
||||
{keys = [ "S" ], command = "search_fzf"},
|
||||
{keys = [ "C" ], command = "subdir_fzf"},
|
||||
|
||||
{ keys = ["n"], command = "search_next" },
|
||||
{ keys = ["N"], command = "search_prev" },
|
||||
{keys = [ "n" ], command = "search_next"},
|
||||
{keys = [ "N" ], command = "search_prev"},
|
||||
|
||||
{ keys = ["s", "r"], command = "sort reverse" },
|
||||
{ keys = ["s", "l"], command = "sort lexical" },
|
||||
{ keys = ["s", "m"], command = "sort mtime" },
|
||||
{ keys = ["s", "n"], command = "sort natural" },
|
||||
{ keys = ["s", "s"], command = "sort size" },
|
||||
{ keys = ["s", "e"], command = "sort ext" },
|
||||
{keys = [ "s", "r" ], command = "sort reverse"},
|
||||
{keys = [ "s", "l" ], command = "sort lexical"},
|
||||
{keys = [ "s", "m" ], command = "sort mtime"},
|
||||
{keys = [ "s", "n" ], command = "sort natural"},
|
||||
{keys = [ "s", "s" ], command = "sort size"},
|
||||
{keys = [ "s", "e" ], command = "sort ext"},
|
||||
|
||||
{ keys = ["m", "s"], command = "linemode size" },
|
||||
{ keys = ["m", "m"], command = "linemode mtime" },
|
||||
{ keys = ["m", "M"], command = "linemode size | mtime" },
|
||||
{ keys = ["m", "u"], command = "linemode user" },
|
||||
{ keys = ["m", "U"], command = "linemode user | group" },
|
||||
{ keys = ["m", "p"], command = "linemode perm" },
|
||||
{keys = [ "m", "s" ], command = "linemode size"},
|
||||
{keys = [ "m", "m" ], command = "linemode mtime"},
|
||||
{keys = [ "m", "M" ], command = "linemode size | mtime"},
|
||||
{keys = [ "m", "u" ], command = "linemode user"},
|
||||
{keys = [ "m", "U" ], command = "linemode user | group"},
|
||||
{keys = [ "m", "p" ], command = "linemode perm"},
|
||||
|
||||
{ keys = ["g", "r"], command = "cd /" },
|
||||
{ keys = ["g", "c"], command = "cd ~/.config" },
|
||||
{ keys = ["g", "d"], command = "cd ~/Downloads" },
|
||||
{ keys = ["g", "e"], command = "cd /etc" },
|
||||
{ keys = ["g", "h"], command = "cd ~/" },
|
||||
{ keys = ["?"], command = "help" },
|
||||
{keys = [ "g", "r" ], command = "cd /"},
|
||||
{keys = [ "g", "c" ], command = "cd ~/.config"},
|
||||
{keys = [ "g", "d" ], command = "cd ~/Downloads"},
|
||||
{keys = [ "g", "e" ], command = "cd /etc"},
|
||||
{keys = [ "g", "h" ], command = "cd ~/"},
|
||||
{keys = [ "?" ], command = "help"},
|
||||
]
|
||||
|
||||
[task_view]
|
||||
|
||||
keymap = [
|
||||
# arrow keys
|
||||
{ keys = ["arrow_up"], command = "cursor_move_up" },
|
||||
{ keys = ["arrow_down"], command = "cursor_move_down" },
|
||||
{ keys = ["home"], command = "cursor_move_home" },
|
||||
{ keys = ["end"], command = "cursor_move_end" },
|
||||
{keys = [ "arrow_up" ], command = "cursor_move_up"},
|
||||
{keys = [ "arrow_down" ], command = "cursor_move_down"},
|
||||
{keys = [ "home" ], command = "cursor_move_home"},
|
||||
{keys = [ "end" ], command = "cursor_move_end"},
|
||||
|
||||
# vim-like keybindings
|
||||
{ keys = ["j"], command = "cursor_move_down" },
|
||||
{ keys = ["k"], command = "cursor_move_up" },
|
||||
{ keys = ["g", "g"], command = "cursor_move_home" },
|
||||
{ keys = ["G"], command = "cursor_move_end" },
|
||||
{keys = [ "j" ], command = "cursor_move_down"},
|
||||
{keys = [ "k" ], command = "cursor_move_up"},
|
||||
{keys = [ "g", "g" ], command = "cursor_move_home"},
|
||||
{keys = [ "G" ], command = "cursor_move_end"},
|
||||
|
||||
{ keys = ["w"], command = "show_tasks" },
|
||||
{ keys = ["escape"], command = "show_tasks" },
|
||||
{keys = [ "w" ], command = "show_tasks"},
|
||||
{keys = [ "escape" ], command = "show_tasks"},
|
||||
]
|
||||
|
||||
[help_view]
|
||||
|
||||
keymap = [
|
||||
# arrow keys
|
||||
{ keys = ["arrow_up"], command = "cursor_move_up" },
|
||||
{ keys = ["arrow_down"], command = "cursor_move_down" },
|
||||
{ keys = ["home"], command = "cursor_move_home" },
|
||||
{ keys = ["end"], command = "cursor_move_end" },
|
||||
{keys = [ "arrow_up" ], command = "cursor_move_up"},
|
||||
{keys = [ "arrow_down" ], command = "cursor_move_down"},
|
||||
{keys = [ "home" ], command = "cursor_move_home"},
|
||||
{keys = [ "end" ], command = "cursor_move_end"},
|
||||
|
||||
# vim-like keybindings
|
||||
{ keys = ["j"], command = "cursor_move_down" },
|
||||
{ keys = ["k"], command = "cursor_move_up" },
|
||||
{ keys = ["g", "g"], command = "cursor_move_home" },
|
||||
{ keys = ["G"], command = "cursor_move_end" },
|
||||
{keys = [ "j" ], command = "cursor_move_down"},
|
||||
{keys = [ "k" ], command = "cursor_move_up"},
|
||||
{keys = [ "g", "g" ], command = "cursor_move_home"},
|
||||
{keys = [ "G" ], command = "cursor_move_end"},
|
||||
|
||||
{ keys = ["w"], command = "show_tasks" },
|
||||
{ keys = ["escape"], command = "show_tasks" },
|
||||
{keys = [ "w" ], command = "show_tasks"},
|
||||
{keys = [ "escape" ], command = "show_tasks"},
|
||||
]
|
||||
|
||||
@@ -1,47 +1,47 @@
|
||||
[class]
|
||||
audio_default = [
|
||||
{ command = "mpv", args = [
|
||||
{command = "mpv", args = [
|
||||
"--",
|
||||
] },
|
||||
{ command = "mediainfo", confirm_exit = true },
|
||||
]},
|
||||
{command = "mediainfo", confirm_exit = true},
|
||||
]
|
||||
|
||||
image_default = [
|
||||
{ command = "qimgv", args = [
|
||||
{command = "qimgv", args = [
|
||||
"--",
|
||||
], fork = true, silent = true },
|
||||
{ command = "krita", args = [
|
||||
], fork = true, silent = true},
|
||||
{command = "krita", args = [
|
||||
"--",
|
||||
], fork = true, silent = true },
|
||||
{ command = "exiftool", confirm_exit = true },
|
||||
{ command = "swappy", args = [
|
||||
], fork = true, silent = true},
|
||||
{command = "exiftool", confirm_exit = true},
|
||||
{command = "swappy", args = [
|
||||
"-f",
|
||||
], fork = true },
|
||||
], fork = true},
|
||||
]
|
||||
|
||||
video_default = [
|
||||
{ command = "mpv", args = [
|
||||
{command = "mpv", args = [
|
||||
"--",
|
||||
], fork = true, silent = true },
|
||||
{ command = "mediainfo", confirm_exit = true },
|
||||
{ command = "mpv", args = [
|
||||
], fork = true, silent = true},
|
||||
{command = "mediainfo", confirm_exit = true},
|
||||
{command = "mpv", args = [
|
||||
"--mute",
|
||||
"on",
|
||||
"--",
|
||||
], fork = true, silent = true },
|
||||
], fork = true, silent = true},
|
||||
]
|
||||
|
||||
text_default = [
|
||||
{ command = "micro" },
|
||||
{ command = "gedit", fork = true, silent = true },
|
||||
{ command = "bat", args = [
|
||||
{command = "micro"},
|
||||
{command = "gedit", fork = true, silent = true},
|
||||
{command = "bat", args = [
|
||||
"--paging=always",
|
||||
] },
|
||||
]},
|
||||
]
|
||||
|
||||
reader_default = [{ command = "evince", fork = true, silent = true }]
|
||||
reader_default = [ {command = "evince", fork = true, silent = true} ]
|
||||
|
||||
libreoffice_default = [{ command = "libreoffice", fork = true, silent = true }]
|
||||
libreoffice_default = [ {command = "libreoffice", fork = true, silent = true} ]
|
||||
|
||||
[extension]
|
||||
|
||||
@@ -59,12 +59,12 @@ ppm.inherit = "image_default"
|
||||
webp.inherit = "image_default"
|
||||
|
||||
svg.app_list = [
|
||||
{ command = "inkview", fork = true, silent = true },
|
||||
{ command = "inkscape", fork = true, silent = true },
|
||||
{command = "inkview", fork = true, silent = true},
|
||||
{command = "inkscape", fork = true, silent = true},
|
||||
]
|
||||
tiff.app_list = [
|
||||
{ command = "qimgv", fork = true, silent = true },
|
||||
{ command = "krita", fork = true, silent = true },
|
||||
{command = "qimgv", fork = true, silent = true},
|
||||
{command = "krita", fork = true, silent = true},
|
||||
]
|
||||
|
||||
## audio formats
|
||||
@@ -132,60 +132,60 @@ yml.inherit = "text_default"
|
||||
|
||||
# archive formats
|
||||
7z.app_list = [
|
||||
{ command = "7z", args = [
|
||||
{command = "7z", args = [
|
||||
"x",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
bz2.app_list = [
|
||||
{ command = "tar", args = [
|
||||
{command = "tar", args = [
|
||||
"-xvjf",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
gz.app_list = [
|
||||
{ command = "tar", args = [
|
||||
{command = "tar", args = [
|
||||
"-xvzf",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
tar.app_list = [
|
||||
{ command = "tar", args = [
|
||||
{command = "tar", args = [
|
||||
"-xvf",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
tgz.app_list = [
|
||||
{ command = "tar", args = [
|
||||
{command = "tar", args = [
|
||||
"-xvzf",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
rar.app_list = [
|
||||
{ command = "unrar", args = [
|
||||
{command = "unrar", args = [
|
||||
"x",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
xz.app_list = [
|
||||
{ command = "tar", args = [
|
||||
{command = "tar", args = [
|
||||
"-xvJf",
|
||||
], confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
], confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
zip.app_list = [
|
||||
{ command = "unzip", confirm_exit = true },
|
||||
{ command = "file-roller", fork = true, silent = true },
|
||||
{command = "unzip", confirm_exit = true},
|
||||
{command = "file-roller", fork = true, silent = true},
|
||||
]
|
||||
|
||||
# misc formats
|
||||
aup.app_list = [{ command = "audacity", fork = true, silent = true }]
|
||||
aup.app_list = [ {command = "audacity", fork = true, silent = true} ]
|
||||
|
||||
m3u.app_list = [
|
||||
{ command = "micro" },
|
||||
{ command = "mpv" },
|
||||
{ command = "gedit", fork = true, silent = true },
|
||||
{ command = "bat", confirm_exit = true },
|
||||
{command = "micro"},
|
||||
{command = "mpv"},
|
||||
{command = "gedit", fork = true, silent = true},
|
||||
{command = "bat", confirm_exit = true},
|
||||
]
|
||||
|
||||
odt.inherit = "libreoffice_default"
|
||||
@@ -202,17 +202,17 @@ pptx.inherit = "libreoffice_default"
|
||||
|
||||
pdf.inherit = "reader_default"
|
||||
|
||||
kra.app_list = [{ command = "krita", fork = true, silent = true }]
|
||||
kdenlive.app_list = [{ command = "kdenlive", fork = true, silent = true }]
|
||||
kra.app_list = [ {command = "krita", fork = true, silent = true} ]
|
||||
kdenlive.app_list = [ {command = "kdenlive", fork = true, silent = true} ]
|
||||
|
||||
tex.app_list = [
|
||||
{ command = "micro" },
|
||||
{ command = "gedit", fork = true, silent = true },
|
||||
{ command = "bat", confirm_exit = true },
|
||||
{ command = "pdflatex" },
|
||||
{command = "micro"},
|
||||
{command = "gedit", fork = true, silent = true},
|
||||
{command = "bat", confirm_exit = true},
|
||||
{command = "pdflatex"},
|
||||
]
|
||||
|
||||
torrent.app_list = [{ command = "transmission-gtk" }]
|
||||
torrent.app_list = [ {command = "transmission-gtk"} ]
|
||||
|
||||
[mimetype]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user