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
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/modules/traveldroid/system/colors.nix=
|
** =generated/modules/traveldroid/system/Colors.nix=
|
||||||
Setting the colors for Droidnix.
|
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, ... }:
|
{ lib, config, pkgs, flakeRoot, ... }:
|
||||||
let
|
let
|
||||||
colors = {
|
colors = {
|
||||||
@@ -252,6 +252,7 @@ let
|
|||||||
) + "\n@define-color base-alpha rgba(30, 30, 46, 0.9);";
|
) + "\n@define-color base-alpha rgba(30, 30, 46, 0.9);";
|
||||||
|
|
||||||
qmlContent = ''
|
qmlContent = ''
|
||||||
|
pragma Singleton
|
||||||
// Catppuccin Mocha Palette - auto-generated, do not edit manually
|
// Catppuccin Mocha Palette - auto-generated, do not edit manually
|
||||||
import QtQuick
|
import QtQuick
|
||||||
QtObject {
|
QtObject {
|
||||||
@@ -266,7 +267,7 @@ in
|
|||||||
{
|
{
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/shared/colors.css" = {
|
".config/shared/Colors.css" = {
|
||||||
text = cssContent;
|
text = cssContent;
|
||||||
force = true;
|
force = true;
|
||||||
};
|
};
|
||||||
@@ -2641,6 +2642,7 @@ workspace = 10
|
|||||||
This sets up the zsh in the terminal
|
This sets up the zsh in the terminal
|
||||||
#+BEGIN_SRC qml :tangle generated/.config/quickshell/powermenu/shell.qml :noweb yes :mkdirp yes :eval never
|
#+BEGIN_SRC qml :tangle generated/.config/quickshell/powermenu/shell.qml :noweb yes :mkdirp yes :eval never
|
||||||
// PowerMenu.qml
|
// PowerMenu.qml
|
||||||
|
import "../"
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
import QtQuick
|
import QtQuick
|
||||||
@@ -2666,9 +2668,9 @@ ShellRoot {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
radius: 16
|
radius: 16
|
||||||
color: colors.base
|
color: Colors.base
|
||||||
border.width: 2
|
border.width: 2
|
||||||
border.color: colors.blue
|
border.color: Colors.blue
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: contentLayout
|
id: contentLayout
|
||||||
@@ -2683,7 +2685,7 @@ ShellRoot {
|
|||||||
// Title
|
// Title
|
||||||
Text {
|
Text {
|
||||||
text: " Power Menu"
|
text: " Power Menu"
|
||||||
color: colors.teal
|
color: Colors.teal
|
||||||
font.pixelSize: 13
|
font.pixelSize: 13
|
||||||
font.bold: true
|
font.bold: true
|
||||||
Layout.bottomMargin: 8
|
Layout.bottomMargin: 8
|
||||||
@@ -2705,7 +2707,7 @@ ShellRoot {
|
|||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: 38
|
height: 38
|
||||||
radius: 8
|
radius: 8
|
||||||
color: hovered ? colors.surface1 : "transparent"
|
color: hovered ? Colors.surface1 : "transparent"
|
||||||
|
|
||||||
property bool hovered: false
|
property bool hovered: false
|
||||||
|
|
||||||
@@ -2715,7 +2717,7 @@ ShellRoot {
|
|||||||
radius: parent.radius
|
radius: parent.radius
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
border.width: item.hovered ? 2 : 0
|
border.width: item.hovered ? 2 : 0
|
||||||
border.color: colors.blue
|
border.color: Colors.blue
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
@@ -2723,7 +2725,7 @@ ShellRoot {
|
|||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: 12
|
anchors.leftMargin: 12
|
||||||
text: modelData.label
|
text: modelData.label
|
||||||
color: item.hovered ? colors.text : colors.subtext1
|
color: item.hovered ? Colors.text : Colors.subtext1
|
||||||
font.pixelSize: 13
|
font.pixelSize: 13
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2908,9 +2910,9 @@ echo "📦 Updating Flatpaks..."
|
|||||||
flatpak update -y
|
flatpak update -y
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
** =generated/.config/shared/colors.css=
|
** =generated/.config/shared/Colors.css=
|
||||||
A file containing color variables
|
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 */
|
/* Catppuccin Mocha Palette */
|
||||||
@define-color crust #11111b;
|
@define-color crust #11111b;
|
||||||
@define-color mantle #181825;
|
@define-color mantle #181825;
|
||||||
@@ -3613,7 +3615,7 @@ These are config files for waybar
|
|||||||
** =generated/.config/waybar/style-dark.css=
|
** =generated/.config/waybar/style-dark.css=
|
||||||
This file contains all css for waybar
|
This file contains all css for waybar
|
||||||
#+BEGIN_SRC css :tangle generated/.config/waybar/style-dark.css :noweb yes :mkdirp yes :eval never
|
#+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 --- */
|
/* --- Global --- */
|
||||||
* {
|
* {
|
||||||
@@ -4003,7 +4005,7 @@ prompt = > ...
|
|||||||
** =generated/.config/wofi/style.css=
|
** =generated/.config/wofi/style.css=
|
||||||
These are config files for .config/wofi
|
These are config files for .config/wofi
|
||||||
#+BEGIN_SRC css :tangle generated/.config/wofi/style.css :noweb yes :mkdirp yes :eval never
|
#+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 */
|
/* 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. ---
|
// --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. ---
|
||||||
// PowerMenu.qml
|
// PowerMenu.qml
|
||||||
|
import "../"
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
import QtQuick
|
import QtQuick
|
||||||
@@ -25,9 +26,9 @@ ShellRoot {
|
|||||||
Rectangle {
|
Rectangle {
|
||||||
anchors.fill: parent
|
anchors.fill: parent
|
||||||
radius: 16
|
radius: 16
|
||||||
color: colors.base
|
color: Colors.base
|
||||||
border.width: 2
|
border.width: 2
|
||||||
border.color: colors.blue
|
border.color: Colors.blue
|
||||||
|
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
id: contentLayout
|
id: contentLayout
|
||||||
@@ -42,7 +43,7 @@ ShellRoot {
|
|||||||
// Title
|
// Title
|
||||||
Text {
|
Text {
|
||||||
text: " Power Menu"
|
text: " Power Menu"
|
||||||
color: colors.teal
|
color: Colors.teal
|
||||||
font.pixelSize: 13
|
font.pixelSize: 13
|
||||||
font.bold: true
|
font.bold: true
|
||||||
Layout.bottomMargin: 8
|
Layout.bottomMargin: 8
|
||||||
@@ -64,7 +65,7 @@ ShellRoot {
|
|||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
height: 38
|
height: 38
|
||||||
radius: 8
|
radius: 8
|
||||||
color: hovered ? colors.surface1 : "transparent"
|
color: hovered ? Colors.surface1 : "transparent"
|
||||||
|
|
||||||
property bool hovered: false
|
property bool hovered: false
|
||||||
|
|
||||||
@@ -74,7 +75,7 @@ ShellRoot {
|
|||||||
radius: parent.radius
|
radius: parent.radius
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
border.width: item.hovered ? 2 : 0
|
border.width: item.hovered ? 2 : 0
|
||||||
border.color: colors.blue
|
border.color: Colors.blue
|
||||||
}
|
}
|
||||||
|
|
||||||
Text {
|
Text {
|
||||||
@@ -82,7 +83,7 @@ ShellRoot {
|
|||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: 12
|
anchors.leftMargin: 12
|
||||||
text: modelData.label
|
text: modelData.label
|
||||||
color: item.hovered ? colors.text : colors.subtext1
|
color: item.hovered ? Colors.text : Colors.subtext1
|
||||||
font.pixelSize: 13
|
font.pixelSize: 13
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
/* --- 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 --- */
|
/* --- Global --- */
|
||||||
* {
|
* {
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
/* --- This file has been auto-generated. For permanent changes alter the appropriate block in the README.org. --- */
|
/* --- 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 */
|
/* Global styles */
|
||||||
* {
|
* {
|
||||||
|
|||||||
+2
-1
@@ -40,6 +40,7 @@ let
|
|||||||
) + "\n@define-color base-alpha rgba(30, 30, 46, 0.9);";
|
) + "\n@define-color base-alpha rgba(30, 30, 46, 0.9);";
|
||||||
|
|
||||||
qmlContent = ''
|
qmlContent = ''
|
||||||
|
pragma Singleton
|
||||||
// Catppuccin Mocha Palette - auto-generated, do not edit manually
|
// Catppuccin Mocha Palette - auto-generated, do not edit manually
|
||||||
import QtQuick
|
import QtQuick
|
||||||
QtObject {
|
QtObject {
|
||||||
@@ -54,7 +55,7 @@ in
|
|||||||
{
|
{
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
home.file = {
|
home.file = {
|
||||||
".config/shared/colors.css" = {
|
".config/shared/Colors.css" = {
|
||||||
text = cssContent;
|
text = cssContent;
|
||||||
force = true;
|
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