From 0556a8fad857878f6b0d4aec6743def58b8054b1 Mon Sep 17 00:00:00 2001 From: Dennis Date: Thu, 8 Jan 2026 22:48:10 +0100 Subject: [PATCH] adds default layout --- modules/zellij/config.kdl | 1 - modules/zellij/layouts/default.kdl | 66 ++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+), 1 deletion(-) create mode 100644 modules/zellij/layouts/default.kdl diff --git a/modules/zellij/config.kdl b/modules/zellij/config.kdl index d0fc9fc..ce33a85 100644 --- a/modules/zellij/config.kdl +++ b/modules/zellij/config.kdl @@ -303,7 +303,6 @@ plugins { load_plugins { } -simplified_ui false default_mode "locked" default_shell "fish" pane_frames true diff --git a/modules/zellij/layouts/default.kdl b/modules/zellij/layouts/default.kdl new file mode 100644 index 0000000..cbd91d4 --- /dev/null +++ b/modules/zellij/layouts/default.kdl @@ -0,0 +1,66 @@ +layout { + default_tab_template { + children + pane size=1 borderless=false { + plugin location="https://github.com/dj95/zjstatus/releases/latest/download/zjstatus.wasm" { + color_fg "#ffffff" + color_fg_alt "#bf8a9f" + color_fg_dim "#807c9f" + color_bg "#0f0b15" + color_bg_secondary "#1d202f" + color_grey "#807c9f" + color_grey_bright "#807c9f" + color_red "#f47359" + color_red_bright "#ff6a7a" + color_red_subtle_bg "#67182f" + color_green "#29a444" + color_green_bright "#00a392" + color_green_subtle_bg "#10452f" + color_yellow "#b58a52" + color_yellow_bright "#df9080" + color_yellow_brighter "#FCC1B6" + color_yellow_subtle_bg "#54362a" + color_blue "#3f95f6" + color_blue_bright "#029fff" + color_blue_subtle_bg "#2a346e" + color_blue_subtle_dark_bg "#003045" + color_magenta "#d369af" + color_magenta_bright "#af85ea" + color_magenta_brighter "#c57faf" + color_magenta_subtle_bg "#572454" + color_magenta_subtle_bg_darker "#331531" + color_cyan "#4fbaef" + color_cyan_bright "#35afbf" + color_cyan_subtle_bg "#133d56" + color_silver "#b8c6d5" + color_silver_bright "#ffffff" + + format_left "{tabs}" + + tab_active "#[fg=$bg,bg=$magenta_bright] {index} :: {name} {floating_indicator} " + + border_enabled "false" + border_char "─" + border_format "#[fg=#6C7086]{char}" + border_position "top" + + hide_frame_for_single_pane "true" + + mode_normal "#[bg=blue] " + mode_tmux "#[bg=#ffc387] " + + tab_normal "#[fg=#6C7086] {name} " + tab_active "#[fg=#9399B2,bold,italic] {name} " + + command_git_branch_command "git rev-parse --abbrev-ref HEAD" + command_git_branch_format "#[fg=blue] {stdout} " + command_git_branch_interval "10" + command_git_branch_rendermode "static" + + datetime "#[fg=#6C7086,bold] {format} " + datetime_format "%A, %d %b %Y %H:%M" + datetime_timezone "Europe/Berlin" + } + } + } +}