Regenerated
This commit is contained in:
+404
-386
File diff suppressed because it is too large
Load Diff
+24
-6
@@ -4586,6 +4586,7 @@ These are config files for waybar
|
|||||||
,"tray"
|
,"tray"
|
||||||
,"clock"
|
,"clock"
|
||||||
,"idle_inhibitor"
|
,"idle_inhibitor"
|
||||||
|
,"custom/notifications"
|
||||||
],
|
],
|
||||||
|
|
||||||
/*******************************************************************/
|
/*******************************************************************/
|
||||||
@@ -4703,15 +4704,21 @@ These are config files for waybar
|
|||||||
"tooltip": true
|
"tooltip": true
|
||||||
},
|
},
|
||||||
|
|
||||||
"idle_inhibitor": {
|
"custom/notifications": {
|
||||||
"tooltip": true,
|
"tooltip": false,
|
||||||
|
"return-type": "json",
|
||||||
|
"exec-if": "which swaync-client",
|
||||||
|
"exec": "swaync-client -swb",
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
"activated": " ",
|
"notification": "",
|
||||||
"deactivated": " "
|
"none": "",
|
||||||
|
"dnd-notification": "",
|
||||||
|
"dnd-none": "",
|
||||||
},
|
},
|
||||||
"tooltip-format-activated": "Staying awake",
|
"on-click": "swaync-client -t",
|
||||||
"tooltip-format-deactivated": "Might sleep...."
|
"on-click-right": "swaync-client -d",
|
||||||
|
"on-click-middle": "swaync-client -dn",
|
||||||
},
|
},
|
||||||
|
|
||||||
"custom/power": {
|
"custom/power": {
|
||||||
@@ -4740,6 +4747,17 @@ These are config files for waybar
|
|||||||
"orientation": "horizontal"
|
"orientation": "horizontal"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"idle_inhibitor": {
|
||||||
|
"tooltip": true,
|
||||||
|
"format": "{icon}",
|
||||||
|
"format-icons": {
|
||||||
|
"activated": " ",
|
||||||
|
"deactivated": " "
|
||||||
|
},
|
||||||
|
"tooltip-format-activated": "Staying awake",
|
||||||
|
"tooltip-format-deactivated": "Might sleep...."
|
||||||
|
},
|
||||||
|
|
||||||
"network": {
|
"network": {
|
||||||
"format-wifi": " ({bandwidthDownBits})",
|
"format-wifi": " ({bandwidthDownBits})",
|
||||||
"format-ethernet": " ({bandwidthDownBits})",
|
"format-ethernet": " ({bandwidthDownBits})",
|
||||||
|
|||||||
@@ -1,67 +0,0 @@
|
|||||||
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
|
||||||
{ lib, config, pkgs, flakeRoot, ... }:
|
|
||||||
let
|
|
||||||
colors = {
|
|
||||||
crust = "#11111b";
|
|
||||||
mantle = "#181825";
|
|
||||||
base = "#1e1e2e";
|
|
||||||
surface0 = "#313244";
|
|
||||||
surface1 = "#45475a";
|
|
||||||
surface2 = "#585b70";
|
|
||||||
overlay0 = "#6c7086";
|
|
||||||
overlay1 = "#7f849c";
|
|
||||||
overlay2 = "#9399b2";
|
|
||||||
subtext0 = "#a6adc8";
|
|
||||||
subtext1 = "#bac2de";
|
|
||||||
text = "#cdd6f4";
|
|
||||||
rosewater = "#f5e0dc";
|
|
||||||
flamingo = "#f2cdcd";
|
|
||||||
pink = "#f5c2e7";
|
|
||||||
mauve = "#cba6f7";
|
|
||||||
red = "#f38ba8";
|
|
||||||
maroon = "#eba0ac";
|
|
||||||
peach = "#fab387";
|
|
||||||
yellow = "#f9e2af";
|
|
||||||
green = "#a6e3a1";
|
|
||||||
teal = "#94e2d5";
|
|
||||||
sapphire = "#74c7ec";
|
|
||||||
blue = "#89b4fa";
|
|
||||||
lavender = "#b4befe";
|
|
||||||
};
|
|
||||||
|
|
||||||
username = config.defaultUser or "henrov";
|
|
||||||
|
|
||||||
cssContent = ''
|
|
||||||
/* Catppuccin Mocha Palette - auto-generated, do not edit manually */
|
|
||||||
'' + lib.concatStringsSep "\n" (
|
|
||||||
lib.mapAttrsToList (name: value:
|
|
||||||
"@define-color ${name} ${value};"
|
|
||||||
) colors
|
|
||||||
) + "\n@define-color base-alpha rgba(30, 30, 46, 0.9);";
|
|
||||||
|
|
||||||
qmlContent = ''
|
|
||||||
// Catppuccin Mocha Palette - auto-generated, do not edit manually
|
|
||||||
import QtQuick
|
|
||||||
QtObject {
|
|
||||||
readonly property color baseAlpha: Qt.rgba(30/255, 30/255, 46/255, 0.9)
|
|
||||||
'' + lib.concatStringsSep "\n" (
|
|
||||||
lib.mapAttrsToList (name: value:
|
|
||||||
" readonly property color ${name}: \"${value}\""
|
|
||||||
) colors
|
|
||||||
) + "\n}";
|
|
||||||
|
|
||||||
in
|
|
||||||
{
|
|
||||||
home-manager.users.${username} = {
|
|
||||||
home.file = {
|
|
||||||
".config/shared/colors.css" = {
|
|
||||||
text = cssContent;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
".config/quickshell/Colors.qml" = {
|
|
||||||
text = qmlContent;
|
|
||||||
force = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -27,6 +27,7 @@
|
|||||||
,"tray"
|
,"tray"
|
||||||
,"clock"
|
,"clock"
|
||||||
,"idle_inhibitor"
|
,"idle_inhibitor"
|
||||||
|
,"custom/notifications"
|
||||||
],
|
],
|
||||||
|
|
||||||
/*******************************************************************/
|
/*******************************************************************/
|
||||||
@@ -144,15 +145,21 @@
|
|||||||
"tooltip": true
|
"tooltip": true
|
||||||
},
|
},
|
||||||
|
|
||||||
"idle_inhibitor": {
|
"custom/notifications": {
|
||||||
"tooltip": true,
|
"tooltip": false,
|
||||||
|
"return-type": "json",
|
||||||
|
"exec-if": "which swaync-client",
|
||||||
|
"exec": "swaync-client -swb",
|
||||||
"format": "{icon}",
|
"format": "{icon}",
|
||||||
"format-icons": {
|
"format-icons": {
|
||||||
"activated": " ",
|
"notification": "",
|
||||||
"deactivated": " "
|
"none": "",
|
||||||
|
"dnd-notification": "",
|
||||||
|
"dnd-none": "",
|
||||||
},
|
},
|
||||||
"tooltip-format-activated": "Staying awake",
|
"on-click": "swaync-client -t",
|
||||||
"tooltip-format-deactivated": "Might sleep...."
|
"on-click-right": "swaync-client -d",
|
||||||
|
"on-click-middle": "swaync-client -dn",
|
||||||
},
|
},
|
||||||
|
|
||||||
"custom/power": {
|
"custom/power": {
|
||||||
@@ -181,6 +188,17 @@
|
|||||||
"orientation": "horizontal"
|
"orientation": "horizontal"
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"idle_inhibitor": {
|
||||||
|
"tooltip": true,
|
||||||
|
"format": "{icon}",
|
||||||
|
"format-icons": {
|
||||||
|
"activated": " ",
|
||||||
|
"deactivated": " "
|
||||||
|
},
|
||||||
|
"tooltip-format-activated": "Staying awake",
|
||||||
|
"tooltip-format-deactivated": "Might sleep...."
|
||||||
|
},
|
||||||
|
|
||||||
"network": {
|
"network": {
|
||||||
"format-wifi": " ({bandwidthDownBits})",
|
"format-wifi": " ({bandwidthDownBits})",
|
||||||
"format-ethernet": " ({bandwidthDownBits})",
|
"format-ethernet": " ({bandwidthDownBits})",
|
||||||
|
|||||||
Reference in New Issue
Block a user