mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 13:54:38 -05:00
feat: added user2 and refactored to accommodate
This commit is contained in:
parent
c169f84dcc
commit
9cdcf4fec4
97 changed files with 1473 additions and 1052 deletions
12
home/modules/gui/desktop/catppuccin/default.nix
Normal file
12
home/modules/gui/desktop/catppuccin/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
home.packages = builtins.attrValues {
|
||||
inherit (pkgs)
|
||||
catppuccin
|
||||
catppuccin-gtk
|
||||
;
|
||||
};
|
||||
}
|
|
@ -2,18 +2,18 @@
|
|||
let
|
||||
|
||||
inherit (flake.config.aesthetics.themes)
|
||||
currentTheme
|
||||
currentThemes
|
||||
palettes
|
||||
font
|
||||
fonts
|
||||
;
|
||||
|
||||
el = palettes.${currentTheme}.colours;
|
||||
el = palettes.${currentThemes.theme0}.colours;
|
||||
|
||||
makeColor = c: "#" + c;
|
||||
in
|
||||
{
|
||||
global = {
|
||||
font = "${font.name} ${builtins.toString font.size.popups}";
|
||||
font = "${fonts.names.name0} ${builtins.toString fonts.sizes.popups.size0}";
|
||||
background = makeColor el.base01;
|
||||
frame_color = makeColor el.base0E;
|
||||
foreground = makeColor el.base05;
|
||||
|
|
|
@ -21,7 +21,7 @@ in
|
|||
"flameshot"
|
||||
"pactl set-default-sink bluez_output.00_16_94_35_0D_5F.1"
|
||||
"pactl set-default-source alsa_input.usb-Focusrite_Scarlett_2i2_USB_Y818KFJ0C671CE-00.HiFi__Mic1__source"
|
||||
"gsettings set org.blueman.plugins.powermanager auto-power-on true"
|
||||
"bluetoothctl power on"
|
||||
"gsettings set org.gnome.desktop.interface cursor-theme 'catppuccin-mocha-dark-cursors'"
|
||||
"gsettings set org.gnome.desktop.interface cursor-size ${builtins.toString cursor.size}"
|
||||
]
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
let
|
||||
|
||||
inherit (flake.config.aesthetics.themes)
|
||||
currentTheme
|
||||
currentThemes
|
||||
palettes
|
||||
;
|
||||
|
||||
el = palettes.${currentTheme}.colours;
|
||||
el = palettes.${currentThemes.theme0}.colours;
|
||||
in
|
||||
{
|
||||
gaps_in = 5;
|
||||
|
|
|
@ -1,16 +1,16 @@
|
|||
{ flake, ... }:
|
||||
let
|
||||
inherit (flake.config.aesthetics.themes)
|
||||
currentTheme
|
||||
currentThemes
|
||||
palettes
|
||||
font
|
||||
fonts
|
||||
;
|
||||
|
||||
el = palettes.${currentTheme}.colours;
|
||||
el = palettes.${currentThemes.theme0}.colours;
|
||||
in
|
||||
{
|
||||
font = font.name;
|
||||
font-size = font.size.desktop;
|
||||
font = fonts.names.name0;
|
||||
font-size = fonts.sizes.desktop.size0;
|
||||
indicator-idle-visible = true;
|
||||
indicator-radius = 100;
|
||||
indicator-thickness = 20;
|
||||
|
|
|
@ -1,15 +1,15 @@
|
|||
{ flake, ... }:
|
||||
let
|
||||
inherit (flake.config.aesthetics.themes)
|
||||
currentTheme
|
||||
currentThemes
|
||||
palettes
|
||||
font
|
||||
fonts
|
||||
;
|
||||
|
||||
el = palettes.${currentTheme}.colours;
|
||||
el = palettes.${currentThemes.theme0}.colours;
|
||||
in
|
||||
{
|
||||
font-size = font.size.desktop;
|
||||
font-size = fonts.sizes.desktop.size0;
|
||||
hint-font = true;
|
||||
background-color = "#${el.base02}";
|
||||
outline-color = "#${el.base0E}";
|
||||
|
|
|
@ -2,16 +2,16 @@
|
|||
let
|
||||
|
||||
inherit (flake.config.aesthetics.themes)
|
||||
currentTheme
|
||||
currentThemes
|
||||
palettes
|
||||
font
|
||||
fonts
|
||||
;
|
||||
|
||||
el = palettes.${currentTheme}.colours;
|
||||
el = palettes.${currentThemes.theme0}.colours;
|
||||
|
||||
custom = {
|
||||
font = font.name;
|
||||
font_size = "${builtins.toString font.size.desktop}px";
|
||||
font = fonts.names.name0;
|
||||
font_size = "${builtins.toString fonts.sizes.desktop.size0}px";
|
||||
font_weight = "bold";
|
||||
opacityBg = "0.90";
|
||||
opacityBt = "1";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue