more reorg
This commit is contained in:
parent
a058fa3c90
commit
65d2b91057
7 changed files with 156 additions and 33 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -790,11 +790,11 @@
|
||||||
"xwayland-satellite-unstable": "xwayland-satellite-unstable"
|
"xwayland-satellite-unstable": "xwayland-satellite-unstable"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1738918638,
|
"lastModified": 1739042449,
|
||||||
"narHash": "sha256-lQ02wFQ4GYXMXcq8V4pfZUbXMzA9nJjtXlwUgA+RiQA=",
|
"narHash": "sha256-9zLFUpEebwhjCgtznsI61gTzefI3+fuXATHUOFzJi5w=",
|
||||||
"owner": "sodiboo",
|
"owner": "sodiboo",
|
||||||
"repo": "niri-flake",
|
"repo": "niri-flake",
|
||||||
"rev": "1df0adf742570d4f09233a63e58998261cef8ee5",
|
"rev": "98e3666a9dc4143cbf93d957a15d749b5acef046",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -117,6 +117,8 @@
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
pkgs-stable = inputs.nixpkgs-stable.legacyPackages.x86_64-linux;
|
||||||
|
|
||||||
nixosModules = genAttrs (map nameOf (listFilesRecursive ./modules/system)) (
|
nixosModules = genAttrs (map nameOf (listFilesRecursive ./modules/system)) (
|
||||||
name: import ./modules/system/${name}.nix
|
name: import ./modules/system/${name}.nix
|
||||||
);
|
);
|
||||||
|
|
|
@ -0,0 +1,42 @@
|
||||||
|
* {
|
||||||
|
all: unset; // Unsets everything so you can style everything from scratch
|
||||||
|
}
|
||||||
|
|
||||||
|
// Global Styles
|
||||||
|
.bar {
|
||||||
|
background-color: rgba(0,0,0,0);
|
||||||
|
color: #b0b4bc;
|
||||||
|
padding: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Styles on classes (see eww.yuck for more information)
|
||||||
|
|
||||||
|
.sidestuff slider {
|
||||||
|
all: unset;
|
||||||
|
color: #ffd5cd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric scale trough highlight {
|
||||||
|
all: unset;
|
||||||
|
background-color: #D35D6E;
|
||||||
|
color: #000000;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.metric scale trough {
|
||||||
|
all: unset;
|
||||||
|
background-color: #4e4e4e;
|
||||||
|
border-radius: 50px;
|
||||||
|
min-height: 3px;
|
||||||
|
min-width: 50px;
|
||||||
|
margin-left: 10px;
|
||||||
|
margin-right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.label-ram {
|
||||||
|
font-size: large;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspaces button:hover {
|
||||||
|
color: #D35D6E;
|
||||||
|
}
|
|
@ -1,12 +1,73 @@
|
||||||
(defwindow mainbar
|
(defwidget bar []
|
||||||
:monitor 0
|
(centerbox :orientation "h"
|
||||||
:geometry (geometry :x "0%"
|
(workspaces)
|
||||||
:y "20px"
|
(music)
|
||||||
:width "90%"
|
(sidestuff)))
|
||||||
:height "30px"
|
|
||||||
:anchor "top center")
|
(defwidget sidestuff []
|
||||||
:stacking "fg"
|
(box :class "sidestuff" :orientation "h" :space-evenly false :halign "end"
|
||||||
:reserve (struts :distance "40px" :side "top")
|
(metric :label "🔊"
|
||||||
:windowtype "dock"
|
:value volume
|
||||||
:wm-ignore false
|
:onchange "amixer -D pulse sset Master {}%")
|
||||||
)
|
(metric :label ""
|
||||||
|
:value {EWW_RAM.used_mem_perc}
|
||||||
|
:onchange "")
|
||||||
|
(metric :label "💾"
|
||||||
|
:value {round((1 - (EWW_DISK["/"].free / EWW_DISK["/"].total)) * 100, 0)}
|
||||||
|
:onchange "")
|
||||||
|
time))
|
||||||
|
|
||||||
|
(defwidget workspaces []
|
||||||
|
(box :class "workspaces"
|
||||||
|
:orientation "h"
|
||||||
|
:space-evenly true
|
||||||
|
:halign "start"
|
||||||
|
:spacing 10
|
||||||
|
(button :onclick "wmctrl -s 0" 1)
|
||||||
|
(button :onclick "wmctrl -s 1" 2)
|
||||||
|
(button :onclick "wmctrl -s 2" 3)
|
||||||
|
(button :onclick "wmctrl -s 3" 4)
|
||||||
|
(button :onclick "wmctrl -s 4" 5)
|
||||||
|
(button :onclick "wmctrl -s 5" 6)
|
||||||
|
(button :onclick "wmctrl -s 6" 7)
|
||||||
|
(button :onclick "wmctrl -s 7" 8)
|
||||||
|
(button :onclick "wmctrl -s 8" 9)))
|
||||||
|
|
||||||
|
(defwidget music []
|
||||||
|
(box :class "music"
|
||||||
|
:orientation "h"
|
||||||
|
:space-evenly false
|
||||||
|
:halign "center"
|
||||||
|
{music != "" ? "🎵${music}" : ""}))
|
||||||
|
|
||||||
|
|
||||||
|
(defwidget metric [label value onchange]
|
||||||
|
(box :orientation "h"
|
||||||
|
:class "metric"
|
||||||
|
:space-evenly false
|
||||||
|
(box :class "label" label)
|
||||||
|
(scale :min 0
|
||||||
|
:max 101
|
||||||
|
:active {onchange != ""}
|
||||||
|
:value value
|
||||||
|
:onchange onchange)))
|
||||||
|
|
||||||
|
(deflisten music :initial ""
|
||||||
|
"playerctl --follow metadata --format '{{ artist }} - {{ title }}' || true")
|
||||||
|
|
||||||
|
(defpoll volume :interval "1s"
|
||||||
|
"scripts/getvol")
|
||||||
|
|
||||||
|
(defpoll time :interval "10s"
|
||||||
|
"date '+%H:%M %b %d, %Y'")
|
||||||
|
|
||||||
|
(defwindow bar
|
||||||
|
:monitor 0
|
||||||
|
:windowtype "dock"
|
||||||
|
:geometry (geometry :x "0%"
|
||||||
|
:y "0%"
|
||||||
|
:width "90%"
|
||||||
|
:height "10px"
|
||||||
|
:anchor "top center")
|
||||||
|
:reserve (struts :side "top" :distance "4%")
|
||||||
|
(bar))
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ nix-config, lib, pkgs, ... }:
|
{ nix-config, inputs, lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = lib.mkMerge [
|
home.packages = lib.mkMerge [
|
||||||
(with nix-config.packages.x86_64-linux; [
|
(with nix-config.packages.x86_64-linux; [
|
||||||
|
@ -16,15 +16,15 @@
|
||||||
paulxstretch
|
paulxstretch
|
||||||
])
|
])
|
||||||
|
|
||||||
(with pkgs; [
|
(nix-config.pkgs-stable.yabridge.override {
|
||||||
bitwig-studio5-latest
|
wine = pkgs.wineWowPackages.stagingFull;
|
||||||
|
})
|
||||||
|
(nix-config.pkgs-stable.yabridgectl.override {
|
||||||
|
wine = pkgs.wineWowPackages.stagingFull;
|
||||||
|
})
|
||||||
|
|
||||||
(yabridge.override {
|
(with pkgs; [
|
||||||
wine = wineWowPackages.stagingFull;
|
bitwig-studio5-latest # from audio flake
|
||||||
})
|
|
||||||
(yabridgectl.override {
|
|
||||||
wine = wineWowPackages.stagingFull;
|
|
||||||
})
|
|
||||||
|
|
||||||
supercollider-with-plugins
|
supercollider-with-plugins
|
||||||
carla
|
carla
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ config, pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
with pkgs.lib.nix-rice;
|
with pkgs.lib.nix-rice;
|
||||||
let strPalette = palette.toRGBHex pkgs.rice.colorPalette;
|
let strPalette = palette.toRGBAHex pkgs.rice.colorPalette;
|
||||||
in {
|
in {
|
||||||
|
|
||||||
programs = {
|
programs = {
|
||||||
|
@ -107,12 +107,8 @@ in {
|
||||||
|
|
||||||
focus-ring = {
|
focus-ring = {
|
||||||
enable = true;
|
enable = true;
|
||||||
active.gradient = {
|
active.color = with pkgs.rice.colorPalette.normal.border;
|
||||||
from = strPalette.normal.magenta;
|
"rgba(${toString r} ${toString g} ${toString b} ${toString a})";
|
||||||
to = strPalette.dark.cyan;
|
|
||||||
angle = 180;
|
|
||||||
in' = "srgb-linear";
|
|
||||||
};
|
|
||||||
width = 2;
|
width = 2;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -156,7 +152,18 @@ in {
|
||||||
open-floating = true; }
|
open-floating = true; }
|
||||||
|
|
||||||
{ matches = [{app-id="launcher";}];
|
{ matches = [{app-id="launcher";}];
|
||||||
open-floating = true; }
|
open-floating = true;
|
||||||
|
focus-ring = {
|
||||||
|
enable = true;
|
||||||
|
active.gradient = {
|
||||||
|
from = strPalette.normal.magenta;
|
||||||
|
to = strPalette.dark.cyan;
|
||||||
|
angle = 180;
|
||||||
|
in' = "srgb-linear";
|
||||||
|
};
|
||||||
|
width = 2;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
# Open the Firefox picture-in-picture player as floating by default.
|
# Open the Firefox picture-in-picture player as floating by default.
|
||||||
{ # This app-id regular expression will work for both:
|
{ # This app-id regular expression will work for both:
|
||||||
|
|
|
@ -24,6 +24,12 @@ in {
|
||||||
};
|
};
|
||||||
cyan = theme.color6;
|
cyan = theme.color6;
|
||||||
white = theme.color7;
|
white = theme.color7;
|
||||||
|
border = {
|
||||||
|
a = 0.5;
|
||||||
|
r = 198;
|
||||||
|
g = 120;
|
||||||
|
b = 221;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
bright = palette.brighten 10 normal // {
|
bright = palette.brighten 10 normal // {
|
||||||
background = {
|
background = {
|
||||||
|
@ -37,7 +43,12 @@ in {
|
||||||
green = theme.color10;
|
green = theme.color10;
|
||||||
yellow = theme.color11;
|
yellow = theme.color11;
|
||||||
blue = theme.color12;
|
blue = theme.color12;
|
||||||
magenta = theme.color13;
|
# magenta = {
|
||||||
|
# a = 1.0;
|
||||||
|
# r = 198;
|
||||||
|
# g = 120;
|
||||||
|
# b = 221;
|
||||||
|
# };
|
||||||
cyan = theme.color14;
|
cyan = theme.color14;
|
||||||
white = theme.color15;
|
white = theme.color15;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue