Regenerated

This commit is contained in:
2026-04-11 20:23:36 +02:00
parent 9de9043fa9
commit 0686427abe
10 changed files with 365 additions and 438 deletions
@@ -1,41 +0,0 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
# Hyprland Catppuccin Mocha Theme (solid colors)
# Colors
$base = #1e1e2e
$mantle = #181825
$surface0 = #313244
$surface1 = #45475a
$surface2 = #585b70
$text = #cdd6f4
$rosewater = #f5e0dc
$lavender = #b4befe
$red = #f38ba8
$peach = #fab387
$yellow = #f9e2af
$green = #a6e3a1
$teal = #94e2d5
$blue = #89b4fa
$mauve = #cba6f7
$flamingo = #f2cdcd
$inactive = #595959aa
# General theming
general {
gaps_in = 2
gaps_out = 4
border_size = 4
layout = scrolling
resize_on_border = true
extend_border_grab_area = 20
# Solid-color borders
#col.active_border = "0xff89b4fa 0xffa6e3a1"
#col.active_border = #a6e3a1
#col.inactive_border = #595959aa
}
# Window decorations
decoration {
rounding = 8
}
@@ -1,5 +1,6 @@
// --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
// PowerMenu.qml
import "../"
import Quickshell
import Quickshell.Io
import QtQuick
@@ -25,9 +26,9 @@ ShellRoot {
Rectangle {
anchors.fill: parent
radius: 16
color: colors.base
color: Colors.base
border.width: 2
border.color: colors.blue
border.color: Colors.blue
ColumnLayout {
id: contentLayout
@@ -42,7 +43,7 @@ ShellRoot {
// Title
Text {
text: " Power Menu"
color: colors.teal
color: Colors.teal
font.pixelSize: 13
font.bold: true
Layout.bottomMargin: 8
@@ -64,7 +65,7 @@ ShellRoot {
Layout.fillWidth: true
height: 38
radius: 8
color: hovered ? colors.surface1 : "transparent"
color: hovered ? Colors.surface1 : "transparent"
property bool hovered: false
@@ -74,7 +75,7 @@ ShellRoot {
radius: parent.radius
color: "transparent"
border.width: item.hovered ? 2 : 0
border.color: colors.blue
border.color: Colors.blue
}
Text {
@@ -82,7 +83,7 @@ ShellRoot {
anchors.left: parent.left
anchors.leftMargin: 12
text: modelData.label
color: item.hovered ? colors.text : colors.subtext1
color: item.hovered ? Colors.text : Colors.subtext1
font.pixelSize: 13
}
@@ -1,5 +1,5 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
@import url("file:///home/henrov/.config/shared/colors.css");
@import url("file:///home/henrov/.config/shared/Colors.css");
/* --- Global --- */
* {
+1 -1
View File
@@ -1,5 +1,5 @@
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
@import url("file:///home/henrov/.config/shared/colors.css");
@import url("file:///home/henrov/.config/shared/Colors.css");
/* Global styles */
* {
@@ -40,6 +40,7 @@ let
) + "\n@define-color base-alpha rgba(30, 30, 46, 0.9);";
qmlContent = ''
pragma Singleton
// Catppuccin Mocha Palette - auto-generated, do not edit manually
import QtQuick
QtObject {
@@ -54,7 +55,7 @@ in
{
home-manager.users.${username} = {
home.file = {
".config/shared/colors.css" = {
".config/shared/Colors.css" = {
text = cssContent;
force = true;
};
@@ -1,17 +0,0 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, pkgs, flakeRoot, ... }:
let
username = "henrov"; # Replace with your username if needed
in
{
home-manager.users = {
${username} = {
home.file = {
".config/shared/colors.css" = {
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css";
force = true;
};
};
};
};
}
@@ -1,21 +0,0 @@
# --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
{ config, pkgs, flakeRoot, ... }:
let
username = "henrov"; # Replace with your username if needed
in
{
home-manager.users = {
${username} = {
home.file = {
".config/shared/colors.css" = {
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css";
force = true;
};
".config/quickshell/powermenu/colors.css" = {
text = builtins.readFile "${flakeRoot}/generated/.config/shared/colors.css";
force = true;
};
};
};
};
}