diff options
author | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2025-06-30 11:14:11 +0300 |
---|---|---|
committer | Yaroslav de la Peña Smirnov <yps@yaroslavps.com> | 2025-06-30 11:14:11 +0300 |
commit | f010f6c48f4641957848d891bdf041e9a6e41d32 (patch) | |
tree | f8988877911b843b55b33de37f87f96b61062c67 | |
parent | da336974fa994f6971402473460cd00def074fb4 (diff) | |
download | swayrice-f010f6c48f4641957848d891bdf041e9a6e41d32.tar.gz swayrice-f010f6c48f4641957848d891bdf041e9a6e41d32.zip |
Oculante configniri
It seems like this is the only fast more or less minimallistic image
viewer (not editor) that can display RAWs, or rather the embedded JPEG,
but that's what I wanted anyways.
-rw-r--r-- | dotfiles/.local/share/oculante/config.json | 154 |
1 files changed, 154 insertions, 0 deletions
diff --git a/dotfiles/.local/share/oculante/config.json b/dotfiles/.local/share/oculante/config.json new file mode 100644 index 0000000..87bc4ca --- /dev/null +++ b/dotfiles/.local/share/oculante/config.json @@ -0,0 +1,154 @@ +{ + "accent_color": [ + 137, + 182, + 160 + ], + "background_color": [ + 0, + 0, + 0 + ], + "vsync": true, + "force_redraw": false, + "shortcuts": { + "AlwaysOnTop": [ + "T" + ], + "Fullscreen": [ + "F" + ], + "InfoMode": [ + "I" + ], + "EditMode": [ + "E" + ], + "NextImage": [ + "N" + ], + "FirstImage": [ + "Home" + ], + "LastImage": [ + "End" + ], + "PreviousImage": [ + "P" + ], + "RedChannel": [ + "R" + ], + "GreenChannel": [ + "G" + ], + "BlueChannel": [ + "B" + ], + "AlphaChannel": [ + "A" + ], + "RGBChannel": [ + "U" + ], + "RGBAChannel": [ + "C" + ], + "ResetView": [ + "V" + ], + "ZoomOut": [ + "Minus" + ], + "ZoomIn": [ + "Equals" + ], + "ZoomActualSize": [ + "Key1" + ], + "ZoomDouble": [ + "Key2" + ], + "ZoomThree": [ + "Key3" + ], + "ZoomFour": [ + "Key4" + ], + "ZoomFive": [ + "Key5" + ], + "CompareNext": [ + "C", + "LShift" + ], + "PanLeft": [ + "L" + ], + "PanRight": [ + "H" + ], + "PanUp": [ + "J" + ], + "PanDown": [ + "K" + ], + "DeleteFile": [ + "Delete" + ], + "ClearImage": [ + "Delete", + "LShift" + ], + "LosslessRotateRight": [ + "RBracket" + ], + "LosslessRotateLeft": [ + "LBracket" + ], + "Copy": [ + "C", + "LControl" + ], + "Paste": [ + "LControl", + "V" + ], + "Browse": [ + "LControl", + "O" + ], + "Quit": [ + "Q" + ], + "ZenMode": [ + "Z" + ] + }, + "keep_view": true, + "max_cache": 30, + "show_scrub_bar": true, + "wrap_folder": true, + "keep_edits": false, + "title_format": "{APP} | {VERSION} | {FULLPATH}", + "info_enabled": true, + "edit_enabled": false, + "show_checker_background": false, + "show_minimap": false, + "show_frame": false, + "svg_scale": 1.0, + "zen_mode": false, + "theme": "System", + "linear_mag_filter": false, + "linear_min_filter": true, + "use_mipmaps": true, + "fit_image_on_window_resize": true, + "zoom_multiplier": 1.0, + "borderless": false, + "min_window_size": [ + 100, + 100 + ], + "experimental_features": false +}
\ No newline at end of file |