Regenerated
This commit is contained in:
+339
-337
File diff suppressed because it is too large
Load Diff
+15
-13
@@ -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 */
|
||||
* {
|
||||
|
||||
@@ -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,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 */
|
||||
* {
|
||||
|
||||
+2
-1
@@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user