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
+15 -13
View File
@@ -208,9 +208,9 @@ The Nix flake definition for Droidnix.
}
#+END_SRC
** =generated/modules/traveldroid/system/colors.nix=
** =generated/modules/traveldroid/system/Colors.nix=
Setting the colors for Droidnix.
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/colors.nix :noweb yes :mkdirp yes :eval never
#+BEGIN_SRC nix :tangle generated/modules/traveldroid/system/Colors.nix :noweb yes :mkdirp yes :eval never
{ lib, config, pkgs, flakeRoot, ... }:
let
colors = {
@@ -252,6 +252,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 {
@@ -266,7 +267,7 @@ in
{
home-manager.users.${username} = {
home.file = {
".config/shared/colors.css" = {
".config/shared/Colors.css" = {
text = cssContent;
force = true;
};
@@ -2641,6 +2642,7 @@ workspace = 10
This sets up the zsh in the terminal
#+BEGIN_SRC qml :tangle generated/.config/quickshell/powermenu/shell.qml :noweb yes :mkdirp yes :eval never
// PowerMenu.qml
import "../"
import Quickshell
import Quickshell.Io
import QtQuick
@@ -2666,9 +2668,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
@@ -2683,7 +2685,7 @@ ShellRoot {
// Title
Text {
text: " Power Menu"
color: colors.teal
color: Colors.teal
font.pixelSize: 13
font.bold: true
Layout.bottomMargin: 8
@@ -2705,7 +2707,7 @@ ShellRoot {
Layout.fillWidth: true
height: 38
radius: 8
color: hovered ? colors.surface1 : "transparent"
color: hovered ? Colors.surface1 : "transparent"
property bool hovered: false
@@ -2715,7 +2717,7 @@ ShellRoot {
radius: parent.radius
color: "transparent"
border.width: item.hovered ? 2 : 0
border.color: colors.blue
border.color: Colors.blue
}
Text {
@@ -2723,7 +2725,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
}
@@ -2908,9 +2910,9 @@ echo "📦 Updating Flatpaks..."
flatpak update -y
#+END_SRC
** =generated/.config/shared/colors.css=
** =generated/.config/shared/Colors.css=
A file containing color variables
#+BEGIN_SRC css :tangle generated/.config/shared/colors.css :noweb yes :mkdirp yes :eval never
#+BEGIN_SRC css :tangle generated/.config/shared/Colors.css :noweb yes :mkdirp yes :eval never
/* Catppuccin Mocha Palette */
@define-color crust #11111b;
@define-color mantle #181825;
@@ -3613,7 +3615,7 @@ These are config files for waybar
** =generated/.config/waybar/style-dark.css=
This file contains all css for waybar
#+BEGIN_SRC css :tangle generated/.config/waybar/style-dark.css :noweb yes :mkdirp yes :eval never
@import url("file:///home/henrov/.config/shared/colors.css");
@import url("file:///home/henrov/.config/shared/Colors.css");
/* --- Global --- */
* {
@@ -4003,7 +4005,7 @@ prompt = > ...
** =generated/.config/wofi/style.css=
These are config files for .config/wofi
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
@import url("file:///home/henrov/.config/shared/colors.css");
@import url("file:///home/henrov/.config/shared/Colors.css");
/* Global styles */
* {