Created
May 16, 2025 00:11
-
-
Save LGUG2Z/055a1ee4cf0037de7462120e5750bb2c to your computer and use it in GitHub Desktop.
Deriving colorschemes from wallpaper
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/refs/heads/master/schema.json", | |
"app_specific_configuration_path": "$Env:KOMOREBI_CONFIG_HOME/applications.json", // MAKE SURE YOU DON'T COPY THIS PART BLINDLY | |
"window_hiding_behaviour": "Cloak", | |
"cross_monitor_move_behaviour": "Insert", | |
"cross_boundary_behaviour": "Monitor", | |
"default_workspace_padding": 14, | |
"default_container_padding": 14, | |
"resize_delta": 200, | |
"floating_window_aspect_ratio": "Widescreen", | |
"floating_layer_behaviour": "Float", | |
"stackbar": { | |
"mode": "Never" | |
}, | |
"animation": { | |
"enabled": true, | |
"duration": 250, | |
"fps": 120, // CHANGE THIS TO THE REFRESH RATE OF YOUR MONITOR | |
"style": "EaseOutSine" | |
}, | |
"border": true, | |
"border_implementation": "Komorebi", | |
"border_width": 10, | |
"border_offset": -1, | |
"border_style": "System", | |
"transparency": false, | |
"transparency_alpha": 240, | |
"monitors": [ | |
{ | |
"window_based_work_area_offset_limit": 1, | |
"window_based_work_area_offset": { | |
"left": 750, | |
"top": 0, | |
"right": 1500, | |
"bottom": 0 | |
}, | |
"wallpaper": { | |
// REPLACE THIS WITH A PATH TO THE WALLPAPER YOU WANT FOR EACH WORKSPACE | |
"path": "C:/Users/LGUG2Z/Downloads/Wallpaper drop [5120x2160] [01_25]/Sun [5120x2160].png", | |
"theme_options": { | |
// you can override elements with theme palette references here | |
"unfocused_border": "Base02", | |
"monocle_border": "Base07", | |
"unfocused_locked_border": "Base0E" | |
} | |
}, | |
"workspaces": [ | |
{ | |
"name": "personal", | |
"layout": "UltrawideVerticalStack" | |
} | |
// add other workspaces here if you need | |
] | |
} | |
// add other monitors here if you need | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment