From e60e79e1dbb5198b8294b0efa630f9996f316a1b Mon Sep 17 00:00:00 2001 From: bullshar-k <273740932+bullshar-k@users.noreply.github.com> Date: Sun, 31 May 2026 16:16:21 -0400 Subject: [PATCH] commit --- mango/config.conf => config.conf | 0 mango/config.jsonc | 90 -------------------------- mango/style.css | 104 ------------------------------- 3 files changed, 194 deletions(-) rename mango/config.conf => config.conf (100%) delete mode 100644 mango/config.jsonc delete mode 100644 mango/style.css diff --git a/mango/config.conf b/config.conf similarity index 100% rename from mango/config.conf rename to config.conf diff --git a/mango/config.jsonc b/mango/config.jsonc deleted file mode 100644 index 765a381..0000000 --- a/mango/config.jsonc +++ /dev/null @@ -1,90 +0,0 @@ -//-*- mode: jsonc -*- -{ - "layer": "top", - "position": "top", - "height": 30, - "spacing": 4, - - // Choose the order of the modules - "modules-left": [ - "ext/workspaces", - "custom/sep", - "ext/window", - "custom/sep" - ], - "modules-center": [ - ], - - "modules-right": [ - "custom/sep", - "network", - "custom/sep", - "cpu", - "custom/sep", - "memory", - "custom/sep", - "disk", - "custom/sep", - "clock", - "custom/sep", - "tray" - ], - - // Modules configuration - "ext/workspaces": { - "disable-scroll": true, - "all-outputs": true, - "warp-on-scroll": false, - "format": "{name}", - "persistent-workspaces": { - "*" : 9 - } - }, - "ext/window" : { - "max-length": 40, - "seperate-outputs": false - }, - "tray": { - // "icon-size": 21, - "spacing": 10 - // "icons": { - // "blueman": "bluetooth", - // "TelegramDesktop": "$HOME/.local/share/icons/hicolor/16x16/apps/telegram.png" - // } - }, - "clock": { - "format-alt": "{:%Y-%m-%d}" - }, - "cpu": { - "format": "CPU: {usage}%", - "tooltip": false - }, - "memory": { - "format": "Mem: {used}GiB" - }, - "disk": { - "interval": 60, - "path": "/", - "format": "Disk: {free}" - }, - "battery": { - "states": { - "good": 95, - "warning": 30, - "critical": 15 - }, - "format": "Bat: {capacity}% {icon} {time}", - "format-plugged": "{capacity}% ", - "format-alt": "Bat {capacity}%", - "format-time": "{H}:{M}", - "format-icons": ["", "", "", "", ""] - }, - "network": { - "format": "Online", - "format-disconnected": "Disconnected ⚠" - }, - "custom/sep": { - "format" : "|", - "interval" : 0 - } -} diff --git a/mango/style.css b/mango/style.css deleted file mode 100644 index 77a1a37..0000000 --- a/mango/style.css +++ /dev/null @@ -1,104 +0,0 @@ -@define-color bg #1a1b26; -@define-color fg #a9b1d6; -@define-color blk #32344a; -@define-color red #f7768e; -@define-color grn #9ece6a; -@define-color ylw #e0af68; -@define-color blu #7aa2f7; -@define-color mag #ad8ee6; -@define-color cyn #0db9d7; -@define-color brblk #444b6a; -@define-color white #ffffff; - -* { - font-family: "JetBrainsMono Nerd Font", monospace; - font-size: 16px; - font-weight: bold; -} - -window#waybar { - background-color: @bg; - color: @fg; -} - -#workspaces button { - padding: 0 6px; - color: @cyn; - background: transparent; - border-bottom: 3px solid @bg; -} -#workspaces button.active { - color: @cyn; - border-bottom: 3px solid @mag; -} -#workspaces button.empty { - color: @white; -} -#workspaces button.empty.active { - color: @cyn; - border-bottom: 3px solid @mag; -} - -#workspaces button.urgent { - background-color: @red; -} - -button:hover { - background: inherit; - box-shadow: inset 0 -3px #ffffff; -} - -#clock, -#custom-sep, -#battery, -#cpu, -#memory, -#disk, -#network, -#tray { - padding: 0 8px; - color: @white; -} - -#custom-sep { - color: @brblk; -} - -#clock { - color: @cyn; - border-bottom: 4px solid @cyn; -} - -#battery { - color: @mag; - border-bottom: 4px solid @mag; -} - -#disk { - color: @ylw; - border-bottom: 4px solid @ylw; -} - -#memory { - color: @mag; - border-bottom: 4px solid @mag; -} - -#cpu { - color: @grn; - border-bottom: 4px solid @grn; -} - -#network { - color: @blu; - border-bottom: 4px solid @blu; -} - -#network.disconnected { - background-color: @red; -} - -#tray { - background-color: #2980b9; -} -