From 5317d24bf03f056861017f09482334d7f47a6cb9 Mon Sep 17 00:00:00 2001 From: Joey Hafner Date: Sat, 22 Jun 2024 13:29:21 -0700 Subject: [PATCH] Init KZones layouts configuration file --- dotfiles_gitea/config/kzones/layouts.json | 86 +++++++++++++++++++++++ 1 file changed, 86 insertions(+) create mode 100644 dotfiles_gitea/config/kzones/layouts.json diff --git a/dotfiles_gitea/config/kzones/layouts.json b/dotfiles_gitea/config/kzones/layouts.json new file mode 100644 index 00000000..6c537f2a --- /dev/null +++ b/dotfiles_gitea/config/kzones/layouts.json @@ -0,0 +1,86 @@ +[ + { + "name": "Left Display", + "padding": 10, + "zones": [ + { + "x": 50, + "y": 0, + "height": 100, + "width": 50 + }, + { + "x": 0, + "y": 0, + "height": 50, + "width": 50 + }, + { + "x": 0, + "y": 50, + "height": 50, + "width": 50 + } + ] + }, + { + "name": "Middle Display", + "padding": 10, + "zones": [ + { + "x": 0, + "y": 0, + "height": 100, + "width": 50 + }, + { + "x": 50, + "y": 0, + "height": 100, + "width": 50 + } + ] + }, + { + "name": "Right Display", + "padding": 10, + "zones": [ + { + "x": 0, + "y": 55, + "height": 45, + "width": 50 + }, + { + "x": 0, + "y": 0, + "height": 55, + "width": 50 + }, + { + "x": 50, + "y": 0, + "height": 45, + "width": 50 + }, + { + "x": 50, + "y": 45, + "height": 55, + "width": 50 + } + ] + }, + { + "name": "Fullscreen", + "padding": 10, + "zones": [ + { + "x": 0, + "y": 0, + "height": 100, + "width": 100 + } + ] + } +] \ No newline at end of file