Compare commits
118 Commits
d147f53ef1
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
|
887634421c
|
|||
| 9514a3006c | |||
| 5c61353575 | |||
| 0f3b542ae5 | |||
| 6366d9b313 | |||
| 473b290258 | |||
| 798c222bd6 | |||
| 546b9cb09d | |||
| c357d13b21 | |||
| a34135d5a7 | |||
| 878b660bf2 | |||
| e5a75cb3b7 | |||
| 8e21f3dae8 | |||
| b55afcfdf6 | |||
| 662388bb91 | |||
| 21c39abe32 | |||
| 0611ab0077 | |||
| 9936f538e1 | |||
| ece075ffaf | |||
| bae41101e3 | |||
| 5effa640cc | |||
| a66c08551c | |||
| 4fee8726a9 | |||
| ab9fea20da | |||
| 7de6202163 | |||
| 8160b82206 | |||
| d83e7f0bf3 | |||
| 0a5a0ad307 | |||
| 60e8119c21 | |||
| c95c417c18 | |||
| 644db4d5f8 | |||
| b586df0816 | |||
| db6662420c | |||
| d5ea865a4e | |||
| 65b88e8c55 | |||
| abce77a6a6 | |||
| 577fd364fd | |||
| 0796677cd7 | |||
| 0a3fef0b1c | |||
| aace131a0e | |||
| 6117dca845 | |||
| 43a074f355 | |||
| 58af37ea8c | |||
| da76e6c12a | |||
| ce804942a9 | |||
| c724c853f5 | |||
| 535c8a3154 | |||
| 6140123cbc | |||
| 582b96779e | |||
| 526a36b6e6 | |||
| c6d017698f | |||
| 950308c8b5 | |||
| 73a6beee14 | |||
| 849e429609 | |||
| 71c1b78af6 | |||
| 58d89c6736 | |||
| bd10996d7b | |||
| 3135fad27e | |||
| 1dfe40c3f2 | |||
| ab2f95d240 | |||
| a3723be554 | |||
| 7086fb70f6 | |||
| 37ffd00d0b | |||
| 93d7a9d08e | |||
| 65d68895a6 | |||
| 0b90003532 | |||
| 7fce37895e | |||
| 03f27c3189 | |||
| bfbbabaf06 | |||
| 44b7c5858c | |||
| 1ce2a94786 | |||
| 0bff91bb07 | |||
| 8166ef1bd1 | |||
| 240453849f | |||
| 5c5f2dd3de | |||
| 9f4fc933cf | |||
| 94aa518fe7 | |||
| c5d16b282d | |||
| 3c3245b450 | |||
| 59dd62b9c9 | |||
| a899fe4c6f | |||
| 75914fb975 | |||
| e855ea26c0 | |||
| df537a338b | |||
| e618f396c0 | |||
| b3c5e4f651 | |||
| 1f8b7c6183 | |||
| 161b372566 | |||
| 63af33cc08 | |||
| 39693c4918 | |||
| 6d94b3875c | |||
| 45338a43f9 | |||
| 0df635666f | |||
| a33f2b2c98 | |||
| f79b57855a | |||
| a1c9185090 | |||
| 163b3e2a48 | |||
| 9ed7bad996 | |||
| 1f46977159 | |||
| 25e3cabe49 | |||
| 38cea9e932 | |||
| 59cf3a8507 | |||
| da037f476f | |||
| 532876f1a9 | |||
| 844199aed1 | |||
| 9cf7da5a73 | |||
| d8f3142b4e | |||
| 8afa30e3cc | |||
| 82f34804ad | |||
| f10dbe4ea7 | |||
| 8569c40183 | |||
| 649b7cc032 | |||
| 1f490d87c2 | |||
| 4b2cbbff36 | |||
| 7e5d777fc6 | |||
| 0000b02d5d | |||
| 4218bb8344 | |||
| 6b2fd299e0 |
@@ -34,27 +34,40 @@
|
|||||||
url = "github:nix-community/nixos-vscode-server";
|
url = "github:nix-community/nixos-vscode-server";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = inputs:
|
outputs = inputs:
|
||||||
let
|
let
|
||||||
lib = inputs.nixpkgs.lib;
|
lib = inputs.nixpkgs.lib;
|
||||||
gen = import ./generator.nix { inherit inputs; };
|
linuxSystems = [ "x86_64-linux" "aarch64-linux" ];
|
||||||
|
supportedSystems = linuxSystems ++ [ "x86_64-darwin" "aarch64-darwin" ];
|
||||||
|
overlays = import ./overlays { inherit inputs; };
|
||||||
|
mkPkgs = system:
|
||||||
|
import inputs.nixpkgs {
|
||||||
|
inherit system;
|
||||||
|
inherit overlays;
|
||||||
|
config.allowUnfree = true;
|
||||||
|
};
|
||||||
|
gen = import ./generator.nix { inherit inputs mkPkgs supportedSystems; };
|
||||||
systemsDir = ./systems;
|
systemsDir = ./systems;
|
||||||
systemNames = lib.attrNames (lib.filterAttrs
|
isIgnoredSystemDir = name: lib.hasPrefix "_" name || lib.hasPrefix "." name;
|
||||||
(name: type: type == "directory" && builtins.pathExists (systemsDir + "/${name}/cfg.nix"))
|
systemNames = lib.attrNames (
|
||||||
(builtins.readDir systemsDir));
|
lib.filterAttrs (
|
||||||
|
name: type:
|
||||||
|
type == "directory"
|
||||||
|
&& !isIgnoredSystemDir name
|
||||||
|
&& builtins.pathExists (systemsDir + "/${name}/cfg.nix")
|
||||||
|
) (builtins.readDir systemsDir)
|
||||||
|
);
|
||||||
hostsByType = systemType:
|
hostsByType = systemType:
|
||||||
lib.filter
|
lib.filter (host: ((import (systemsDir + "/${host}/cfg.nix")).syscfg.type or "nixos") == systemType) systemNames;
|
||||||
(host: (import (systemsDir + "/${host}/cfg.nix")).syscfg.type == systemType)
|
|
||||||
systemNames;
|
|
||||||
generateHosts = systemType:
|
generateHosts = systemType:
|
||||||
builtins.listToAttrs (map
|
lib.genAttrs (hostsByType systemType) (host: gen.generate { inherit host; });
|
||||||
(host: lib.nameValuePair host (gen.generate { inherit host; }))
|
|
||||||
(hostsByType systemType));
|
|
||||||
in {
|
in {
|
||||||
devShells = import ./shells { inherit inputs; };
|
devShells = import ./shells {
|
||||||
|
inherit inputs mkPkgs;
|
||||||
|
systems = linuxSystems;
|
||||||
|
};
|
||||||
|
|
||||||
nixosConfigurations = generateHosts "nixos";
|
nixosConfigurations = generateHosts "nixos";
|
||||||
darwinConfigurations = generateHosts "macos";
|
darwinConfigurations = generateHosts "macos";
|
||||||
|
|||||||
+65
-45
@@ -1,31 +1,27 @@
|
|||||||
{ inputs, ... }: {
|
{ inputs, mkPkgs, supportedSystems, ... }:
|
||||||
|
{
|
||||||
generate = { host }:
|
generate = { host }:
|
||||||
let
|
let
|
||||||
syscfg = import ./systems/${host}/cfg.nix;
|
syscfg = import ./systems/${host}/cfg.nix;
|
||||||
nameValuePair = name: value: { inherit name value; };
|
nameValuePair = name: value: { inherit name value; };
|
||||||
in ({
|
systemType = syscfg.syscfg.type or "nixos";
|
||||||
"nixos" = inputs.nixpkgs.lib.nixosSystem {
|
defaultSystem =
|
||||||
system = "x86_64-linux";
|
|
||||||
specialArgs = { inherit inputs; };
|
|
||||||
modules = [
|
|
||||||
./modules/shared/syscfg
|
|
||||||
./modules/shared/sops
|
|
||||||
./modules/nixos
|
|
||||||
syscfg
|
|
||||||
./systems/${host}
|
|
||||||
inputs.sops-nix.nixosModules.sops
|
|
||||||
inputs.home-manager.nixosModules.home-manager
|
|
||||||
|
|
||||||
inputs.nixos-wsl.nixosModules.wsl
|
|
||||||
inputs.vscode-server.nixosModules.default
|
|
||||||
|
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
nixos = "x86_64-linux";
|
||||||
home-manager.useUserPackages = true;
|
macos = "x86_64-darwin";
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
home = "x86_64-linux";
|
||||||
home-manager.users = builtins.listToAttrs (map (userConfig:
|
}
|
||||||
nameValuePair userConfig.username {
|
.${systemType} or (throw "Unsupported system type: ${systemType}");
|
||||||
imports = [
|
requestedSystem = syscfg.syscfg.system or defaultSystem;
|
||||||
|
system =
|
||||||
|
if builtins.elem requestedSystem supportedSystems then
|
||||||
|
requestedSystem
|
||||||
|
else
|
||||||
|
throw "Unsupported system '${requestedSystem}' for host '${host}'";
|
||||||
|
users = syscfg.syscfg.users or [ ];
|
||||||
|
mkLinuxHomeImports =
|
||||||
|
userConfig:
|
||||||
|
[
|
||||||
./modules/shared/syscfg
|
./modules/shared/syscfg
|
||||||
./modules/shared/colors
|
./modules/shared/colors
|
||||||
./modules/home
|
./modules/home
|
||||||
@@ -34,37 +30,61 @@
|
|||||||
inputs.nix-colors.homeManagerModule
|
inputs.nix-colors.homeManagerModule
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
inputs.sops-nix.homeManagerModules.sops
|
||||||
];
|
];
|
||||||
}) syscfg.syscfg.users);
|
mkDarwinHomeImports = [ inputs.nix-colors.homeManagerModule inputs.sops-nix.homeManagerModules.sops ];
|
||||||
}
|
mkHomeUsers = importsForUser:
|
||||||
];
|
builtins.listToAttrs (
|
||||||
|
map (userConfig: nameValuePair userConfig.username { imports = importsForUser userConfig; }) users
|
||||||
|
);
|
||||||
|
mkHomeManager = importsForUser: {
|
||||||
|
home-manager.useGlobalPkgs = true;
|
||||||
|
home-manager.useUserPackages = true;
|
||||||
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||||
|
home-manager.users = mkHomeUsers importsForUser;
|
||||||
};
|
};
|
||||||
|
sharedModules = [
|
||||||
"macos" = inputs.darwin.lib.darwinSystem {
|
|
||||||
system = "x86_64-darwin";
|
|
||||||
modules = [
|
|
||||||
./modules/shared/syscfg
|
./modules/shared/syscfg
|
||||||
./modules/shared/sops
|
./modules/shared/sops
|
||||||
syscfg
|
syscfg
|
||||||
./systems/${host}
|
./systems/${host}
|
||||||
inputs.sops-nix.nixosModules.sops
|
|
||||||
inputs.home-manager.darwinModules.home-manager
|
|
||||||
{
|
|
||||||
home-manager.useGlobalPkgs = true;
|
|
||||||
home-manager.useUserPackages = true;
|
|
||||||
home-manager.extraSpecialArgs = { inherit inputs; };
|
|
||||||
home-manager.users = builtins.listToAttrs (map (userConfig:
|
|
||||||
nameValuePair userConfig.username {
|
|
||||||
imports = [
|
|
||||||
inputs.nix-colors.homeManagerModule
|
|
||||||
inputs.sops-nix.homeManagerModules.sops
|
|
||||||
];
|
];
|
||||||
}) syscfg.syscfg.users);
|
defaultUser =
|
||||||
}
|
builtins.head (
|
||||||
|
builtins.filter (user: user.username == syscfg.syscfg.defaultUser) users
|
||||||
|
++ [ { username = syscfg.syscfg.defaultUser; } ]
|
||||||
|
);
|
||||||
|
in
|
||||||
|
(
|
||||||
|
{
|
||||||
|
"nixos" = inputs.nixpkgs.lib.nixosSystem {
|
||||||
|
inherit system;
|
||||||
|
specialArgs = { inherit inputs; };
|
||||||
|
modules = sharedModules ++ [
|
||||||
|
./modules/nixos
|
||||||
|
inputs.sops-nix.nixosModules.sops
|
||||||
|
inputs.home-manager.nixosModules.home-manager
|
||||||
|
|
||||||
|
inputs.nixos-wsl.nixosModules.wsl
|
||||||
|
inputs.vscode-server.nixosModules.default
|
||||||
|
|
||||||
|
(mkHomeManager mkLinuxHomeImports)
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
"macos" = inputs.darwin.lib.darwinSystem {
|
||||||
|
inherit system;
|
||||||
|
modules = sharedModules ++ [
|
||||||
|
inputs.sops-nix.darwinModules.sops
|
||||||
|
inputs.home-manager.darwinModules.home-manager
|
||||||
|
(mkHomeManager (_: mkDarwinHomeImports))
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
"home" = inputs.home-manager.lib.homeManagerConfiguration {
|
"home" = inputs.home-manager.lib.homeManagerConfiguration {
|
||||||
modules = [ ./modules/home ];
|
pkgs = mkPkgs system;
|
||||||
|
extraSpecialArgs = { inherit inputs; };
|
||||||
|
modules = mkLinuxHomeImports defaultUser;
|
||||||
};
|
};
|
||||||
_ = throw "Unsupported system";
|
_ = throw "Unsupported system";
|
||||||
}.${syscfg.syscfg.type});
|
}
|
||||||
|
.${systemType}
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,12 +1,16 @@
|
|||||||
{ lib, config, ... }: {
|
{ lib, config, pkgs, ... }: {
|
||||||
|
|
||||||
#environment.sessionVariables.SOPS_AGE_KEY_FILE = keyFilePath;
|
#environment.sessionVariables.SOPS_AGE_KEY_FILE = keyFilePath;
|
||||||
systemd.user.startServices = "sd-switch";
|
systemd.user.startServices = lib.mkIf pkgs.stdenv.isLinux "sd-switch";
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
username = "${config.usercfg.username}";
|
username = "${config.usercfg.username}";
|
||||||
homeDirectory = "/home/${config.usercfg.username}";
|
homeDirectory =
|
||||||
|
if pkgs.stdenv.isDarwin then
|
||||||
|
"/Users/${config.usercfg.username}"
|
||||||
|
else
|
||||||
|
"/home/${config.usercfg.username}";
|
||||||
|
|
||||||
stateVersion = "26.05";
|
stateVersion = "26.05";
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports =
|
imports =
|
||||||
[ ./btop ./git ./helix ./kitty ./neofetch ./other ./starship ./zsh ];
|
[ ./btop ./git ./helix ./kitty ./fastfetch ./other ./starship ./zsh ];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,115 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"type": "small",
|
||||||
|
"padding": {
|
||||||
|
"top": 2,
|
||||||
|
"right": 4
|
||||||
|
},
|
||||||
|
"color": {
|
||||||
|
"1": "blue",
|
||||||
|
"2": "white"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"separator": " ",
|
||||||
|
"key": { "width": 16 },
|
||||||
|
"color": {
|
||||||
|
"separator": "90"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"colorUser": "blue",
|
||||||
|
"colorAt": "90",
|
||||||
|
"colorHost": "cyan"
|
||||||
|
},
|
||||||
|
"separator",
|
||||||
|
{
|
||||||
|
"type": "os",
|
||||||
|
"key": " os",
|
||||||
|
"keyColor": "blue",
|
||||||
|
"format": "{2} {8}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "kernel",
|
||||||
|
"key": " kernel",
|
||||||
|
"keyColor": "blue",
|
||||||
|
"format": "{2}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "packages",
|
||||||
|
"key": " pkgs",
|
||||||
|
"keyColor": "blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "uptime",
|
||||||
|
"key": " uptime",
|
||||||
|
"keyColor": "blue"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "cpu",
|
||||||
|
"key": " cpu",
|
||||||
|
"keyColor": "green",
|
||||||
|
"format": "{1} ({4}t @ {6})"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "gpu",
|
||||||
|
"key": " gpu",
|
||||||
|
"keyColor": "green",
|
||||||
|
"format": "{2} [{6}]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "memory",
|
||||||
|
"key": " ram",
|
||||||
|
"keyColor": "green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "disk",
|
||||||
|
"key": " disk",
|
||||||
|
"keyColor": "green",
|
||||||
|
"folders": "/"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "wm",
|
||||||
|
"key": " wm",
|
||||||
|
"keyColor": "yellow",
|
||||||
|
"format": "{2}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "terminal",
|
||||||
|
"key": " terminal",
|
||||||
|
"keyColor": "yellow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"key": " shell",
|
||||||
|
"keyColor": "yellow"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "command",
|
||||||
|
"key": " installed",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
"text": "birth=$(stat -c %W /); echo \"$(( ($(date +%s) - birth) / 86400 )) days\""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "command",
|
||||||
|
"key": " generation",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
"text": "nixos-rebuild list-generations | awk '$NF == \"True\" {print $2, $3}' | xargs -I {} date -d \"{}\" +\"%s\" | awk '{diff=systime()-$1; if(diff<3600) printf \"%d mins\\n\", diff/60; else if(diff<86400) printf \"%.0f hours\\n\", diff/3600; else printf \"%.0f days\\n\", diff/86400}'"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "colors",
|
||||||
|
"paddingLeft": 1,
|
||||||
|
"block": {
|
||||||
|
"width": 3,
|
||||||
|
"range": [0, 7]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Executable
+149
@@ -0,0 +1,149 @@
|
|||||||
|
{ pkgs, config, lib, ... }:
|
||||||
|
let
|
||||||
|
p = config.colorScheme.palette;
|
||||||
|
|
||||||
|
hexDigits = {
|
||||||
|
"0"=0; "1"=1; "2"=2; "3"=3; "4"=4; "5"=5; "6"=6; "7"=7;
|
||||||
|
"8"=8; "9"=9; "a"=10; "b"=11; "c"=12; "d"=13; "e"=14; "f"=15;
|
||||||
|
};
|
||||||
|
hexByte = h:
|
||||||
|
hexDigits.${lib.toLower (builtins.substring 0 1 h)} * 16 +
|
||||||
|
hexDigits.${lib.toLower (builtins.substring 1 1 h)};
|
||||||
|
rgb = hex:
|
||||||
|
let r = toString (hexByte (builtins.substring 0 2 hex));
|
||||||
|
g = toString (hexByte (builtins.substring 2 2 hex));
|
||||||
|
b = toString (hexByte (builtins.substring 4 2 hex));
|
||||||
|
in "${r};${g};${b}";
|
||||||
|
|
||||||
|
# in a JSON string → ESC; JSON custom module format uses this directly
|
||||||
|
blk = c: "\\u001b[38;2;${rgb c}m\\ue0b7●\\ue0b5 \\u001b[0m";
|
||||||
|
row = cs: " " + builtins.concatStringsSep "" (map blk cs);
|
||||||
|
|
||||||
|
base = row [ p.base00 p.base01 p.base02 p.base03 p.base04 p.base05 p.base06 p.base07 ];
|
||||||
|
alt = row [ p.alt00 p.alt01 p.alt02 p.alt03 p.alt04 p.alt05 p.alt06 p.alt07 ];
|
||||||
|
high = row [ p.high08 p.high09 p.high0A p.high0B p.high0C p.high0D p.high0E p.high0F ];
|
||||||
|
low = row [ p.low08 p.low09 p.low0A p.low0B p.low0C p.low0D p.low0E p.low0F ];
|
||||||
|
|
||||||
|
# ── logo colors ── change $1 / $2 to any palette entry ───────────────────
|
||||||
|
logoColor1 = p.base07;
|
||||||
|
logoColor2 = p.base07;
|
||||||
|
# ─────────────────────────────────────────────────────────────────────────
|
||||||
|
in lib.mkIf config.syscfg.make.gui {
|
||||||
|
home.packages = with pkgs; [ fastfetch ];
|
||||||
|
xdg.configFile."neofetch/config.conf".source = ./config.conf;
|
||||||
|
xdg.configFile."fastfetch/logo.txt".source = ./logo.txt;
|
||||||
|
xdg.configFile."fastfetch/config.jsonc".text = ''
|
||||||
|
{
|
||||||
|
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
||||||
|
"logo": {
|
||||||
|
"type": "file",
|
||||||
|
"source": "~/.config/fastfetch/logo.txt",
|
||||||
|
"color": {
|
||||||
|
"1": "38;2;${rgb logoColor1}",
|
||||||
|
"2": "38;2;${rgb logoColor2}"
|
||||||
|
},
|
||||||
|
"padding": {
|
||||||
|
"top": 1,
|
||||||
|
"right": 4
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"separator": " ",
|
||||||
|
"key": { "width": 16 },
|
||||||
|
"color": {
|
||||||
|
"separator": "90"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"modules": [
|
||||||
|
{
|
||||||
|
"type": "title",
|
||||||
|
"colorUser": "blue",
|
||||||
|
"colorAt": "90",
|
||||||
|
"colorHost": "cyan"
|
||||||
|
},
|
||||||
|
"separator",
|
||||||
|
{
|
||||||
|
"type": "os",
|
||||||
|
"key": " os",
|
||||||
|
"keyColor": "blue",
|
||||||
|
"format": "{2} {8}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "kernel",
|
||||||
|
"key": " kernel",
|
||||||
|
"keyColor": "blue",
|
||||||
|
"format": "{2}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "packages",
|
||||||
|
"key": " pkgs",
|
||||||
|
"keyColor": "blue"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "uptime",
|
||||||
|
"key": " uptime",
|
||||||
|
"keyColor": "blue"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "cpu",
|
||||||
|
"key": " cpu",
|
||||||
|
"keyColor": "green",
|
||||||
|
"format": "{1} ({4}t @ {6})"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "gpu",
|
||||||
|
"key": " gpu",
|
||||||
|
"keyColor": "green",
|
||||||
|
"format": "{2} [{6}]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "memory",
|
||||||
|
"key": " ram",
|
||||||
|
"keyColor": "green"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "disk",
|
||||||
|
"key": " disk",
|
||||||
|
"keyColor": "green",
|
||||||
|
"folders": "/"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "wm",
|
||||||
|
"key": " wm",
|
||||||
|
"keyColor": "yellow",
|
||||||
|
"format": "{2}"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "terminal",
|
||||||
|
"key": " terminal",
|
||||||
|
"keyColor": "yellow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "shell",
|
||||||
|
"key": " shell",
|
||||||
|
"keyColor": "yellow"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{
|
||||||
|
"type": "command",
|
||||||
|
"key": " installed",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
"text": "birth=$(stat -c %W /); echo \"$(( ($(date +%s) - birth) / 86400 )) days\""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "command",
|
||||||
|
"key": " generation",
|
||||||
|
"keyColor": "magenta",
|
||||||
|
"text": "nixos-rebuild list-generations | awk '$NF == \"True\" {print $2, $3}' | xargs -I {} date -d \"{}\" +\"%s\" | awk '{diff=systime()-$1; if(diff<3600) printf \"%d mins\\n\", diff/60; else if(diff<86400) printf \"%.0f hours\\n\", diff/3600; else printf \"%.0f days\\n\", diff/86400}'"
|
||||||
|
},
|
||||||
|
"break",
|
||||||
|
{ "type": "custom", "format": "${base}" },
|
||||||
|
{ "type": "custom", "format": "${alt}" },
|
||||||
|
{ "type": "custom", "format": "${high}" },
|
||||||
|
{ "type": "custom", "format": "${low}" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
'';
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
|
||||||
|
$2 $1⢀⣴⣦⡀
|
||||||
|
$2⢀⣴⣶⣿⣿⣿⣿⣷⣶⣦⣤⣀⡀ $1⢀⣴⣿⡿⠋
|
||||||
|
$2⢸⣿⣿⡿⠋⠉⠁⠉⠉⠉⠙⠛⠿⢷⣦⣄ $1⢀⣴⣿⡿⠋
|
||||||
|
$2⠘⣿⣿⣇ ⢀⣤⣤⣤⣤⣄⣀⠈⠙⠛$1⢀⣴⣿⡿⠋
|
||||||
|
$2 ⠘⣿⣿⣆ ⢸⣿⣿⠛⠛⠛⠛⠿⢃$1⣴⣿⡿⠋
|
||||||
|
$2 ⠈⢻⣿⣧⡀ ⠹⣿⣦⡀ $1⢀⣴⣿⡿⠛$2⠻⣷⣦⡀
|
||||||
|
$2 ⠙⠿⣿⣦⣄⠈⠙⢿⣷$2⣿⣿⣿$2⣿⣶⣄ ⠙⢿⣷⣄
|
||||||
|
$2 ⠈⠻⢿⣷⣦⣄⡈⠙⠛⠛⠋⠙⢿⣷⡀ ⠙⢿⣷⣄
|
||||||
|
$2 $1⢀⣴⣿⡿$2⠿⣿⣷⣶⣤⣤⣤⣼⣿⣷ ⠈⢻⣿⣦
|
||||||
|
$2 $1⢀⣴⣿⡿⠋ $2⠈⠉⠛⠛⠛⠛⠛⠁ ⣿⣿⡇
|
||||||
|
$2 $1⢀⣴⣿⡿⠋ $2⠠⢤⣀⣀⣀⣀⣀⣀⣤⣾⣿⣿⠇
|
||||||
|
$2 $1⠻⡿⠋ $2⠈⠉⠙⠛⠛⠛⠛⠛⠛⠁
|
||||||
|
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{ config, ... }: {
|
{ config, lib, ... }: {
|
||||||
programs.kitty = {
|
programs.kitty = lib.mkIf config.syscfg.make.gui {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
foreground = "#${config.colorScheme.palette.base07}";
|
foreground = "#${config.colorScheme.palette.base07}";
|
||||||
|
|||||||
@@ -1,147 +0,0 @@
|
|||||||
{
|
|
||||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
|
|
||||||
"logo": {
|
|
||||||
"type": "builtin", // Logo type: auto, builtin, small, file, etc.
|
|
||||||
// "source": "arch",
|
|
||||||
"width": 10,
|
|
||||||
"height": 10,
|
|
||||||
"padding": {
|
|
||||||
"top": 3,
|
|
||||||
"left": 2,
|
|
||||||
"right": 2
|
|
||||||
},
|
|
||||||
"color": {
|
|
||||||
"1": "blue",
|
|
||||||
"2": "white",
|
|
||||||
"3": "cyan"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": { /* Display settings */},
|
|
||||||
"modules": [
|
|
||||||
"break",
|
|
||||||
{
|
|
||||||
"type": "custom",
|
|
||||||
"format": "\u001b[90m┌──────────────────────Hardware──────────────────────┐"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "host",
|
|
||||||
"key": " PC",
|
|
||||||
"keyColor": "green",
|
|
||||||
"format": "{2}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "cpu",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "green",
|
|
||||||
"format": "{1} | {4} @{6}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "gpu",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "green",
|
|
||||||
"format": "{2} | {7}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "memory",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "green",
|
|
||||||
"format": "{2}"
|
|
||||||
},
|
|
||||||
// {
|
|
||||||
// "type": "disk",
|
|
||||||
// "key": "└ └ ",
|
|
||||||
// "keyColor": "green"
|
|
||||||
// },
|
|
||||||
{
|
|
||||||
"type": "custom",
|
|
||||||
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
|
||||||
},
|
|
||||||
"break",
|
|
||||||
{
|
|
||||||
"type": "custom",
|
|
||||||
"format": "\u001b[90m┌──────────────────────Software──────────────────────┐"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "os",
|
|
||||||
"key": " OS",
|
|
||||||
"keyColor": "yellow",
|
|
||||||
"format": " {2} {8}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "kernel",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "yellow",
|
|
||||||
"format": "{1} {2}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "bios",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "yellow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "packages",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "yellow"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "de",
|
|
||||||
"key": " DE",
|
|
||||||
"keyColor": "blue",
|
|
||||||
"format": "{2} | {3}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "lm",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "blue",
|
|
||||||
"format": "{1} {2} {3}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "wm",
|
|
||||||
"key": "│ ├ ",
|
|
||||||
"keyColor": "blue",
|
|
||||||
"format": "{2} {5}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "custom",
|
|
||||||
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
|
||||||
},
|
|
||||||
"break",
|
|
||||||
{
|
|
||||||
"type": "custom",
|
|
||||||
"format": "\u001b[90m┌──────────────────────Age───────────────────────────┐"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "command",
|
|
||||||
"key": " › OS Age ",
|
|
||||||
"keyColor": "magenta",
|
|
||||||
"text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "command",
|
|
||||||
"key": " › Update ",
|
|
||||||
"keyColor": "magenta",
|
|
||||||
"text": "nixos-rebuild list-generations | awk '$NF == \"True\" {print $2, $3}' | xargs -I {} date -d \"{}\" +\"%s\" | awk '{diff=systime()-$1; printf \"%d days, %d hours, %d mins\\n\", diff/86400, (diff%86400)/3600, (diff%3600)/60}'"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "uptime",
|
|
||||||
"key": " › Uptime ",
|
|
||||||
"keyColor": "magenta"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "custom",
|
|
||||||
"format": "\u001b[90m└────────────────────────────────────────────────────┘"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"type": "colors",
|
|
||||||
"paddingLeft": 2,
|
|
||||||
"block": {
|
|
||||||
"width": 3,
|
|
||||||
"range": [
|
|
||||||
0,
|
|
||||||
15
|
|
||||||
]
|
|
||||||
} //,
|
|
||||||
//"symbol": "circle"
|
|
||||||
},
|
|
||||||
]
|
|
||||||
}
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
{ pkgs, config, ... }: {
|
|
||||||
home.packages = with pkgs; [ fastfetch ];
|
|
||||||
xdg.configFile."neofetch/config.conf".source = ./config.conf;
|
|
||||||
xdg.configFile."fastfetch/config.jsonc".source = ./config.jsonc;
|
|
||||||
}
|
|
||||||
@@ -1,18 +1,16 @@
|
|||||||
{ pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
sudo
|
|
||||||
ripgrep
|
ripgrep
|
||||||
unzip
|
unzip
|
||||||
|
|
||||||
socat
|
socat
|
||||||
ripgrep
|
|
||||||
|
|
||||||
appimage-run
|
|
||||||
|
|
||||||
cbonsai
|
cbonsai
|
||||||
pipes-rs
|
pipes-rs
|
||||||
cmatrix
|
cmatrix
|
||||||
#cava
|
#cava
|
||||||
sl
|
sl
|
||||||
|
] ++ lib.optionals (config.syscfg.make.gui || config.syscfg.make.develop) [
|
||||||
|
pkgs.appimage-run
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{ config, lib, pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
|
|
||||||
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
home.sessionVariables.STARSHIP_CACHE = "${config.xdg.cacheHome}/starship";
|
||||||
home.packages = with pkgs; [ starship ];
|
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableFishIntegration = false;
|
enableFishIntegration = false;
|
||||||
|
|||||||
@@ -1,20 +1,22 @@
|
|||||||
{ lib, config, pkgs, ... }: {
|
{ lib, config, pkgs, ... }:
|
||||||
|
let
|
||||||
config = lib.mkIf (config.syscfg.make.develop) {
|
exts = with pkgs.vscode-extensions; [
|
||||||
programs.vscode = {
|
|
||||||
enable = true;
|
|
||||||
package = pkgs.vscodium;
|
|
||||||
#profiles.default = {
|
|
||||||
profiles.default.extensions = with pkgs.vscode-extensions; [
|
|
||||||
bbenoist.nix
|
bbenoist.nix
|
||||||
esbenp.prettier-vscode
|
esbenp.prettier-vscode
|
||||||
golang.go
|
|
||||||
ms-python.vscode-pylance
|
anthropic.claude-code
|
||||||
ms-vscode.cpptools
|
# openai.codex
|
||||||
dbaeumer.vscode-eslint
|
|
||||||
continue.continue
|
|
||||||
];
|
];
|
||||||
#};
|
in {
|
||||||
|
|
||||||
|
config = lib.mkIf (config.syscfg.make.develop) {
|
||||||
|
programs.vscodium = {
|
||||||
|
enable = true;
|
||||||
|
profiles.default.extensions = exts;
|
||||||
|
};
|
||||||
|
programs.antigravity = {
|
||||||
|
enable = true;
|
||||||
|
profiles.default.extensions = exts;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,8 +4,9 @@
|
|||||||
programs.imv.enable = true;
|
programs.imv.enable = true;
|
||||||
|
|
||||||
programs.obs-studio.enable = true;
|
programs.obs-studio.enable = true;
|
||||||
|
services.jellyfin-mpv-shim.enable = true;
|
||||||
|
|
||||||
home.packages = with pkgs; [ jellyfin-mpv-shim krita gimp darktable ];
|
home.packages = with pkgs; [ krita gimp darktable ];
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,83 @@
|
|||||||
{ lib, config, pkgs, ... }: {
|
{ lib, config, pkgs, ... }:
|
||||||
|
let
|
||||||
|
configuredMpv = config.programs.mpv.finalPackage;
|
||||||
|
in{
|
||||||
|
|
||||||
config = lib.mkIf (config.syscfg.make.gui) {
|
config = lib.mkIf (config.syscfg.make.gui) {
|
||||||
programs.mpv = {
|
programs.mpv = {
|
||||||
enable = true;
|
enable = true;
|
||||||
scripts = with pkgs; [ mpvScripts.mpris ];
|
scripts = with pkgs.mpvScripts; [ mpris ];
|
||||||
|
config = {
|
||||||
|
hwdec ="auto";
|
||||||
|
profile ="high-quality";
|
||||||
|
ytdl-format = "bestvideo+bestaudio";
|
||||||
|
};
|
||||||
|
|
||||||
|
bindings =
|
||||||
|
let
|
||||||
|
shadersPkg = "${pkgs.mpv-shim-default-shaders}/share/mpv-shim-default-shaders/shaders";
|
||||||
|
setShader = message: files:
|
||||||
|
''no-osd change-list glsl-shaders set "${lib.concatStringsSep ":" files}"; show-text "${message}"'';
|
||||||
|
in
|
||||||
|
{
|
||||||
|
"CTRL+1" = setShader "Anime4K: Mode A+A (Balanced)" [
|
||||||
|
"${shadersPkg}/Anime4K_Clamp_Highlights.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_M.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Upscale_CNN_x2_M.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_S.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x2.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x4.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Upscale_CNN_x2_S.glsl"
|
||||||
|
];
|
||||||
|
"CTRL+2" = setShader "Anime4K: Mode B+B (Soft)" [
|
||||||
|
"${shadersPkg}/Anime4K_Clamp_Highlights.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_Soft_M.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Upscale_CNN_x2_M.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x2.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x4.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_Soft_S.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Upscale_CNN_x2_S.glsl"
|
||||||
|
];
|
||||||
|
"CTRL+3" = setShader "Anime4K: Mode C+A (Heavy Denoise)" [
|
||||||
|
"${shadersPkg}/Anime4K_Clamp_Highlights.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x2.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Upscale_Denoise_CNN_x2_M.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x2.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x4.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_S.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Upscale_CNN_x2_S.glsl"
|
||||||
|
];
|
||||||
|
"CTRL+4" = setShader "Hybrid: FSRCNNX + Anime4K Balanced" [
|
||||||
|
"${shadersPkg}/Anime4K_Clamp_Highlights.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x2.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x4.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_M.glsl"
|
||||||
|
"${shadersPkg}/FSRCNNX_x2_16-0-4-1.glsl"
|
||||||
|
"${shadersPkg}/CAS-scaled.glsl"
|
||||||
|
];
|
||||||
|
|
||||||
|
"CTRL+5" = setShader "Hybrid: FSRCNNX + Anime4K Fast" [
|
||||||
|
"${shadersPkg}/Anime4K_Clamp_Highlights.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x2.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_AutoDownscalePre_x4.glsl"
|
||||||
|
"${shadersPkg}/Anime4K_Restore_CNN_VL.glsl"
|
||||||
|
"${shadersPkg}/FSRCNNX_x2_16-0-4-1.glsl"
|
||||||
|
"${shadersPkg}/CAS-scaled.glsl"
|
||||||
|
];
|
||||||
|
|
||||||
|
"CTRL+6" = setShader "Movie: FSRCNNX + Natural Sharp" [
|
||||||
|
"${shadersPkg}/FSRCNNX_x2_16-0-4-1.glsl"
|
||||||
|
"${shadersPkg}/CAS-scaled.glsl"
|
||||||
|
];
|
||||||
|
|
||||||
|
"CTRL+0" = ''no-osd change-list glsl-shaders clr ""; show-text "GLSL shaders cleared"'';
|
||||||
|
};
|
||||||
|
};#--target-colorspace-hint-mode=source for HDR
|
||||||
|
xdg.configFile."jellyfin-mpv-shim/conf.json".text = builtins.toJSON {
|
||||||
|
"mpv_ext" = true;
|
||||||
|
"mpv_ext_path" = "${configuredMpv}/bin/mpv";
|
||||||
|
"mpv_ext_start" = true;
|
||||||
|
"mpv_ext_no_ovr" = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
programs.yt-dlp.enable = true;
|
programs.yt-dlp.enable = true;
|
||||||
|
|||||||
@@ -1,26 +1,26 @@
|
|||||||
{ lib, config, pkgs, ... }: {
|
{ lib, config, pkgs, ... }:
|
||||||
|
let
|
||||||
config = lib.mkIf (config.syscfg.make.gui) {
|
translateScript = pkgs.writeTextFile {
|
||||||
home.packages = with pkgs; [
|
name = "transcript-translate";
|
||||||
custom.vosk.base
|
executable = true;
|
||||||
jq
|
destination = "/bin/transcript-translate";
|
||||||
(python3.withPackages (ps: with ps; [ translatepy ]))
|
text = ''
|
||||||
];
|
#!${pkgs.python3.withPackages (ps: [ ps.translatepy ])}/bin/python3
|
||||||
|
import sys
|
||||||
xdg.configFile."script/transcript-translate.py".text = ''
|
from translatepy.translators.google import GoogleTranslate
|
||||||
#!/bin/python
|
|
||||||
|
|
||||||
import sys;
|
|
||||||
from translatepy.translators.google import GoogleTranslate;
|
|
||||||
|
|
||||||
if len(sys.argv) != 2:
|
if len(sys.argv) != 2:
|
||||||
print("No language provided.")
|
print("No language provided.")
|
||||||
exit
|
exit(1)
|
||||||
translator = GoogleTranslate()
|
translator = GoogleTranslate()
|
||||||
while True:
|
while True:
|
||||||
for line in sys.stdin:
|
for line in sys.stdin:
|
||||||
sys.stdout.write(translator.translate(line,sys.argv[1]).result+"\n")
|
sys.stdout.write(translator.translate(line,sys.argv[1]).result+"\n")
|
||||||
'';
|
'';
|
||||||
|
};
|
||||||
|
in {
|
||||||
|
|
||||||
|
config = lib.mkIf (config.syscfg.make.gui) {
|
||||||
|
home.packages = [ pkgs.custom.vosk.base ];
|
||||||
|
|
||||||
xdg.configFile."script/transcript.sh".text = ''
|
xdg.configFile."script/transcript.sh".text = ''
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
@@ -37,22 +37,22 @@
|
|||||||
MODEL_OPTS+="$pair\n"
|
MODEL_OPTS+="$pair\n"
|
||||||
done
|
done
|
||||||
|
|
||||||
MODEL_OPT=$(echo -e "$MODEL_OPTS" | wofi --dmenu -p "Choose model:")
|
MODEL_OPT=$(echo -e "$MODEL_OPTS" | ${pkgs.wofi}/bin/wofi --dmenu -p "Choose model:")
|
||||||
MODEL=$(echo "$MODEL_OPT" | awk -F ':' '{print $2}')
|
MODEL=$(echo "$MODEL_OPT" | awk -F ':' '{print $2}')
|
||||||
|
|
||||||
TRANSS="None\nNone-prog\nEnglish\nGerman\nRussian\nJapanese"
|
TRANSS="None\nNone-prog\nEnglish\nGerman\nRussian\nJapanese"
|
||||||
TRANS=$(echo -e "$TRANSS" | wofi --dmenu -p "Choose translation:")
|
TRANS=$(echo -e "$TRANSS" | ${pkgs.wofi}/bin/wofi --dmenu -p "Choose translation:")
|
||||||
|
|
||||||
export VOSK_MODEL=$MODEL
|
export VOSK_MODEL=$MODEL
|
||||||
case $TRANS in
|
case $TRANS in
|
||||||
"None")
|
"None")
|
||||||
${pkgs.custom.vosk.cli}/bin/voskcli 2>/dev/null | jq --unbuffered -r '.alternatives[0].text // empty | select(length > 0)' 2>/dev/null
|
${pkgs.custom.vosk.cli}/bin/voskcli 2>/dev/null | ${pkgs.jq}/bin/jq --unbuffered -r '.alternatives[0].text // empty | select(length > 0)' 2>/dev/null
|
||||||
;;
|
;;
|
||||||
"None-prog")
|
"None-prog")
|
||||||
${pkgs.custom.vosk.cli}/bin/voskcli 2>/dev/null | jq --unbuffered -r '.alternatives[0].text // empty, .partial // empty | select(length > 0)' 2>/dev/null
|
${pkgs.custom.vosk.cli}/bin/voskcli 2>/dev/null | ${pkgs.jq}/bin/jq --unbuffered -r '.alternatives[0].text // empty, .partial // empty | select(length > 0)' 2>/dev/null
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
${pkgs.custom.vosk.cli}/bin/voskcli 2>/dev/null | jq --unbuffered -r '.alternatives[0].text // empty | select(length > 0)' | python ~/.config/script/transcript-translate.py $TRANS
|
${pkgs.custom.vosk.cli}/bin/voskcli 2>/dev/null | ${pkgs.jq}/bin/jq --unbuffered -r '.alternatives[0].text // empty | select(length > 0)' | ${translateScript}/bin/transcript-translate "$TRANS"
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
'';
|
'';
|
||||||
|
|||||||
@@ -31,8 +31,6 @@ in {
|
|||||||
platformTheme.name = "gtk";
|
platformTheme.name = "gtk";
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = [ wallpaperGen pkgs.awww ];
|
|
||||||
|
|
||||||
xdg.configFile."script/wallpaper.sh".text = ''
|
xdg.configFile."script/wallpaper.sh".text = ''
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
@@ -48,9 +46,9 @@ in {
|
|||||||
print "img:" $0 ":text:" image_file;
|
print "img:" $0 ":text:" image_file;
|
||||||
}')
|
}')
|
||||||
|
|
||||||
IMG=$WPDIR/$(echo "$RES" | wofi --dmenu --allow-images show-icons true -theme-str '#window { width: 50%; }' -p "Choose wallpaper:")
|
IMG=$WPDIR/$(echo "$RES" | ${pkgs.wofi}/bin/wofi --dmenu --allow-images show-icons true -theme-str '#window { width: 50%; }' -p "Choose wallpaper:")
|
||||||
IMG=$(echo "$IMG" | awk -F ':' '{print $2}')
|
IMG=$(echo "$IMG" | awk -F ':' '{print $2}')
|
||||||
awww img $IMG
|
${pkgs.awww}/bin/awww img $IMG
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
{ ... }: { imports = [ ./dunst ./eww ./kanshi ./waylock ./wofi ]; }
|
{ ... }: { imports = [ ./dunst ./eww ./kanshi ./lockscreen ./wofi ]; }
|
||||||
|
|||||||
@@ -8,14 +8,11 @@
|
|||||||
settings = {
|
settings = {
|
||||||
global = {
|
global = {
|
||||||
follow = "mouse";
|
follow = "mouse";
|
||||||
height = "200";
|
height = "(0, 200)";
|
||||||
width = "350";
|
width = "350";
|
||||||
scale = "0";
|
scale = "0";
|
||||||
origin = "top-right";
|
origin = "bottom-right";
|
||||||
offset = "${
|
offset = "(${config.colorScheme.palette.gaps-screen},${config.colorScheme.palette.gaps-screen})";
|
||||||
toString ((lib.strings.toInt config.colorScheme.palette.gaps-bar)
|
|
||||||
+ (lib.strings.toInt config.colorScheme.palette.gaps-screen))
|
|
||||||
}x${config.colorScheme.palette.gaps-screen}";
|
|
||||||
notification_limit = "0";
|
notification_limit = "0";
|
||||||
progress_bar = "true";
|
progress_bar = "true";
|
||||||
progress_bar_height = "10";
|
progress_bar_height = "10";
|
||||||
@@ -54,7 +51,7 @@
|
|||||||
sticky_history = "yes";
|
sticky_history = "yes";
|
||||||
history_length = "20";
|
history_length = "20";
|
||||||
|
|
||||||
dmenu = "wofi --show dmenu -p dunst:";
|
dmenu = "${pkgs.wofi}/bin/wofi --show dmenu -p dunst:";
|
||||||
browser = "/usr/bin/xdg-open";
|
browser = "/usr/bin/xdg-open";
|
||||||
always_run_script = "true";
|
always_run_script = "true";
|
||||||
title = "Dunst";
|
title = "Dunst";
|
||||||
@@ -62,8 +59,8 @@
|
|||||||
corner_radius = "${config.colorScheme.palette.border-radius}";
|
corner_radius = "${config.colorScheme.palette.border-radius}";
|
||||||
ignore_dbusclose = "false";
|
ignore_dbusclose = "false";
|
||||||
layer = "top";
|
layer = "top";
|
||||||
force_xwayland = "true";
|
# force_xwayland = "true";
|
||||||
force_xinerama = "false";
|
# force_xinerama = "false";
|
||||||
|
|
||||||
mouse_left_click = "close_current";
|
mouse_left_click = "close_current";
|
||||||
mouse_middle_click = "context";
|
mouse_middle_click = "context";
|
||||||
@@ -91,6 +88,9 @@
|
|||||||
timeout = "10";
|
timeout = "10";
|
||||||
highlight = "#${config.colorScheme.palette.base0E}";
|
highlight = "#${config.colorScheme.palette.base0E}";
|
||||||
};
|
};
|
||||||
|
experimental = {
|
||||||
|
per_monitor_dpi = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,48 +1,108 @@
|
|||||||
.calendar-win {
|
|
||||||
}
|
|
||||||
|
|
||||||
calendar {
|
calendar {
|
||||||
padding: 5pt;
|
padding: $popup-scale * 1.75pt $popup-scale * 1pt;
|
||||||
|
font-size: $popup-scale * 8pt;
|
||||||
|
|
||||||
:selected {
|
header {
|
||||||
color: $base0C;
|
padding: $popup-scale * 2pt 0;
|
||||||
|
@include color-body;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
:selected { @include color-accent; }
|
||||||
color: $base05;
|
.highlight { @include color-accent; font-weight: bold; }
|
||||||
}
|
:indeterminate { color: $base03; }
|
||||||
|
|
||||||
.highlight {
|
|
||||||
color: $base0C;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
label {
|
|
||||||
font-size: 20pt;
|
|
||||||
color: $base0C;
|
|
||||||
}
|
|
||||||
|
|
||||||
:indeterminate {
|
|
||||||
color: $base03;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cal-box .sys-section-header { margin-bottom: $popup-scale * 4pt; }
|
||||||
|
|
||||||
|
|
||||||
.hour, .month {
|
.hour, .month {
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
}
|
}
|
||||||
|
|
||||||
.minute, .month {
|
.minute, .month {
|
||||||
margin-top: -4pt;
|
margin-top: $popup-scale * -4pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
color: $base0C;
|
@include color-accent;
|
||||||
background-color: $base01;
|
@include background-base;
|
||||||
border-radius: $border-radius;
|
@include border-radius;
|
||||||
}
|
}
|
||||||
|
|
||||||
.datetime {
|
.datetime {
|
||||||
padding: $gaps-window;
|
padding: $gaps-window;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Clock window accents
|
||||||
|
.weather-accent { background-color: $base0A; }
|
||||||
|
.cal-accent { background-color: $base0B; }
|
||||||
|
.bri-accent { background-color: $base09; }
|
||||||
|
.vol-accent { background-color: $base0D; }
|
||||||
|
.quick-accent { background-color: $base0E; }
|
||||||
|
|
||||||
|
// Quick actions
|
||||||
|
.quick-grid { margin-top: $popup-scale * 2pt; }
|
||||||
|
|
||||||
|
.quick-btn {
|
||||||
|
@include background-base2;
|
||||||
|
@include border-radius;
|
||||||
|
padding: $popup-scale * 8pt $popup-scale * 4pt;
|
||||||
|
margin: $popup-scale * 4px;
|
||||||
|
min-width: 0;
|
||||||
|
min-height: 0;
|
||||||
|
border: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@include background-active;
|
||||||
|
.quick-icon, .quick-label {color: $base01;}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.quick-btn-active {
|
||||||
|
.quick-icon { color: $base0E; }
|
||||||
|
.quick-label { color: $base0E; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.quick-icon { font-size: 1.5em; @include color-body; }
|
||||||
|
.quick-label { font-size: 0.68em; margin-top: $popup-scale * 3pt; @include color-body; }
|
||||||
|
|
||||||
|
// Weather section
|
||||||
|
.weather-main { margin-bottom: $popup-scale * 8pt; }
|
||||||
|
.weather-icon { font-size: 2.2em; margin-right: $popup-scale * 12pt; @include color-accent; }
|
||||||
|
.weather-temp { font-size: 1.3em; font-weight: bold; @include color-base; }
|
||||||
|
.weather-desc { font-size: 0.78em; @include color-body; }
|
||||||
|
.weather-stats { margin-top: $popup-scale * 4pt; }
|
||||||
|
|
||||||
|
// Volume section
|
||||||
|
.ctrl-row { margin-bottom: $popup-scale * 4pt; }
|
||||||
|
.ctrl-icon { font-size: 1.1em; min-width: $popup-scale * 22pt; @include border-radius; @include color-body; }
|
||||||
|
.ctrl-icon:hover { @include background-active; }
|
||||||
|
.ctrl-muted { @include color-inactive; }
|
||||||
|
.ctrl-value { font-size: 0.72em; min-width: $popup-scale * 28pt; @include color-active; }
|
||||||
|
|
||||||
|
scale.ctrl-slider.ctrl-slider-muted {
|
||||||
|
trough {
|
||||||
|
highlight { background-color: $base03; }
|
||||||
|
slider { background-color: $base03; }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
scale.ctrl-slider {
|
||||||
|
padding: $popup-scale * 2pt $popup-scale * 4pt;
|
||||||
|
trough {
|
||||||
|
@include border-radius;
|
||||||
|
@include background-base2;
|
||||||
|
min-height: 5px;
|
||||||
|
highlight { background-color: $base0C; @include border-radius; }
|
||||||
|
}
|
||||||
|
slider {
|
||||||
|
background-color: $base07;
|
||||||
|
min-height: 11px;
|
||||||
|
min-width: 11px;
|
||||||
|
@include border-radius;
|
||||||
|
margin: -3px;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,32 @@
|
|||||||
|
$base00: #000000;
|
||||||
|
$base01: #060a0f;
|
||||||
|
$base02: #212c38;
|
||||||
|
$base03: #3f5268;
|
||||||
|
$base04: #617b9a;
|
||||||
|
$base05: #90a7c1;
|
||||||
|
$base06: #c9d3df;
|
||||||
|
$base07: #fcfcfc;
|
||||||
|
$base08: #ffac56;
|
||||||
|
$base09: #feea74;
|
||||||
|
$base0A: #bffe8a;
|
||||||
|
$base0B: #4cfefa;
|
||||||
|
$base0C: #62acfd;
|
||||||
|
$base0D: #9b9bfd;
|
||||||
|
$base0E: #fe9bda;
|
||||||
|
$base0F: #fc8999;
|
||||||
|
|
||||||
|
|
||||||
|
$fg: $base07;
|
||||||
|
$bg0: $base00;
|
||||||
|
$bg1: $base01;
|
||||||
|
|
||||||
|
$border-color: $base03;
|
||||||
|
$border-color-focus: $base04;
|
||||||
|
$border-radius: 8px;
|
||||||
|
$border-width: 2px;
|
||||||
|
|
||||||
|
$gaps-screen: 8px;
|
||||||
|
$gaps-window: 4px;
|
||||||
|
|
||||||
|
$panel-font-size: 10pt;
|
||||||
|
$popup-scale: 1;
|
||||||
@@ -1,8 +1,36 @@
|
|||||||
|
// Bar icons
|
||||||
|
.net-icon { font-size: 14px; padding: 3pt 0; }
|
||||||
|
.net-active, .blt-on { @include color-base; }
|
||||||
|
.net-dim { @include color-inactive; }
|
||||||
|
.blt-connected { @include color-accent; }
|
||||||
|
|
||||||
.net {
|
// Popup window section accents
|
||||||
color: $base07;
|
.wifi-accent { background-color: $base0C; }
|
||||||
|
.eth-accent { background-color: $base0B; }
|
||||||
|
.blt-accent { background-color: $base0D; }
|
||||||
|
.usb-accent { background-color: $base09; }
|
||||||
|
|
||||||
|
// Netinfo rows
|
||||||
|
.netinfo-row { margin-bottom: $popup-scale * 3pt; }
|
||||||
|
.netinfo-label, .netinfo-value, .netinfo-dim { font-size: 0.72em; }
|
||||||
|
.netinfo-label { @include color-active; min-width: $popup-scale * 60px; }
|
||||||
|
.netinfo-value { @include color-body; }
|
||||||
|
.netinfo-dim { color: $base03; margin-bottom: $popup-scale * 4pt; }
|
||||||
|
|
||||||
|
// Section toggle button
|
||||||
|
.net-toggle-btn {
|
||||||
|
padding: $popup-scale * 2pt $popup-scale * 4pt;
|
||||||
|
@include border-radius;
|
||||||
|
font-size: 1.1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.blt {
|
// Bluetooth device list
|
||||||
color: $base0C;
|
.bt-device-row { margin-bottom: $popup-scale * 4pt; }
|
||||||
}
|
.bt-device-name { font-size: 0.78em; @include color-body; }
|
||||||
|
.bt-device-btn { padding: $popup-scale * 2pt $popup-scale * 6pt; @include border-radius; font-size: 1em; }
|
||||||
|
|
||||||
|
// Shared button states
|
||||||
|
.net-toggle-btn:hover,
|
||||||
|
.bt-device-btn:hover { @include background-active; }
|
||||||
|
.net-toggle-on, .bt-btn-on { @include color-base; }
|
||||||
|
.net-toggle-off, .bt-btn-off { @include color-inactive; }
|
||||||
|
|||||||
@@ -1,26 +1,23 @@
|
|||||||
.powermenu-box {
|
.pm-overlay {
|
||||||
padding-left: 2.5rem;
|
background-color: rgba(0, 0, 0, 0.55);
|
||||||
padding-right: 2.5rem;
|
|
||||||
padding-top: 3rem;
|
|
||||||
padding-bottom: 3rem;
|
|
||||||
margin:0 0 0 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.powermenu-entry {
|
.pm-win {
|
||||||
margin: 0 0.5rem;
|
padding: $popup-scale * 10pt;
|
||||||
|
font-size: $popup-scale * $panel-font-size;
|
||||||
}
|
}
|
||||||
|
|
||||||
.powermenu-button {
|
.pm-btn {
|
||||||
background-color: $base02;
|
@include background-base2;
|
||||||
border-radius: 1rem;
|
@include border-radius;
|
||||||
transition: 0.3s;
|
padding: $popup-scale * 20pt $popup-scale * 16pt;
|
||||||
padding: 3.25rem 4rem;
|
margin: $popup-scale * 6px;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
@include background-active;
|
||||||
|
.pm-icon, .pm-label { color: $base01; }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.powermenu-button:hover {
|
.pm-icon { font-size: 2.4em; @include color-body; }
|
||||||
background-color:$base03;
|
.pm-label { font-size: 0.70em; margin-top: $popup-scale * 5pt; @include color-body; }
|
||||||
}
|
|
||||||
|
|
||||||
.powermenu-icon {
|
|
||||||
font-size: 4rem;
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,75 +1,90 @@
|
|||||||
|
|
||||||
.radio-win {
|
.radio-accent { background-color: $base0D; }
|
||||||
//margin: $gaps-screen;
|
|
||||||
//padding: .5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.album_art {
|
// Now playing
|
||||||
|
.radio-now-playing {
|
||||||
|
margin-bottom: $popup-scale * 8pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.radio-art {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 240px;
|
@include border-radius;
|
||||||
min-height: 240px;
|
@include background-base2;
|
||||||
min-width: 240px;
|
min-width: $popup-scale * 72px;
|
||||||
margin: $gaps-screen;
|
min-height: $popup-scale * 72px;
|
||||||
border-radius: $border-radius;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.song {
|
.radio-art-icon {
|
||||||
color: $base0C;
|
font-size: 2em;
|
||||||
font-size: 24px;
|
@include color-body;
|
||||||
|
}
|
||||||
|
|
||||||
|
.radio-song {
|
||||||
|
font-size: 0.88em;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
margin: 20px 0px 0px 0px;
|
@include color-base;
|
||||||
|
margin-bottom: $popup-scale * 2pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
.artist {
|
.radio-artist {
|
||||||
color: $base0E;
|
font-size: 0.74em;
|
||||||
font-size: 16px;
|
@include color-body;
|
||||||
font-weight: normal;
|
|
||||||
margin: 0px 0px $gaps-screen 0px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn_bar {
|
// Controls
|
||||||
color: $base05;
|
.radio-controls {
|
||||||
font-size: 20px;
|
margin-top: $popup-scale * 6pt;
|
||||||
font-weight: bold;
|
|
||||||
margin: $gaps-screen 0px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn_play {
|
.radio-ctrl-btn {
|
||||||
font-size: 48px;
|
font-size: 2em;
|
||||||
font-weight: bold;
|
padding: $popup-scale * 4pt $popup-scale * 20pt;
|
||||||
margin: 0 12px;
|
@include border-radius;
|
||||||
|
@include color-body;
|
||||||
|
&:hover { @include background-active; @include color-base; }
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn_play:hover {
|
// Station list
|
||||||
color: $base07;
|
.station-list {}
|
||||||
|
|
||||||
|
scrollbar {
|
||||||
|
background-color: transparent;
|
||||||
|
border: none;
|
||||||
|
min-width: 6px;
|
||||||
|
}
|
||||||
|
scrollbar trough {
|
||||||
|
@include background-base2;
|
||||||
|
@include border-radius;
|
||||||
|
min-width: 6px;
|
||||||
|
}
|
||||||
|
scrollbar slider {
|
||||||
|
background-color: $base04;
|
||||||
|
@include border-radius;
|
||||||
|
min-width: 6px;
|
||||||
|
min-height: 20px;
|
||||||
|
&:hover { background-color: $base05; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.station-row {
|
||||||
.station_list {
|
padding: $popup-scale * 4pt $popup-scale * 3pt;
|
||||||
border-right-color: $base03;
|
@include border-radius;
|
||||||
border-right-style: solid;
|
&:hover { @include background-base2; }
|
||||||
border-right-width: $border-width;
|
|
||||||
margin-right: $gaps-screen;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.station_art {
|
.station-row-active {
|
||||||
|
.station-name { @include color-accent; }
|
||||||
|
}
|
||||||
|
|
||||||
|
.station-icon {
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: 50px;
|
@include border-radius;
|
||||||
min-height: 50px;
|
@include background-base2;
|
||||||
min-width: 50px;
|
min-width: $popup-scale * 28px;
|
||||||
margin: $gaps-window;
|
min-height: $popup-scale * 28px;
|
||||||
margin-right: $gaps-screen;
|
margin-right: $popup-scale * 8pt;
|
||||||
background-color: $base00;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
border-color: $base00;
|
|
||||||
border-style: solid;
|
|
||||||
border-width: $border-width;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.station_art:hover {
|
.station-name {
|
||||||
border-color: $base04;
|
font-size: 0.76em;
|
||||||
}
|
@include color-body;
|
||||||
|
|
||||||
.station_sel {
|
|
||||||
border-color: $base03;
|
|
||||||
}
|
}
|
||||||
@@ -1,69 +1,93 @@
|
|||||||
|
|
||||||
.cpubar {
|
// Bar module rings
|
||||||
color: $base0C;
|
.cpubar { color: $base0C; }
|
||||||
}
|
.gpubar { color: $base0E; }
|
||||||
|
.membar { color: $base08; }
|
||||||
|
.batbar { color: $base0B; }
|
||||||
|
.cpubar, .gpubar, .membar, .batbar { @include background-base2; margin: $gaps-window 0; }
|
||||||
|
|
||||||
.gpubar {
|
// Window chrome
|
||||||
color: $base0E;
|
.sys-win { padding: $popup-scale * 10pt; font-size: $popup-scale * $panel-font-size; }
|
||||||
}
|
.sys-section { margin-bottom: 0; }
|
||||||
|
.sys-section-header { margin-bottom: $popup-scale * 10pt; }
|
||||||
.membar {
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
|
|
||||||
.batbar {
|
|
||||||
color: $base0B;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cpubar,
|
|
||||||
.gpubar,
|
|
||||||
.membar,
|
|
||||||
.batbar {
|
|
||||||
background-color: $bg0;
|
|
||||||
margin: $gaps-window 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.cpu-core-usage, .gpu-core-usage, .memory-usage {
|
|
||||||
background-color: $bg0;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
padding: 2pt;
|
|
||||||
margin: 1pt;
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
.cpu-core-usage trough * {
|
|
||||||
background-color: $base0C;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
padding: 2pt;
|
|
||||||
}
|
|
||||||
.gpu-core-usage trough * {
|
|
||||||
background-color: $base0E;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
padding: 2pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
.memory-usage trough * {
|
|
||||||
background-color: $base08;
|
|
||||||
border-radius: $border-radius;
|
|
||||||
padding: 2pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
.spacer {
|
|
||||||
color: $bg1;
|
|
||||||
padding: $gaps-window;
|
|
||||||
margin:0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sys-win {
|
|
||||||
// @include window;
|
|
||||||
// background-color: $bg1;
|
|
||||||
// color: $fg;
|
|
||||||
// margin: $gaps-win;
|
|
||||||
padding: 5pt;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sys-label {
|
.sys-label {
|
||||||
font-weight: bolder;
|
font-size: 0.72em;
|
||||||
color: $base04;
|
font-weight: bold;
|
||||||
|
letter-spacing: 0.14em;
|
||||||
|
@include color-body;
|
||||||
|
}
|
||||||
|
|
||||||
|
.section-accent {
|
||||||
|
min-width: 3px;
|
||||||
|
border-radius: 2px;
|
||||||
|
margin-right: $popup-scale * 8pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cpu-accent { background-color: $base0C; }
|
||||||
|
.gpu-accent { background-color: $base0E; }
|
||||||
|
.ram-accent { background-color: $base08; }
|
||||||
|
.bat-accent { background-color: $base0B; }
|
||||||
|
|
||||||
|
.section-sep {
|
||||||
|
background-color: $base03;
|
||||||
|
min-height: 2px;
|
||||||
|
margin: $popup-scale * 6pt 0 $popup-scale * 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
// All rings and progress tracks share the same background
|
||||||
|
.cpu-usage-ring, .cpu-freq-ring,
|
||||||
|
.gpu-ring, .gpu-freq-ring,
|
||||||
|
.ram-ring, .swap-ring, .bat-ring,
|
||||||
|
.vram-bar { @include background-base2; }
|
||||||
|
|
||||||
|
// Ring colors
|
||||||
|
.cpu-usage-ring { color: $base0C; }
|
||||||
|
.cpu-freq-ring, .gpu-freq-ring { color: $base0D; }
|
||||||
|
.gpu-ring { color: $base0E; }
|
||||||
|
.ram-ring { color: $base08; }
|
||||||
|
.swap-ring { color: $base09; }
|
||||||
|
|
||||||
|
// Ring margins - freq rings use larger margins for concentric overlay effect
|
||||||
|
.cpu-usage-ring, .gpu-ring { margin: $popup-scale * 3pt; }
|
||||||
|
.ram-ring, .bat-ring { margin: $popup-scale * 4pt; }
|
||||||
|
.swap-ring { margin: $popup-scale * 3.5pt; }
|
||||||
|
.cpu-freq-ring { margin: $popup-scale * 12px; }
|
||||||
|
.gpu-freq-ring { margin: $popup-scale * 13px; }
|
||||||
|
|
||||||
|
// Shared label patterns
|
||||||
|
.gpu-ring-value, .gpu-stat-value, .ram-used-label { font-weight: bold; @include color-body; }
|
||||||
|
.gpu-ring-value { font-size: 0.82em; }
|
||||||
|
.gpu-stat-value { font-size: 0.85em; }
|
||||||
|
.ram-used-label { font-size: 0.95em; }
|
||||||
|
|
||||||
|
.gpu-ring-label, .gpu-stat-label,
|
||||||
|
.vram-usage-label, .swap-section-label { font-size: 0.62em; @include color-active; }
|
||||||
|
.gpu-ring-label, .vram-usage-label, .swap-section-label { margin-top: 2pt; }
|
||||||
|
|
||||||
|
.cpu-core-label { font-size: 0.7em; @include color-active; }
|
||||||
|
.bat-ring-label { font-size: 0.7em; @include color-body; }
|
||||||
|
.ram-total-label { font-size: 0.72em; @include color-active; }
|
||||||
|
|
||||||
|
// GPU stats row
|
||||||
|
.gpu-stats-row { margin-top: $popup-scale * 6pt; margin-bottom: $popup-scale * 2pt; }
|
||||||
|
|
||||||
|
// VRAM
|
||||||
|
.vram-row { margin-top: $popup-scale * 6pt; }
|
||||||
|
|
||||||
|
.vram-bar {
|
||||||
|
@include border-radius;
|
||||||
|
padding: $popup-scale * 2pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.vram-bar trough * {
|
||||||
|
background-color: $base0E;
|
||||||
|
@include border-radius;
|
||||||
|
}
|
||||||
|
|
||||||
|
// RAM cached ring overrides group background
|
||||||
|
.ram-cached-ring {
|
||||||
|
@include color-active;
|
||||||
|
background-color: transparent;
|
||||||
|
margin: $popup-scale * 4pt;
|
||||||
}
|
}
|
||||||
@@ -1,35 +1,28 @@
|
|||||||
.tray * {
|
.tray * {
|
||||||
padding: $border-width 0px;
|
padding: $border-width 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tray menu {
|
.tray menu {
|
||||||
background-color: $base01;
|
|
||||||
color: $base07;
|
|
||||||
@include border-radius;
|
@include border-radius;
|
||||||
@include border-active;
|
@include border-active;
|
||||||
|
@include background-base;
|
||||||
|
@include color-base;
|
||||||
|
|
||||||
|
padding: 10px 0;
|
||||||
|
|
||||||
padding: 10px 0px;
|
> menuitem {
|
||||||
|
|
||||||
>menuitem {
|
|
||||||
margin: 2px $border-width;
|
margin: 2px $border-width;
|
||||||
padding: 0px 10px;
|
padding: 0 10px;
|
||||||
|
|
||||||
&:disabled label {
|
&:disabled label { @include color-active; }
|
||||||
color: $base04;
|
&:hover { @include background-accent; }
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
background-color: $base0C;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
separator {
|
separator {
|
||||||
background-color: $base03;
|
@include background-base2;
|
||||||
padding-top: 1px;
|
padding-top: 1px;
|
||||||
margin:10px 0px;
|
margin: 10px 0;
|
||||||
|
|
||||||
&:last-child {
|
&:last-child { padding: unset; }
|
||||||
padding: unset;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -18,8 +18,45 @@
|
|||||||
border-color: $base04;
|
border-color: $base04;
|
||||||
}
|
}
|
||||||
|
|
||||||
@mixin test {
|
@mixin background-base {
|
||||||
|
background-color: $base01;
|
||||||
|
}
|
||||||
|
@mixin background-base2 {
|
||||||
|
background-color: $base02;
|
||||||
|
}
|
||||||
|
@mixin background-active {
|
||||||
|
background-color: $base04;
|
||||||
|
}
|
||||||
|
@mixin background-accent {
|
||||||
|
background-color: $base0C;
|
||||||
|
}
|
||||||
|
@mixin color-base {
|
||||||
|
color: $base07;
|
||||||
|
}
|
||||||
|
@mixin color-inactive {
|
||||||
|
color: $base02;
|
||||||
|
}
|
||||||
|
@mixin color-active {
|
||||||
|
color: $base04;
|
||||||
|
}
|
||||||
|
@mixin color-accent {
|
||||||
|
color: $base0C;
|
||||||
|
}
|
||||||
|
@mixin color-body {
|
||||||
|
color: $base05;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin panel-base {
|
||||||
|
@include border-radius;
|
||||||
|
@include border-inactive;
|
||||||
|
@include background-base;
|
||||||
|
@include color-base;
|
||||||
|
}
|
||||||
|
|
||||||
|
@mixin mod-edge {
|
||||||
|
border-right-style: none;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
border-top-right-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* GENERAL */
|
/* GENERAL */
|
||||||
@@ -31,9 +68,9 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
tooltip {
|
tooltip {
|
||||||
background: $base01;
|
@include border-active;
|
||||||
border: $border-width solid $base04;
|
@include border-radius;
|
||||||
border-radius: $border-radius;
|
@include background-base;
|
||||||
|
|
||||||
label {
|
label {
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
@@ -49,33 +86,21 @@ tooltip {
|
|||||||
font-weight: 900;
|
font-weight: 900;
|
||||||
}
|
}
|
||||||
|
|
||||||
.grey {
|
/* WORKSPACE COLORS - emitted dynamically by scripts/workspaces as class names */
|
||||||
color: $base02;
|
.grey { color: $base02; }
|
||||||
}
|
.red { color: $base0F; }
|
||||||
|
.orange { color: $base08; }
|
||||||
|
.green { color: $base0B; }
|
||||||
|
.blue { color: $base0C; }
|
||||||
|
|
||||||
.red {
|
.workspace-sep {
|
||||||
color: $base0F;
|
border-top: 2px solid $base03;
|
||||||
}
|
|
||||||
|
|
||||||
.orange {
|
|
||||||
color: $base08;
|
|
||||||
}
|
|
||||||
|
|
||||||
.green {
|
|
||||||
color: $base0B;
|
|
||||||
}
|
|
||||||
|
|
||||||
.blue {
|
|
||||||
color: $base0C;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* WINDOW WRAPPER CSS */
|
/* WINDOW WRAPPER CSS */
|
||||||
|
|
||||||
.winevent {
|
.winevent {
|
||||||
background-color: $base01;
|
@include panel-base;
|
||||||
color: $base07;
|
|
||||||
@include border-radius;
|
|
||||||
@include border-inactive;
|
|
||||||
}
|
}
|
||||||
.winevent:hover {
|
.winevent:hover {
|
||||||
@include border-active;
|
@include border-active;
|
||||||
@@ -91,19 +116,12 @@ tooltip {
|
|||||||
/* MODULE WRAPPER CSS */
|
/* MODULE WRAPPER CSS */
|
||||||
|
|
||||||
.modevent {
|
.modevent {
|
||||||
background-color: $base01;
|
@include panel-base;
|
||||||
color: $base07;
|
@include mod-edge;
|
||||||
@include border-radius;
|
|
||||||
@include border-inactive;
|
|
||||||
border-right-style: none;
|
|
||||||
border-bottom-right-radius: 0;
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
}
|
}
|
||||||
.modevent:hover {
|
.modevent:hover {
|
||||||
@include border-active;
|
@include border-active;
|
||||||
border-right-style: none;
|
@include mod-edge;
|
||||||
border-bottom-right-radius: 0;
|
|
||||||
border-top-right-radius: 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modinner {
|
.modinner {
|
||||||
|
|||||||
@@ -5,8 +5,12 @@
|
|||||||
(include "modules/systray.yuck")
|
(include "modules/systray.yuck")
|
||||||
(include "modules/clock.yuck")
|
(include "modules/clock.yuck")
|
||||||
|
|
||||||
(include "windows/calendar.yuck")
|
(defvar active-panel "")
|
||||||
|
|
||||||
(include "windows/sys.yuck")
|
(include "windows/sys.yuck")
|
||||||
|
(include "windows/net.yuck")
|
||||||
|
(include "windows/clock.yuck")
|
||||||
|
(include "windows/popup.yuck")
|
||||||
(include "windows/radio.yuck")
|
(include "windows/radio.yuck")
|
||||||
(include "windows/powermenu.yuck")
|
(include "windows/powermenu.yuck")
|
||||||
|
|
||||||
|
|||||||
@@ -5,8 +5,8 @@
|
|||||||
(eventbox
|
(eventbox
|
||||||
:onhover "${EWW_CMD} update date_rev=true"
|
:onhover "${EWW_CMD} update date_rev=true"
|
||||||
:onhoverlost "${EWW_CMD} update date_rev=false"
|
:onhoverlost "${EWW_CMD} update date_rev=false"
|
||||||
:onclick "(sleep 0.1 && eww-open-on-current-screen calendar --toggle)"
|
:onclick "(sleep 0.1 && scripts/panel-toggle clock)"
|
||||||
:onrightclick "(sleep 0.1 && eww-open-on-current-screen powermenu --toggle)"
|
:onrightclick "(sleep 0.1 && scripts/powermenu-toggle)"
|
||||||
(box
|
(box
|
||||||
:class "datetime"
|
:class "datetime"
|
||||||
(overlay
|
(overlay
|
||||||
@@ -14,10 +14,10 @@
|
|||||||
:orientation "v"
|
:orientation "v"
|
||||||
(label :show-truncated false
|
(label :show-truncated false
|
||||||
:class "hour"
|
:class "hour"
|
||||||
:text {hour})
|
:text {time.hour})
|
||||||
(label :show-truncated false
|
(label :show-truncated false
|
||||||
:class "minute"
|
:class "minute"
|
||||||
:text {minute}))
|
:text {time.minute}))
|
||||||
(revealer
|
(revealer
|
||||||
:reveal date_rev
|
:reveal date_rev
|
||||||
(box
|
(box
|
||||||
@@ -25,10 +25,10 @@
|
|||||||
:orientation "v"
|
:orientation "v"
|
||||||
(label :show-truncated "false"
|
(label :show-truncated "false"
|
||||||
:class "day"
|
:class "day"
|
||||||
:text {day})
|
:text {time.day})
|
||||||
(label :show-truncated "false"
|
(label :show-truncated "false"
|
||||||
:class "month"
|
:class "month"
|
||||||
:text {month}))
|
:text {time.month}))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@@ -36,7 +36,5 @@
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(defpoll hour :interval "15s" "date '+%H'")
|
(defpoll time :interval "15s" "date '+{\"hour\":\"%H\",\"minute\":\"%M\",\"day\":\"%d\",\"month\":\"%m\"}'")
|
||||||
(defpoll minute :interval "15s" "date '+%M'")
|
|
||||||
(defpoll day :interval "15s" "date '+%d'")
|
|
||||||
(defpoll month :interval "15s" "date '+%m'")
|
|
||||||
|
|||||||
@@ -1,17 +1,30 @@
|
|||||||
(deflisten net :initial '{"name":"","icon":""}'"scripts/net/net")
|
(deflisten net
|
||||||
|
:initial '{"wifi":{"connected":false,"enabled":false,"icon":"","ssid":""},"ethernet":{"connected":false},"usb":{"connected":false}}'
|
||||||
|
"scripts/net/net")
|
||||||
|
|
||||||
|
(deflisten bluetooth
|
||||||
|
:initial '{"powered":false,"connected":false,"device":""}'
|
||||||
|
"scripts/net/bluetooth")
|
||||||
|
|
||||||
(defwidget net-mod []
|
(defwidget net-mod []
|
||||||
(module
|
(module
|
||||||
(box
|
(eventbox
|
||||||
:orientation "v"
|
:onclick "(sleep 0.1 && scripts/panel-toggle net)"
|
||||||
(button
|
(box :orientation "v"
|
||||||
:class "net"
|
(label
|
||||||
:tooltip {net.name}
|
:class "net-icon ${net.ethernet.connected ? 'net-active' : 'net-dim'}"
|
||||||
{net.icon})
|
:tooltip {net.ethernet.connected ? "Ethernet: Connected" : "Ethernet: Disconnected"}
|
||||||
|
:text "")
|
||||||
(button
|
(label
|
||||||
:class "blt"
|
:visible {net.usb.connected}
|
||||||
(label :class "icon-text" :text "B"))
|
:class "net-icon net-active"
|
||||||
)
|
:tooltip "USB: Connected"
|
||||||
)
|
:text "")
|
||||||
)
|
(label
|
||||||
|
:class "net-icon ${net.wifi.connected ? 'net-active' : 'net-dim'}"
|
||||||
|
:tooltip {net.wifi.connected ? "WiFi: ${net.wifi.ssid}" : "WiFi: Disconnected"}
|
||||||
|
:text {net.wifi.icon})
|
||||||
|
(label
|
||||||
|
:class "net-icon ${bluetooth.connected ? 'blt-connected' : bluetooth.powered ? 'blt-on' : 'net-dim'}"
|
||||||
|
:tooltip {bluetooth.connected ? "Bluetooth: ${bluetooth.device}" : bluetooth.powered ? "Bluetooth: On" : "Bluetooth: Off"}
|
||||||
|
:text {bluetooth.connected ? "" : bluetooth.powered ? "" : ""})))))
|
||||||
|
|||||||
@@ -1,42 +1,32 @@
|
|||||||
(deflisten cpu :initial '{}' "scripts/sys/cpu")
|
(deflisten gpu :initial '{"gfx_pct":0,"mem_pct":0,"media_pct":0,"sclk":0,"mclk":0,"sclk_pct":0,"mclk_pct":0,"vclk":0,"vclk_pct":0,"temp":0,"power":0,"vram_used":0,"vram_total":1}' "scripts/sys/gpu")
|
||||||
(deflisten gpu :initial '{"devices":[{"GRBM2":{}}]}' "scripts/sys/gpu")
|
(deflisten memory :initial '{"human":{"used":"0G","total":"0G","cached":"0G"},"used":0.0,"total":1.0,"cached":0.0}' "scripts/sys/memory")
|
||||||
(deflisten memory :initial '{"human":{"used":"0G","total":"0G"},"used":0.0,"total":1.0}' "scripts/sys/memory")
|
|
||||||
|
|
||||||
(deflisten battery :initial '{"visible":false,"percentage":0.0,"color":"#FFFFFF"}' "scripts/sys/battery")
|
(deflisten battery :initial '{"visible":false,"percentage":0.0,"color":"#FFFFFF"}' "scripts/sys/battery")
|
||||||
|
|
||||||
(defwidget sys-mod []
|
(defwidget sys-mod []
|
||||||
(module
|
(module
|
||||||
(eventbox
|
(eventbox
|
||||||
:onclick "(sleep 0.1 && eww-open-on-current-screen sys --toggle)"
|
:onclick "(sleep 0.1 && scripts/panel-toggle sys)"
|
||||||
(box
|
(box :orientation "v"
|
||||||
:orientation "v"
|
|
||||||
(circular-progress
|
(circular-progress
|
||||||
:value {EWW_CPU.avg}
|
:value {EWW_CPU.avg}
|
||||||
:class "cpubar"
|
:class "cpubar"
|
||||||
:thickness 6
|
:width 28 :height 28 :thickness 6
|
||||||
(label :class "icon-text" :text "C"))
|
:tooltip "CPU ${round(EWW_CPU.avg, 0)}%")
|
||||||
|
|
||||||
(circular-progress
|
(circular-progress
|
||||||
:value {gpu.devices[0].GRBM2?.CommandProcessor-Graphics?.value?:0}
|
:value {gpu.gfx_pct}
|
||||||
:class "gpubar"
|
:class "gpubar"
|
||||||
:thickness 6
|
:width 28 :height 28 :thickness 6
|
||||||
(label :class "icon-text" :text "G"))
|
:tooltip "GPU ${round(gpu.gfx_pct, 0)}%")
|
||||||
(circular-progress
|
(circular-progress
|
||||||
:value {100*memory.used/memory.total}
|
:value {100*memory.used/memory.total}
|
||||||
:class "membar"
|
:class "membar"
|
||||||
:thickness 6
|
:width 28 :height 28 :thickness 6
|
||||||
:tooltip "${memory.human.used} / ${memory.human.total}"
|
:tooltip "RAM ${memory.human.used} / ${memory.human.total}")
|
||||||
(label :class "icon-text" :text "M"))
|
|
||||||
|
|
||||||
(circular-progress
|
(circular-progress
|
||||||
:value {battery.percentage}
|
:value {battery.percentage}
|
||||||
:class "batbar"
|
:class "batbar"
|
||||||
:visible {battery.visible}
|
:visible {battery.visible}
|
||||||
:style "color: ${battery.color};"
|
:style "color: ${battery.color};"
|
||||||
:thickness 6
|
:width 28 :height 28 :thickness 6
|
||||||
:tooltip "${battery.status} @ ${battery.wattage}"
|
:tooltip "Bat ${round(battery.percentage, 0)}% · ${battery.status} @ ${battery.wattage}")))))
|
||||||
(label :class "icon-text" :text "B"))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -4,17 +4,17 @@
|
|||||||
(module
|
(module
|
||||||
(eventbox
|
(eventbox
|
||||||
:onscroll "echo {} | sed -e 's/up/-1/' -e 's/down/+1/' | xargs -I % hyprctl eval \"hl.dispatch(hl.dsp.focus({ workspace = '%' }))\""
|
:onscroll "echo {} | sed -e 's/up/-1/' -e 's/down/+1/' | xargs -I % hyprctl eval \"hl.dispatch(hl.dsp.focus({ workspace = '%' }))\""
|
||||||
|
|
||||||
(box
|
(box
|
||||||
:class "module workspaces"
|
:class "module workspaces"
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
(for ws in workspace
|
(for ws in workspace
|
||||||
(button
|
(button
|
||||||
:onclick "hyprctl eval \"hl.dispatch(hl.dsp.focus({ workspace = '${ws.number}' }))\""
|
:class `${ws.sep ? "workspace-sep" : ""}`
|
||||||
|
:onclick "hyprctl eval \"hl.dispatch(hl.dsp.focus({ workspace = '${ws.target}' }))\""
|
||||||
(label
|
(label
|
||||||
:show-truncated false
|
:show-truncated false
|
||||||
:class "icon-text ${ws.color}"
|
:class `icon-text ${ws.color}`
|
||||||
:text `${ws.focused ? "" : ""}`
|
:text `${ws.state == "focused" ? "" : ws.state == "active" ? "" : "○"}`
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
is_active() {
|
||||||
|
rfkill list wifi 2>/dev/null | grep -q "Soft blocked: yes"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
status)
|
||||||
|
is_active && echo true || echo false
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if is_active; then
|
||||||
|
rfkill unblock all
|
||||||
|
echo false
|
||||||
|
else
|
||||||
|
rfkill block all
|
||||||
|
echo true
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
+29
@@ -0,0 +1,29 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
BACKLIGHT="/sys/class/backlight"
|
||||||
|
DEV=$(ls "$BACKLIGHT" 2>/dev/null | head -n1)
|
||||||
|
|
||||||
|
gen_output() {
|
||||||
|
if [ -z "$DEV" ]; then
|
||||||
|
echo '{"percent":0,"available":false}'
|
||||||
|
return
|
||||||
|
fi
|
||||||
|
max=$(cat "$BACKLIGHT/$DEV/max_brightness")
|
||||||
|
cur=$(cat "$BACKLIGHT/$DEV/actual_brightness" 2>/dev/null || cat "$BACKLIGHT/$DEV/brightness")
|
||||||
|
percent=$(awk -v c="$cur" -v m="$max" 'BEGIN{print int(c/m*100+0.5)}')
|
||||||
|
printf '{"percent":%d,"available":true}\n' "$percent"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
set)
|
||||||
|
[ -z "$DEV" ] && exit 0
|
||||||
|
brightnessctl -d "$DEV" set "${2}%" -q 2>/dev/null
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
gen_output
|
||||||
|
[ -z "$DEV" ] && exit 0
|
||||||
|
udevadm monitor --udev --subsystem-match=backlight 2>/dev/null | while read -r _; do
|
||||||
|
gen_output
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
eww close popup 2>/dev/null
|
||||||
|
hyprpicker -a
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
case "$1" in
|
||||||
|
status)
|
||||||
|
dunstctl is-paused
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if dunstctl is-paused | grep -q true; then
|
||||||
|
dunstctl set-paused false
|
||||||
|
echo false
|
||||||
|
else
|
||||||
|
dunstctl set-paused true
|
||||||
|
echo true
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
eww close popup 2>/dev/null
|
||||||
|
eww close powermenu 2>/dev/null
|
||||||
|
# swaylock #swaylock-effects
|
||||||
|
hyprlock
|
||||||
|
# gtklock
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
playerctl "$@"
|
||||||
+38
@@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
emit() {
|
||||||
|
local powered=false connected=false device=""
|
||||||
|
|
||||||
|
if bluetoothctl show 2>/dev/null | grep -q "Powered: yes"; then
|
||||||
|
powered=true
|
||||||
|
while IFS= read -r line; do
|
||||||
|
local mac info
|
||||||
|
mac=$(echo "$line" | awk '{ print $2 }')
|
||||||
|
info=$(bluetoothctl info "$mac" 2>/dev/null)
|
||||||
|
if echo "$info" | grep -q "Connected: yes"; then
|
||||||
|
device=$(echo "$info" | awk -F': ' '/^\tName:/ { print $2; exit }')
|
||||||
|
connected=true
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done < <(bluetoothctl devices 2>/dev/null)
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf '{"powered":%s,"connected":%s,"device":"%s"}\n' "$powered" "$connected" "$device"
|
||||||
|
}
|
||||||
|
|
||||||
|
emit
|
||||||
|
|
||||||
|
tmp=$(mktemp -d)
|
||||||
|
pipe="$tmp/bt-events"
|
||||||
|
mkfifo "$pipe"
|
||||||
|
trap 'rm -rf "$tmp"; kill 0 2>/dev/null' EXIT INT TERM
|
||||||
|
|
||||||
|
# Poll every 10s as reliable fallback for missed events
|
||||||
|
(while true; do sleep 10; echo poll; done) > "$pipe" &
|
||||||
|
|
||||||
|
# bluetoothctl monitor for reactive device connect/disconnect events
|
||||||
|
(bluetoothctl monitor 2>/dev/null | grep --line-buffered -E "Powered|Connected|Device") > "$pipe" &
|
||||||
|
|
||||||
|
while IFS= read -r _ < "$pipe"; do
|
||||||
|
emit
|
||||||
|
done
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
emit() {
|
||||||
|
local first=true arr=""
|
||||||
|
while IFS= read -r line; do
|
||||||
|
local mac name connected
|
||||||
|
mac=$(echo "$line" | awk '{ print $2 }')
|
||||||
|
name=$(echo "$line" | awk '{ $1=$2=""; sub(/^ +/, ""); print }')
|
||||||
|
info=$(bluetoothctl info "$mac" 2>/dev/null)
|
||||||
|
connected=$(echo "$info" | grep -q "Connected: yes" && echo true || echo false)
|
||||||
|
$first || arr="${arr},"
|
||||||
|
arr="${arr}{\"mac\":\"${mac}\",\"name\":\"${name}\",\"connected\":${connected}}"
|
||||||
|
first=false
|
||||||
|
done < <(bluetoothctl devices 2>/dev/null)
|
||||||
|
echo "[${arr}]"
|
||||||
|
}
|
||||||
|
|
||||||
|
emit
|
||||||
|
|
||||||
|
tmp=$(mktemp -d)
|
||||||
|
pipe="$tmp/bt-dev-events"
|
||||||
|
mkfifo "$pipe"
|
||||||
|
trap 'rm -rf "$tmp"; kill 0 2>/dev/null' EXIT INT TERM
|
||||||
|
|
||||||
|
# Poll every 10s as fallback for missed events
|
||||||
|
(while true; do sleep 10; echo poll; done) > "$pipe" &
|
||||||
|
|
||||||
|
# Reactive updates from D-Bus
|
||||||
|
(bluetoothctl monitor 2>/dev/null | grep --line-buffered -E "Connected|Device|Powered") > "$pipe" &
|
||||||
|
|
||||||
|
while IFS= read -r _ < "$pipe"; do
|
||||||
|
emit
|
||||||
|
done
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
mac="$1"
|
||||||
|
if bluetoothctl info "$mac" 2>/dev/null | grep -q "Connected: yes"; then
|
||||||
|
bluetoothctl disconnect "$mac"
|
||||||
|
else
|
||||||
|
bluetoothctl connect "$mac"
|
||||||
|
fi
|
||||||
@@ -1,81 +1,64 @@
|
|||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
function get_time_ms {
|
get_wifi_iface() {
|
||||||
date -u +%s%3N
|
|
||||||
}
|
|
||||||
|
|
||||||
icons=("" "" "" "" "")
|
|
||||||
|
|
||||||
function get_wifi_interface() {
|
|
||||||
awk 'NR > 2 { gsub(":", "", $1); print $1; exit }' /proc/net/wireless
|
awk 'NR > 2 { gsub(":", "", $1); print $1; exit }' /proc/net/wireless
|
||||||
}
|
}
|
||||||
|
|
||||||
function toggle() {
|
get_usb_iface() {
|
||||||
status=$(rfkill | grep wlan | awk '{print $4}')
|
ip link 2>/dev/null | awk '
|
||||||
|
/^[0-9]+: usb[0-9]/ { gsub(":", "", $2); print $2; exit }
|
||||||
if [ "$status" = "unblocked" ]; then
|
/^[0-9]+: enx/ { gsub(":", "", $2); print $2; exit }
|
||||||
rfkill block wlan
|
'
|
||||||
else
|
|
||||||
rfkill unblock wlan
|
|
||||||
fi
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function gen_wifi() {
|
signal_icon() {
|
||||||
wifi_iface=$(get_wifi_interface)
|
local dbm="$1"
|
||||||
signal=$(awk -v iface="$wifi_iface" '$1 == iface ":" { print $3; exit }' /proc/net/wireless)
|
if [ -z "$dbm" ]; then echo ""; return; fi
|
||||||
level=$(awk -v n="$signal" 'BEGIN{print int((n-1)/20)}')
|
if [ "$dbm" -ge -50 ]; then echo ""
|
||||||
if [ "$level" -gt 4 ]; then
|
elif [ "$dbm" -ge -60 ]; then echo ""
|
||||||
level=4
|
elif [ "$dbm" -ge -70 ]; then echo ""
|
||||||
fi
|
elif [ "$dbm" -ge -80 ]; then echo ""
|
||||||
|
else echo ""; fi
|
||||||
icon=${icons[$level]}
|
|
||||||
ip="-"
|
|
||||||
class="net-connected"
|
|
||||||
name_raw=$(wpa_cli -g "/run/wpa_supplicant/$wifi_iface" status | grep \^ssid= | sed 's/ssid=//g')
|
|
||||||
name=$(printf "%s" "$name_raw")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function gen_ethernet() {
|
make_content() {
|
||||||
icon=""
|
local wifi_iface eth_iface
|
||||||
class="net-connected"
|
|
||||||
ip=""
|
|
||||||
name=Wired
|
|
||||||
}
|
|
||||||
|
|
||||||
function make_content() {
|
wifi_iface=$(get_wifi_iface)
|
||||||
local ethernet wifi wifi_iface
|
eth_iface=$(ip link | awk '/^[0-9]+: en[po]/ { gsub(":",""); print $2; exit }')
|
||||||
ethernet=$(ip link | rg "^[0-9]+: en[po]+" | head -n1 | sed 's/[a-zA-Z0-9_,><:\ -]*state //g' | sed 's/ mode [a-zA-Z0-9 ]*//g')
|
|
||||||
wifi_iface=$(get_wifi_interface)
|
# Ethernet
|
||||||
if [ -n "$wifi_iface" ]; then
|
local eth_connected=false
|
||||||
wifi=$(wpa_cli -g "/run/wpa_supplicant/$wifi_iface" status | rg "^wpa_state=" | sed 's/wpa_state=//g')
|
if [ -n "$eth_iface" ]; then
|
||||||
|
eth_state=$(ip link show "$eth_iface" 2>/dev/null | awk '/state/ { print $9 }')
|
||||||
|
[ "$eth_state" = "UP" ] && eth_connected=true
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# test ethernet first
|
# USB tethering
|
||||||
if [[ $ethernet == "UP" ]]; then
|
local usb_iface usb_connected=false
|
||||||
gen_ethernet
|
usb_iface=$(get_usb_iface)
|
||||||
elif [[ $wifi == "COMPLETED" ]]; then
|
if [ -n "$usb_iface" ] && ip -4 addr show "$usb_iface" 2>/dev/null | grep -q "inet "; then
|
||||||
gen_wifi
|
usb_connected=true
|
||||||
else
|
|
||||||
icon=""
|
|
||||||
ip="-"
|
|
||||||
class="net-disconnected"
|
|
||||||
name="Disconnected"
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo '{"icon": "'$icon'", "name": "'$name'", "ip": "'$ip'", "class": "'$class'"}'
|
# WiFi - use IP presence as connection indicator (more reliable than wpa_cli)
|
||||||
|
local wifi_connected=false wifi_enabled=false wifi_icon="" wifi_ssid=""
|
||||||
|
if ! rfkill list wlan 2>/dev/null | grep -q "Soft blocked: yes"; then
|
||||||
|
wifi_enabled=true
|
||||||
|
fi
|
||||||
|
if [ -n "$wifi_iface" ] && ip -4 addr show "$wifi_iface" 2>/dev/null | grep -q "inet "; then
|
||||||
|
wifi_connected=true
|
||||||
|
wifi_ssid=$(wpa_cli -g "/run/wpa_supplicant/$wifi_iface" status 2>/dev/null \
|
||||||
|
| awk -F= '/^ssid=/ { print $2 }')
|
||||||
|
signal=$(awk -v iface="$wifi_iface" '$1 == iface ":" { gsub(/\./, "", $4); print $4; exit }' /proc/net/wireless)
|
||||||
|
wifi_icon=$(signal_icon "$signal")
|
||||||
|
fi
|
||||||
|
|
||||||
|
printf '{"wifi":{"connected":%s,"enabled":%s,"icon":"%s","ssid":"%s"},"ethernet":{"connected":%s},"usb":{"connected":%s}}\n' \
|
||||||
|
"$wifi_connected" "$wifi_enabled" "$wifi_icon" "$wifi_ssid" "$eth_connected" "$usb_connected"
|
||||||
}
|
}
|
||||||
|
|
||||||
if [ "$1" = "toggle" ]; then
|
make_content
|
||||||
toggle
|
ip monitor | while read -r _; do
|
||||||
else
|
|
||||||
last_time=$(get_time_ms)
|
|
||||||
make_content
|
make_content
|
||||||
ip monitor | while read -r _; do
|
done
|
||||||
current_time=$(get_time_ms)
|
|
||||||
delta=$((current_time - last_time))
|
|
||||||
if [[ $delta -gt 50 ]]; then
|
|
||||||
make_content
|
|
||||||
last_time=$(get_time_ms)
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
|
|||||||
+79
@@ -0,0 +1,79 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
get_wifi_iface() {
|
||||||
|
awk 'NR > 2 { gsub(":", "", $1); print $1; exit }' /proc/net/wireless
|
||||||
|
}
|
||||||
|
|
||||||
|
get_usb_iface() {
|
||||||
|
ip link 2>/dev/null | awk '
|
||||||
|
/^[0-9]+: usb[0-9]/ { gsub(":", "", $2); print $2; exit }
|
||||||
|
/^[0-9]+: enx/ { gsub(":", "", $2); print $2; exit }
|
||||||
|
'
|
||||||
|
}
|
||||||
|
|
||||||
|
freq_band() {
|
||||||
|
local f="$1"
|
||||||
|
if [ "$f" -ge 6000 ] 2>/dev/null; then echo "6 GHz"
|
||||||
|
elif [ "$f" -ge 5000 ] 2>/dev/null; then echo "5 GHz"
|
||||||
|
elif [ "$f" -ge 2400 ] 2>/dev/null; then echo "2.4 GHz"
|
||||||
|
else echo ""; fi
|
||||||
|
}
|
||||||
|
|
||||||
|
wifi_gen_label() {
|
||||||
|
case "$1" in
|
||||||
|
7) echo "Wi-Fi 7" ;; 6) echo "Wi-Fi 6" ;;
|
||||||
|
5) echo "Wi-Fi 5" ;; 4) echo "Wi-Fi 4" ;;
|
||||||
|
*) echo "" ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
make_content() {
|
||||||
|
local wifi_iface eth_iface
|
||||||
|
wifi_iface=$(get_wifi_iface)
|
||||||
|
eth_iface=$(ip link | awk '/^[0-9]+: en[po]/ { gsub(":",""); print $2; exit }')
|
||||||
|
|
||||||
|
local wifi_ssid="" wifi_ip="" wifi_freq=0 wifi_band="" wifi_gen="" wifi_signal=0
|
||||||
|
if [ -n "$wifi_iface" ] && ip -4 addr show "$wifi_iface" 2>/dev/null | grep -q "inet "; then
|
||||||
|
local wpa
|
||||||
|
wpa=$(wpa_cli -g "/run/wpa_supplicant/$wifi_iface" status 2>/dev/null)
|
||||||
|
wifi_ssid=$(echo "$wpa" | awk -F= '/^ssid=/ { print $2 }')
|
||||||
|
wifi_ip=$(ip -4 addr show "$wifi_iface" | awk '/inet / { print $2 }')
|
||||||
|
wifi_freq=$(echo "$wpa" | awk -F= '/^freq=/ { print $2 }')
|
||||||
|
local gen
|
||||||
|
gen=$(echo "$wpa" | awk -F= '/^wifi_generation=/ { print $2 }')
|
||||||
|
wifi_band=$(freq_band "$wifi_freq")
|
||||||
|
wifi_gen=$(wifi_gen_label "$gen")
|
||||||
|
wifi_signal=$(awk -v iface="$wifi_iface" \
|
||||||
|
'$1 == iface ":" { gsub(/\./, "", $4); print $4; exit }' /proc/net/wireless)
|
||||||
|
fi
|
||||||
|
|
||||||
|
local eth_ip="" eth_speed="" eth_state="down"
|
||||||
|
if [ -n "$eth_iface" ]; then
|
||||||
|
eth_state=$(ip link show "$eth_iface" 2>/dev/null | awk '/state/ { print tolower($9) }')
|
||||||
|
if [ "$eth_state" = "up" ]; then
|
||||||
|
eth_ip=$(ip -4 addr show "$eth_iface" | awk '/inet / { print $2 }')
|
||||||
|
local spd
|
||||||
|
spd=$(cat /sys/class/net/"$eth_iface"/speed 2>/dev/null)
|
||||||
|
[ "${spd:-0}" -gt 0 ] 2>/dev/null && eth_speed="${spd} Mbps"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
local usb_iface usb_ip=""
|
||||||
|
usb_iface=$(get_usb_iface)
|
||||||
|
if [ -n "$usb_iface" ] && ip -4 addr show "$usb_iface" 2>/dev/null | grep -q "inet "; then
|
||||||
|
usb_ip=$(ip -4 addr show "$usb_iface" | awk '/inet / { print $2 }')
|
||||||
|
fi
|
||||||
|
|
||||||
|
# shellcheck disable=SC2059
|
||||||
|
printf '{"wifi":{"ssid":"%s","ip":"%s","freq":%s,"band":"%s","gen":"%s","signal":%s},' \
|
||||||
|
"$wifi_ssid" "$wifi_ip" "${wifi_freq:-0}" "$wifi_band" "$wifi_gen" "${wifi_signal:-0}"
|
||||||
|
printf '"ethernet":{"state":"%s","ip":"%s","speed":"%s","interface":"%s"},' \
|
||||||
|
"$eth_state" "$eth_ip" "$eth_speed" "${eth_iface:-}"
|
||||||
|
printf '"usb":{"interface":"%s","ip":"%s"}}\n' \
|
||||||
|
"${usb_iface:-}" "$usb_ip"
|
||||||
|
}
|
||||||
|
|
||||||
|
make_content
|
||||||
|
ip monitor | while read -r _; do
|
||||||
|
make_content
|
||||||
|
done
|
||||||
+13
@@ -0,0 +1,13 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
case "$1" in
|
||||||
|
status)
|
||||||
|
pgrep -x wlsunset >/dev/null 2>&1 && echo true || echo false
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if pgrep -x wlsunset >/dev/null 2>&1; then
|
||||||
|
pkill -x wlsunset && echo false
|
||||||
|
else
|
||||||
|
wlsunset -T 4500 -t 3200 & echo true
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
+18
@@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
PANEL="$1"
|
||||||
|
|
||||||
|
# Atomic lock: flock acquires exclusively or exits immediately.
|
||||||
|
# Released automatically when the process exits (no trap needed).
|
||||||
|
exec 9>"/tmp/eww_panel_toggle.lock"
|
||||||
|
flock -n 9 || exit 0
|
||||||
|
|
||||||
|
CURRENT=$(eww get active-panel 2>/dev/null | tr -d '"')
|
||||||
|
|
||||||
|
if [ "$CURRENT" = "$PANEL" ]; then
|
||||||
|
eww update active-panel=""
|
||||||
|
eww close popup 2>/dev/null
|
||||||
|
else
|
||||||
|
eww update active-panel="$PANEL"
|
||||||
|
eww close popup 2>/dev/null
|
||||||
|
eww-open-on-current-screen popup
|
||||||
|
fi
|
||||||
+15
@@ -0,0 +1,15 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
case "$1" in
|
||||||
|
status)
|
||||||
|
powerprofilesctl get | grep -q power-saver && echo true || echo false
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if powerprofilesctl get | grep -q power-saver; then
|
||||||
|
powerprofilesctl set balanced 2>/dev/null || true
|
||||||
|
echo false
|
||||||
|
else
|
||||||
|
powerprofilesctl set power-saver 2>/dev/null || true
|
||||||
|
echo true
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
eww close popup 2>/dev/null
|
||||||
|
eww update active-panel=""
|
||||||
|
eww-open-on-current-screen powermenu --toggle
|
||||||
@@ -1,106 +1,227 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
get_time_ms() {
|
|
||||||
date -u +%s%3N
|
|
||||||
}
|
|
||||||
|
|
||||||
URL_BASE="https://www.radiorecord.ru/api"
|
URL_BASE="https://www.radiorecord.ru/api"
|
||||||
|
|
||||||
MPV_PID_FILE="/tmp/mpv_radio_pid"
|
MPV_PID_FILE="/tmp/mpv_radio_pid"
|
||||||
RADIO_ID_FILE="/tmp/radio_id"
|
RADIO_ID_FILE="/tmp/radio_id"
|
||||||
|
|
||||||
STATIONS="[]"
|
STATION_IDS='[507,522,523,536,537,42532,42602]'
|
||||||
|
|
||||||
PID=$( [ -e "$MPV_PID_FILE" ] && cat "$MPV_PID_FILE" || echo 0 )
|
# Custom (non-radiorecord) stations
|
||||||
RADIO_ID=$( [ -e "$RADIO_ID_FILE" ] && cat "$RADIO_ID_FILE" || echo 0 )
|
# id must be a unique integer >= 1000000 to avoid collision with radiorecord IDs.
|
||||||
RADIO_URL=""
|
# icon_fill_white: URL to station icon image, or "" for none.
|
||||||
INFO='{"id":null,"artist":null,"song":null,"image600":null}'
|
CUSTOM_STATIONS='[
|
||||||
PAUSED=$(( $PID == 0 || $RADIO_ID == 0 ? 1 : 0 ))
|
]'
|
||||||
|
|
||||||
|
STATIONS="[]"
|
||||||
|
DEFAULT_INFO='{"artist":"","song":"","image600":""}'
|
||||||
|
DEFAULT_MEDIA='{"player":"","status":"Stopped","artist":"","title":"","art":""}'
|
||||||
|
|
||||||
|
PID=$([ -e "$MPV_PID_FILE" ] && cat "$MPV_PID_FILE" || echo 0)
|
||||||
|
RADIO_ID=$([ -e "$RADIO_ID_FILE" ] && cat "$RADIO_ID_FILE" || echo 0)
|
||||||
|
PAUSED=$(( PID == 0 ? 1 : 0 ))
|
||||||
|
INFO="$DEFAULT_INFO"
|
||||||
|
MEDIA="$DEFAULT_MEDIA"
|
||||||
STATUS="{}"
|
STATUS="{}"
|
||||||
|
|
||||||
get_radio() {
|
get_stations() {
|
||||||
echo "$STATIONS" | jq -r --argjson sel_id "$RADIO_ID" 'map(select(.id == $sel_id)).[0]'
|
local rr
|
||||||
|
rr=$(curl -s --compressed "$URL_BASE/stations/" 2>/dev/null \
|
||||||
|
| jq --argjson ids "$STATION_IDS" \
|
||||||
|
'.result.stations | map(select(.id | IN($ids[]))) | map({id, title, stream_hls, icon_fill_white, "radiorecord": true})' 2>/dev/null)
|
||||||
|
jq -n \
|
||||||
|
--argjson rr "${rr:-[]}" \
|
||||||
|
--argjson custom "$CUSTOM_STATIONS" \
|
||||||
|
'$rr + ($custom | map(. + {"radiorecord": false}))'
|
||||||
}
|
}
|
||||||
|
|
||||||
get_song() {
|
get_song() {
|
||||||
echo $(curl -s "$URL_BASE/station/history/?id=$RADIO_ID" | jq '.result.history[0] | ({id, artist, song, image600})')
|
curl -s --compressed "$URL_BASE/station/history/?id=$RADIO_ID" \
|
||||||
|
| jq '.result.history[0] | {artist, song, image600}'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get_stream_url() {
|
||||||
update() {
|
echo "$STATIONS" | jq -r --argjson id "$RADIO_ID" 'map(select(.id == $id))[0].stream_hls // empty'
|
||||||
PID=$( [ -e "$MPV_PID_FILE" ] && cat "$MPV_PID_FILE" || echo 0 )
|
|
||||||
RADIO_ID=$( [ -e "$RADIO_ID_FILE" ] && cat "$RADIO_ID_FILE" || echo 0 )
|
|
||||||
PAUSED=$(( $PID == 0 && $RADIO_ID > 0 ? 1 : 0 ))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
start() {
|
get_player_info() {
|
||||||
STATIONS=$(curl -s "$URL_BASE/stations/" | jq --argjson ids '[507,522,523,536,537,42532,42602]' '.result.stations | map(select(.id | IN($ids[]))) | map({id, title, stream_hls, icon_fill_white})')
|
local player status artist title art
|
||||||
RADIO_URL=$(get_radio | jq -r '.stream_hls')
|
# exclude mpv (radio) so it never appears as "external player"
|
||||||
if [ "$PAUSED" = 0 ]; then
|
player=$(playerctl -l 2>/dev/null | grep -Ev '^mpv' | head -1)
|
||||||
kill -9 $PID
|
if [ -z "$player" ]; then
|
||||||
|
echo '{"player":"","status":"Stopped","artist":"","title":"","art":""}'
|
||||||
|
return
|
||||||
fi
|
fi
|
||||||
mpv "$RADIO_URL" & echo $! > "$MPV_PID_FILE"
|
status=$(playerctl -p "$player" status 2>/dev/null || echo "Stopped")
|
||||||
echo $RADIO_ID > "$RADIO_ID_FILE"
|
artist=$(playerctl -p "$player" metadata artist 2>/dev/null || echo "")
|
||||||
|
title=$(playerctl -p "$player" metadata title 2>/dev/null || echo "")
|
||||||
|
art=$(playerctl -p "$player" metadata mpris:artUrl 2>/dev/null || echo "")
|
||||||
|
jq -cnr --arg player "$player" --arg status "$status" \
|
||||||
|
--arg artist "$artist" --arg title "$title" --arg art "$art" \
|
||||||
|
'{player:$player, status:$status, artist:$artist, title:$title, art:$art}'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
update_state() {
|
||||||
|
PID=$([ -e "$MPV_PID_FILE" ] && cat "$MPV_PID_FILE" || echo 0)
|
||||||
|
RADIO_ID=$([ -e "$RADIO_ID_FILE" ] && cat "$RADIO_ID_FILE" || echo 0)
|
||||||
|
if [ "$PID" -gt 0 ] && ! kill -0 "$PID" 2>/dev/null; then
|
||||||
|
PID=0
|
||||||
|
rm -f "$MPV_PID_FILE"
|
||||||
|
fi
|
||||||
|
PAUSED=$(( PID == 0 ? 1 : 0 ))
|
||||||
|
}
|
||||||
|
|
||||||
toggle() {
|
emit_status() {
|
||||||
if [ "$PAUSED" = 1 ]; then
|
jq -cnr \
|
||||||
echo $RADIO_ID $PID
|
--argjson stations "${STATIONS:-[]}" \
|
||||||
start
|
--argjson radio_id "${RADIO_ID:-0}" \
|
||||||
|
--argjson is_paused "${PAUSED:-1}" \
|
||||||
|
--argjson info "${INFO:-$DEFAULT_INFO}" \
|
||||||
|
--argjson media "${MEDIA:-$DEFAULT_MEDIA}" \
|
||||||
|
'{"is_paused": $is_paused, "song": $info, "radio": $radio_id, "stations": $stations, "media": $media}'
|
||||||
|
}
|
||||||
|
|
||||||
|
get_stream_node() {
|
||||||
|
local name="$1"
|
||||||
|
wpctl status 2>/dev/null | awk -v pat="$name" '
|
||||||
|
/Streams:/ { in_s = 1 }
|
||||||
|
/Sinks:|Sources:|Clients:/ { in_s = 0 }
|
||||||
|
in_s && /[0-9]+\./ && tolower($0) ~ tolower(pat) {
|
||||||
|
match($0, /[0-9]+/); print substr($0, RSTART, RLENGTH); exit
|
||||||
|
}
|
||||||
|
'
|
||||||
|
}
|
||||||
|
|
||||||
|
get_mpv_node() {
|
||||||
|
get_stream_node "mpv"
|
||||||
|
}
|
||||||
|
|
||||||
|
get_volume() {
|
||||||
|
if [ "$PID" -gt 0 ] && kill -0 "$PID" 2>/dev/null; then
|
||||||
|
local node_id; node_id=$(get_mpv_node)
|
||||||
|
[ -n "$node_id" ] && wpctl get-volume "$node_id" 2>/dev/null \
|
||||||
|
| awk '{printf "%d", $2 * 100}'
|
||||||
else
|
else
|
||||||
kill -9 "$PID"
|
local player; player=$(playerctl -l 2>/dev/null | grep -Ev '^mpv' | head -1)
|
||||||
rm -f $MPV_PID_FILE
|
[ -n "$player" ] && playerctl -p "$player" volume 2>/dev/null \
|
||||||
|
| awk '{printf "%d", $1 * 100}'
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
status() {
|
do_vol() {
|
||||||
echo $(jq -cnr --argjson pid "$PID" --argjson stations "$STATIONS" --argjson radio_id "$RADIO_ID" --argjson is_paused "$PAUSED" --argjson info "$INFO" '{"is_paused": $is_paused, "song": $info, "radio": $radio_id, "stations": $stations}')
|
local vol="${1%.*}"
|
||||||
|
if [ "$PID" -gt 0 ] && kill -0 "$PID" 2>/dev/null; then
|
||||||
|
local node_id; node_id=$(get_mpv_node)
|
||||||
|
[ -n "$node_id" ] && wpctl set-volume "$node_id" "${vol}%"
|
||||||
|
else
|
||||||
|
playerctl volume "$(awk -v v="$vol" 'BEGIN{printf "%.2f", v/100}')" 2>/dev/null
|
||||||
|
fi
|
||||||
|
eww update radio-vol="$vol"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
do_mute() {
|
||||||
|
local node_id
|
||||||
|
if [ "$PID" -gt 0 ] && kill -0 "$PID" 2>/dev/null; then
|
||||||
|
node_id=$(get_mpv_node)
|
||||||
|
else
|
||||||
|
local player; player=$(playerctl -l 2>/dev/null | grep -Ev '^mpv' | head -1)
|
||||||
|
[ -n "$player" ] && node_id=$(get_stream_node "${player%%.*}")
|
||||||
|
fi
|
||||||
|
[ -z "$node_id" ] && return
|
||||||
|
wpctl set-mute "$node_id" toggle
|
||||||
|
if wpctl get-volume "$node_id" 2>/dev/null | grep -q MUTED; then
|
||||||
|
eww update radio-muted=true
|
||||||
|
else
|
||||||
|
eww update radio-muted=false
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
do_start() {
|
||||||
|
[ "$RADIO_ID" -le 0 ] && return
|
||||||
|
STATIONS=$(get_stations)
|
||||||
|
RADIO_URL=$(get_stream_url)
|
||||||
|
[ -z "$RADIO_URL" ] || [ "$RADIO_URL" = "null" ] && return
|
||||||
|
[ "$PID" -gt 0 ] && kill "$PID" 2>/dev/null
|
||||||
|
nohup mpv --no-video --quiet "$RADIO_URL" >/dev/null 2>&1 &
|
||||||
|
echo $! > "$MPV_PID_FILE"
|
||||||
|
echo "$RADIO_ID" > "$RADIO_ID_FILE"
|
||||||
|
}
|
||||||
|
|
||||||
status_loop() {
|
status_loop() {
|
||||||
STATUS=$(status)
|
STATIONS=$(get_stations)
|
||||||
echo $STATUS
|
echo "$(emit_status)"
|
||||||
STATIONS=$(curl -s "$URL_BASE/stations/" | jq --argjson ids '[507,522,523,536,537,42532,42602]' '.result.stations | map(select(.id | IN($ids[]))) | map({id, title, stream_hls, icon_fill_white})')
|
|
||||||
last_time_info=0
|
last_pid_check=0
|
||||||
last_time=0
|
last_song_fetch=0
|
||||||
|
last_media_fetch=0
|
||||||
|
|
||||||
while true; do
|
while true; do
|
||||||
current_time=$(get_time_ms)
|
now=$(date -u +%s%3N)
|
||||||
delta=$((current_time - last_time))
|
|
||||||
delta_i=$((current_time - last_time_info))
|
if (( now - last_pid_check > 1000 )); then
|
||||||
if [[ $delta -gt 1000 ]]; then
|
update_state
|
||||||
PID=$( [ -e "$MPV_PID_FILE" ] && cat "$MPV_PID_FILE" || echo 0 )
|
NEW_STATUS=$(emit_status)
|
||||||
RADIO_ID=$( [ -e "$RADIO_ID_FILE" ] && cat "$RADIO_ID_FILE" || echo 0 )
|
if [ "$NEW_STATUS" != "$STATUS" ]; then STATUS=$NEW_STATUS; echo "$STATUS"; fi
|
||||||
PAUSED=$(( $PID == 0 && $RADIO_ID > 0 ? 1 : 0 ))
|
last_pid_check=$now
|
||||||
NEW_STATUS=$(status)
|
|
||||||
if [[ "$NEW_STATUS" != "$STATUS" ]]; then
|
|
||||||
STATUS=$NEW_STATUS
|
|
||||||
echo $STATUS
|
|
||||||
fi
|
fi
|
||||||
last_time=$current_time
|
|
||||||
fi
|
if (( now - last_song_fetch > 15000 )); then
|
||||||
if [[ $delta_i -gt 15000 ]]; then
|
if [ "$PAUSED" = 0 ]; then
|
||||||
if [ "$PAUSED" = 1 ]; then
|
IS_RR=$(echo "$STATIONS" | jq --argjson id "$RADIO_ID" 'map(select(.id == $id))[0].radiorecord // true')
|
||||||
INFO="{\"id\":null,\"artist\":null,\"song\":null,\"image600\": \"$(get_radio | jq -r '.icon_fill_white')\"}"
|
if [ "$IS_RR" = "true" ]; then
|
||||||
|
FETCHED=$(get_song)
|
||||||
|
INFO=$(echo "$INFO" "$FETCHED" | jq -s '
|
||||||
|
reduce .[] as $x ({}; . + ($x | with_entries(select(.value != null))))')
|
||||||
else
|
else
|
||||||
INFO=$(echo "$INFO" "$(get_song)" | jq -s ' reduce .[] as $item ( {}; . + (
|
STATION_TITLE=$(echo "$STATIONS" | jq -r --argjson id "$RADIO_ID" 'map(select(.id == $id))[0].title // ""')
|
||||||
reduce ($item | to_entries[]) as $entry ( {}; if $entry.value != null then .[$entry.key] = $entry.value else . end
|
INFO=$(jq -cnr --arg title "$STATION_TITLE" '{artist:"",song:$title,image600:""}')
|
||||||
)) )')
|
|
||||||
fi
|
fi
|
||||||
last_time_info=$current_time
|
else
|
||||||
|
STATION_IMG=$(echo "$STATIONS" \
|
||||||
|
| jq -r --argjson id "$RADIO_ID" 'map(select(.id == $id))[0].icon_fill_white // ""')
|
||||||
|
STATION_TITLE=$(echo "$STATIONS" \
|
||||||
|
| jq -r --argjson id "$RADIO_ID" 'map(select(.id == $id))[0].title // ""')
|
||||||
|
INFO=$(jq -cnr --arg img "$STATION_IMG" --arg title "$STATION_TITLE" \
|
||||||
|
'{artist:"",song:$title,image600:$img}')
|
||||||
fi
|
fi
|
||||||
|
NEW_STATUS=$(emit_status)
|
||||||
|
if [ "$NEW_STATUS" != "$STATUS" ]; then STATUS=$NEW_STATUS; echo "$STATUS"; fi
|
||||||
|
last_song_fetch=$now
|
||||||
|
fi
|
||||||
|
|
||||||
|
if (( now - last_media_fetch > 3000 )); then
|
||||||
|
MEDIA=$(get_player_info)
|
||||||
|
NEW_STATUS=$(emit_status)
|
||||||
|
if [ "$NEW_STATUS" != "$STATUS" ]; then STATUS=$NEW_STATUS; echo "$STATUS"; fi
|
||||||
|
VOL=$(get_volume)
|
||||||
|
[ -n "$VOL" ] && eww update radio-vol="$VOL" 2>/dev/null
|
||||||
|
last_media_fetch=$now
|
||||||
|
fi
|
||||||
|
|
||||||
|
sleep 0.5
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
# Main script
|
|
||||||
case "$1" in
|
case "$1" in
|
||||||
"start")
|
start)
|
||||||
RADIO_ID=$2
|
RADIO_ID="$2"
|
||||||
start
|
echo "$RADIO_ID" > "$RADIO_ID_FILE"
|
||||||
|
do_start
|
||||||
;;
|
;;
|
||||||
"toggle")
|
vol)
|
||||||
toggle
|
do_vol "$2"
|
||||||
|
;;
|
||||||
|
mute)
|
||||||
|
update_state
|
||||||
|
do_mute
|
||||||
|
;;
|
||||||
|
toggle)
|
||||||
|
update_state
|
||||||
|
if [ "$PAUSED" = 1 ]; then
|
||||||
|
[ "$RADIO_ID" -gt 0 ] && do_start
|
||||||
|
else
|
||||||
|
[ "$PID" -gt 0 ] && kill "$PID" 2>/dev/null
|
||||||
|
rm -f "$MPV_PID_FILE"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
status_loop
|
status_loop
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
SHADER="$HOME/.config/eww/shaders/read-mode.glsl"
|
||||||
|
|
||||||
|
is_active() {
|
||||||
|
hyprctl getoption decoration:screen_shader | grep -qF "$SHADER"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
status)
|
||||||
|
is_active && echo true || echo false
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
if is_active; then
|
||||||
|
hyprctl eval 'hl.config({ decoration = { screen_shader = "" } })'
|
||||||
|
hyprctl eval 'hl.config({ render = { use_fp16 = 2 } })'
|
||||||
|
echo false
|
||||||
|
else
|
||||||
|
hyprctl eval 'hl.config({ render = { use_fp16 = 0 } })'
|
||||||
|
hyprctl eval "hl.config({ decoration = { screen_shader = \"$SHADER\" } })"
|
||||||
|
echo true
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
eww close popup 2>/dev/null
|
||||||
|
sleep 0.15
|
||||||
|
hyprshot -m region --raw | satty --filename - --early-exit --action-on-enter save-to-clipboard --copy-command wl-copy
|
||||||
@@ -1 +0,0 @@
|
|||||||
#!/usr/bin/env zsh
|
|
||||||
@@ -0,0 +1,49 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
COLS=4
|
||||||
|
declare -A prev_idle prev_total
|
||||||
|
|
||||||
|
emit_grid() {
|
||||||
|
local rows=() row_items=()
|
||||||
|
while IFS= read -r line; do
|
||||||
|
[[ $line =~ ^cpu([0-9]+) ]] || continue
|
||||||
|
local core="${BASH_REMATCH[1]}"
|
||||||
|
read -ra f <<< "$line"
|
||||||
|
local idle=$(( f[4] + f[5] ))
|
||||||
|
local total=0
|
||||||
|
for x in "${f[@]:1}"; do (( total += x )); done
|
||||||
|
|
||||||
|
local usage="0.0"
|
||||||
|
if [[ -n "${prev_total[$core]+x}" ]]; then
|
||||||
|
local dt=$(( total - prev_total[$core] ))
|
||||||
|
local di=$(( idle - prev_idle[$core] ))
|
||||||
|
(( dt > 0 )) && usage=$(awk "BEGIN{printf \"%.1f\", 100*(1-$di/$dt)}")
|
||||||
|
fi
|
||||||
|
prev_idle[$core]=$idle
|
||||||
|
prev_total[$core]=$total
|
||||||
|
|
||||||
|
local freq=0
|
||||||
|
local fpath="/sys/devices/system/cpu/cpu${core}/cpufreq/scaling_cur_freq"
|
||||||
|
[[ -r $fpath ]] && freq=$(( $(< "$fpath") / 1000 ))
|
||||||
|
|
||||||
|
row_items+=("{\"core\":$core,\"usage\":$usage,\"freq\":$freq}")
|
||||||
|
|
||||||
|
if (( ${#row_items[@]} == COLS )); then
|
||||||
|
local row; printf -v row '%s,' "${row_items[@]}"; row="${row%,}"
|
||||||
|
rows+=("[$row]")
|
||||||
|
row_items=()
|
||||||
|
fi
|
||||||
|
done < /proc/stat
|
||||||
|
|
||||||
|
if (( ${#row_items[@]} > 0 )); then
|
||||||
|
local row; printf -v row '%s,' "${row_items[@]}"; row="${row%,}"
|
||||||
|
rows+=("[$row]")
|
||||||
|
fi
|
||||||
|
|
||||||
|
local out; printf -v out '%s,' "${rows[@]}"; out="${out%,}"
|
||||||
|
echo "[$out]"
|
||||||
|
}
|
||||||
|
|
||||||
|
while true; do
|
||||||
|
emit_grid
|
||||||
|
sleep 2
|
||||||
|
done
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
dir=$(grep -rl k10temp /sys/class/hwmon/*/name 2>/dev/null | head -1 | xargs dirname)
|
||||||
|
awk '{printf "%.0f\n", $1/1000}' "$dir/temp1_input"
|
||||||
@@ -1,3 +1,22 @@
|
|||||||
#!/usr/bin/env zsh
|
#!/usr/bin/env bash
|
||||||
|
amdgpu_top -J -s 5000 | jq -c --unbuffered '.devices[0] | {
|
||||||
amdgpu_top -J -s 5000 | sed 's/ //g'
|
gfx_pct: (.gpu_activity.GFX.value // 0),
|
||||||
|
mem_pct: (.gpu_activity.Memory.value // 0),
|
||||||
|
media_pct: (.gpu_activity.MediaEngine.value // 0),
|
||||||
|
sclk: (.Sensors.GFX_SCLK.value // 0),
|
||||||
|
mclk: (.Sensors.GFX_MCLK.value // 0),
|
||||||
|
sclk_pct: (if (.Info["GPU Clock"].max != .Info["GPU Clock"].min) then
|
||||||
|
100 * ((.Sensors.GFX_SCLK.value // 0) - .Info["GPU Clock"].min) / (.Info["GPU Clock"].max - .Info["GPU Clock"].min)
|
||||||
|
else 0 end),
|
||||||
|
mclk_pct: (if (.Info["Memory Clock"].max != .Info["Memory Clock"].min) then
|
||||||
|
100 * ((.Sensors.GFX_MCLK.value // 0) - .Info["Memory Clock"].min) / (.Info["Memory Clock"].max - .Info["Memory Clock"].min)
|
||||||
|
else 0 end),
|
||||||
|
vclk: (.gpu_metrics.average_vclk_frequency // 0),
|
||||||
|
vclk_pct: (if (.Info["GPU Clock"].max > 0) then
|
||||||
|
100 * (.gpu_metrics.average_vclk_frequency // 0) / .Info["GPU Clock"].max
|
||||||
|
else 0 end),
|
||||||
|
temp: (.Sensors["Edge Temperature"].value // 0),
|
||||||
|
power: (.Sensors["Average Power"].value // 0),
|
||||||
|
vram_used: (.VRAM["Total VRAM Usage"].value // 0),
|
||||||
|
vram_total: (.VRAM["Total VRAM"].value // 1)
|
||||||
|
}'
|
||||||
|
|||||||
@@ -8,5 +8,6 @@ human() {
|
|||||||
|
|
||||||
free --si -s 3 | rg --line-buffered Mem | while read -r line; do
|
free --si -s 3 | rg --line-buffered Mem | while read -r line; do
|
||||||
used=$(echo "$line" | awk '{print $3}')
|
used=$(echo "$line" | awk '{print $3}')
|
||||||
echo '{"human": { "total": "'$(human "$total")'", "used": "'$(human "$used")'"}, "total": "'$total'" , "used": "'$used'"}'
|
cached=$(echo "$line" | awk '{print $6}')
|
||||||
|
echo '{"human": {"total": "'$(human "$total")'", "used": "'$(human "$used")'", "cached": "'$(human "$cached")'"}, "total": "'$total'", "used": "'$used'", "cached": "'$cached'"}'
|
||||||
done
|
done
|
||||||
+7
@@ -0,0 +1,7 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
free --si | awk '/Swap/ {
|
||||||
|
used=$3; total=$2
|
||||||
|
u = sprintf("%.1fG", used/1000000)
|
||||||
|
t = sprintf("%.1fG", total/1000000)
|
||||||
|
printf "{\"used\":%d,\"total\":%d,\"human\":{\"used\":\"%s\",\"total\":\"%s\"}}\n", used, total, u, t
|
||||||
|
}'
|
||||||
@@ -1,30 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
function get_time_ms {
|
|
||||||
date -u +%s%3N
|
|
||||||
}
|
|
||||||
|
|
||||||
icons=("" "" "")
|
|
||||||
|
|
||||||
gen_output() {
|
|
||||||
icon="${icons[$(awk -v n="$(brillo)" 'BEGIN{print int(n/34)}')]}"
|
|
||||||
prcnt=$(brillo | xargs printf "%.*f\n" "0")
|
|
||||||
echo '{"percent": '$prcnt', "icon": "'$icon'"}'
|
|
||||||
}
|
|
||||||
|
|
||||||
if [[ $(brillo 2>/dev/stdout 1>/dev/null | head -n1 | awk '{print $1}') == "No" ]]; then
|
|
||||||
echo '{"percent": 100, "icon": ""}'
|
|
||||||
elif [ "$1" = "" ]; then
|
|
||||||
# initial
|
|
||||||
last_time=$(get_time_ms)
|
|
||||||
gen_output
|
|
||||||
|
|
||||||
udevadm monitor | rg --line-buffered "backlight" | while read -r _; do
|
|
||||||
current_time=$(get_time_ms)
|
|
||||||
delta=$((current_time - last_time))
|
|
||||||
if [[ $delta -gt 50 ]]; then
|
|
||||||
gen_output
|
|
||||||
last_time=$(get_time_ms)
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
@@ -1,23 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
icon() {
|
|
||||||
[ "$STATUS" = "no" ] && echo "" || echo ""
|
|
||||||
}
|
|
||||||
|
|
||||||
toggle() {
|
|
||||||
if [ "$STATUS" = "no" ]; then
|
|
||||||
rfkill block all
|
|
||||||
else
|
|
||||||
rfkill unblock all
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "$1" = "toggle" ]; then
|
|
||||||
toggle
|
|
||||||
else
|
|
||||||
icon
|
|
||||||
rfkill event | while read -r _; do
|
|
||||||
STATUS="$(rfkill list | sed -n 2p | awk '{print $3}')"
|
|
||||||
icon
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
icon() {
|
|
||||||
[ "$STATUS" = "no" ] && echo "" || echo ""
|
|
||||||
}
|
|
||||||
|
|
||||||
toggle() {
|
|
||||||
if [ "$STATUS" = "no" ]; then
|
|
||||||
echo ""
|
|
||||||
else
|
|
||||||
echo ""
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "$1" = "toggle" ]; then
|
|
||||||
toggle
|
|
||||||
icon
|
|
||||||
else
|
|
||||||
icon
|
|
||||||
fi
|
|
||||||
@@ -1,64 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
function get_time_ms {
|
|
||||||
date -u +%s%3N
|
|
||||||
}
|
|
||||||
|
|
||||||
volicons=("" "" "")
|
|
||||||
|
|
||||||
vol() {
|
|
||||||
wpctl get-volume @DEFAULT_AUDIO_"$1"@ | awk '{print int($2*100)}'
|
|
||||||
}
|
|
||||||
ismuted() {
|
|
||||||
wpctl get-volume @DEFAULT_AUDIO_"$1"@ | rg -qi muted
|
|
||||||
echo -n $?
|
|
||||||
}
|
|
||||||
setvol() {
|
|
||||||
wpctl set-volume @DEFAULT_AUDIO_"$1"@ "$(awk -v n="$2" 'BEGIN{print (n / 100)}')"
|
|
||||||
}
|
|
||||||
setmute() {
|
|
||||||
wpctl set-mute @DEFAULT_AUDIO_"$1"@ toggle
|
|
||||||
}
|
|
||||||
|
|
||||||
gen_output() {
|
|
||||||
percent="$(vol "SINK")"
|
|
||||||
lvl=$(awk -v n="$percent" 'BEGIN{print int(n/34)}')
|
|
||||||
ismuted=$(ismuted "SINK")
|
|
||||||
|
|
||||||
if [ "$ismuted" = 1 ]; then
|
|
||||||
icon="${volicons[$lvl]}"
|
|
||||||
else
|
|
||||||
icon=""
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo '{"icon": "'$icon'", "percent": '$(vol "SINK")', "microphone": '$(vol "SOURCE")'}'
|
|
||||||
}
|
|
||||||
|
|
||||||
if [ "$1" = "mute" ]; then
|
|
||||||
if [ "$2" != "SOURCE" ] && [ "$2" != "SINK" ]; then
|
|
||||||
echo "Can only mute SINK or SOURCE"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
setmute "$2"
|
|
||||||
elif [ "$1" = "setvol" ]; then
|
|
||||||
if [ "$2" != "SOURCE" ] && [ "$2" != "SINK" ]; then
|
|
||||||
echo "Can only set volume for SINK or SOURCE"
|
|
||||||
exit 1
|
|
||||||
elif [ "$3" -lt 0 ] || [ "$3" -gt 100 ]; then
|
|
||||||
echo "Volume must be between 0 and 100"
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
setvol "$2" "$3"
|
|
||||||
else
|
|
||||||
last_time=$(get_time_ms)
|
|
||||||
gen_output
|
|
||||||
|
|
||||||
pw-cli -m 2>/dev/null | rg --line-buffered "PipeWire:Interface:Client" | while read -r event; do
|
|
||||||
current_time=$(get_time_ms)
|
|
||||||
delta=$((current_time - last_time))
|
|
||||||
if [[ $delta -gt 50 ]]; then
|
|
||||||
gen_output
|
|
||||||
last_time=$(get_time_ms)
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
fi
|
|
||||||
+45
@@ -0,0 +1,45 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
volicons=("" "" "")
|
||||||
|
|
||||||
|
vol() { wpctl get-volume @DEFAULT_AUDIO_"$1"@ | awk '{print int($2*100)}'; }
|
||||||
|
ismuted() { wpctl get-volume @DEFAULT_AUDIO_"$1"@ | rg -qi muted; echo -n $?; }
|
||||||
|
setvol() { wpctl set-volume @DEFAULT_AUDIO_"$1"@ "$(awk -v n="$2" 'BEGIN{print n/100}')"; }
|
||||||
|
setmute() { wpctl set-mute @DEFAULT_AUDIO_"$1"@ toggle; }
|
||||||
|
|
||||||
|
gen_output() {
|
||||||
|
percent=$(vol "SINK")
|
||||||
|
lvl=$(awk -v n="$percent" 'BEGIN{print int(n/34)}')
|
||||||
|
sink_muted=$(ismuted "SINK")
|
||||||
|
source_muted=$(ismuted "SOURCE")
|
||||||
|
sink=$(wpctl inspect @DEFAULT_AUDIO_SINK@ 2>/dev/null | grep -m1 'node\.nick' | sed 's/.*= "\(.*\)"/\1/')
|
||||||
|
|
||||||
|
[ "$sink_muted" = 0 ] && icon="" || icon="${volicons[$lvl]}"
|
||||||
|
[ "$source_muted" = 0 ] && mic_icon="" || mic_icon=""
|
||||||
|
|
||||||
|
printf '{"icon":"%s","percent":%s,"sink_muted":%s,"mic_icon":"%s","microphone":%s,"source_muted":%s,"sink":"%s"}\n' \
|
||||||
|
"$icon" "$percent" "$([ "$sink_muted" = 0 ] && echo true || echo false)" \
|
||||||
|
"$mic_icon" "$(vol SOURCE)" "$([ "$source_muted" = 0 ] && echo true || echo false)" "$sink"
|
||||||
|
}
|
||||||
|
|
||||||
|
case "$1" in
|
||||||
|
mute) setmute "$2" ;;
|
||||||
|
setvol) setvol "$2" "$3" ;;
|
||||||
|
*)
|
||||||
|
gen_output
|
||||||
|
|
||||||
|
tmp=$(mktemp -d)
|
||||||
|
pipe="$tmp/vol-events"
|
||||||
|
mkfifo "$pipe"
|
||||||
|
trap 'rm -rf "$tmp"; kill 0 2>/dev/null' EXIT INT TERM
|
||||||
|
|
||||||
|
# 2s polling fallback
|
||||||
|
(while true; do sleep 2; echo poll; done) > "$pipe" &
|
||||||
|
# PipeWire property-change events (fires on mute/volume change)
|
||||||
|
(pw-cli -m 2>/dev/null | grep --line-buffered "changed") > "$pipe" &
|
||||||
|
|
||||||
|
while IFS= read -r _ < "$pipe"; do
|
||||||
|
gen_output
|
||||||
|
done
|
||||||
|
;;
|
||||||
|
esac
|
||||||
+2
@@ -0,0 +1,2 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
nohup bash "$HOME/.config/script/wallpaper.sh" >/dev/null 2>&1 &
|
||||||
+100
@@ -0,0 +1,100 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
FALLBACK='{"temp":0,"feelslike":0,"humidity":0,"wind":0,"desc":"Unavailable","icon":"","city":""}'
|
||||||
|
CACHE_DIR="${XDG_CACHE_HOME:-$HOME/.cache}/eww"
|
||||||
|
LOC_CACHE="$CACHE_DIR/weather-location"
|
||||||
|
UA="eww-bar/1.0 cedric.hoelzl@gmail.com"
|
||||||
|
|
||||||
|
mkdir -p "$CACHE_DIR"
|
||||||
|
|
||||||
|
get_location() {
|
||||||
|
# Cache location for 1 hour; IP rarely changes
|
||||||
|
if [ -f "$LOC_CACHE" ] && [ -n "$(find "$LOC_CACHE" -mmin -60 2>/dev/null)" ]; then
|
||||||
|
cat "$LOC_CACHE"
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
data=$(curl -sf --max-time 5 "http://ip-api.com/json?fields=lat,lon,city") || return 1
|
||||||
|
echo "$data" | tee "$LOC_CACHE"
|
||||||
|
}
|
||||||
|
|
||||||
|
icon_for() {
|
||||||
|
case "$1" in
|
||||||
|
*thunder*) echo "" ;;
|
||||||
|
*snow*|*sleet*) echo "" ;;
|
||||||
|
heavyrain*|*heavyrainshowers*) echo "" ;;
|
||||||
|
*rain*|*shower*) echo "" ;;
|
||||||
|
fog*) echo "" ;;
|
||||||
|
cloudy*) echo "" ;;
|
||||||
|
partlycloudy*) echo "" ;;
|
||||||
|
fair*|clearsky*) echo "" ;;
|
||||||
|
*) echo "" ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
desc_for() {
|
||||||
|
case "$(echo "$1" | sed 's/_day//;s/_night//;s/_polartwilight//')" in
|
||||||
|
clearsky) echo "Clear sky" ;;
|
||||||
|
fair) echo "Fair" ;;
|
||||||
|
partlycloudy) echo "Partly cloudy" ;;
|
||||||
|
cloudy) echo "Cloudy" ;;
|
||||||
|
fog) echo "Foggy" ;;
|
||||||
|
lightrain) echo "Light rain" ;;
|
||||||
|
rain) echo "Rain" ;;
|
||||||
|
heavyrain) echo "Heavy rain" ;;
|
||||||
|
lightrainshowers) echo "Light showers" ;;
|
||||||
|
rainshowers) echo "Rain showers" ;;
|
||||||
|
heavyrainshowers) echo "Heavy showers" ;;
|
||||||
|
lightrainandthunder) echo "Light rain & thunder" ;;
|
||||||
|
rainandthunder) echo "Rain & thunder" ;;
|
||||||
|
heavyrainandthunder) echo "Heavy rain & thunder" ;;
|
||||||
|
*showersandthunder) echo "Showers & thunder" ;;
|
||||||
|
lightsleet|lightsleetshowers) echo "Light sleet" ;;
|
||||||
|
sleet|sleetshowers) echo "Sleet" ;;
|
||||||
|
heavysleet|heavysleetshowers) echo "Heavy sleet" ;;
|
||||||
|
*sleetandthunder) echo "Sleet & thunder" ;;
|
||||||
|
lightsnow|lightsnowshowers) echo "Light snow" ;;
|
||||||
|
snow|snowshowers) echo "Snow" ;;
|
||||||
|
heavysnow|heavysnowshowers) echo "Heavy snow" ;;
|
||||||
|
*snowandthunder) echo "Snow & thunder" ;;
|
||||||
|
*) echo "$1" ;;
|
||||||
|
esac
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch() {
|
||||||
|
loc=$(get_location) || { echo "$FALLBACK"; return; }
|
||||||
|
lat=$(echo "$loc" | jq -r '.lat')
|
||||||
|
lon=$(echo "$loc" | jq -r '.lon')
|
||||||
|
city=$(echo "$loc" | jq -r '.city')
|
||||||
|
|
||||||
|
data=$(curl -sf --max-time 8 \
|
||||||
|
-H "User-Agent: $UA" \
|
||||||
|
-H "Accept: application/json" \
|
||||||
|
"https://api.met.no/weatherapi/locationforecast/2.0/compact?lat=$lat&lon=$lon") \
|
||||||
|
|| { echo "$FALLBACK"; return; }
|
||||||
|
|
||||||
|
d='.properties.timeseries[0].data'
|
||||||
|
temp=$( echo "$data" | jq -r "${d}.instant.details.air_temperature | round")
|
||||||
|
humidity=$(echo "$data" | jq -r "${d}.instant.details.relative_humidity | round")
|
||||||
|
wind_ms=$( echo "$data" | jq -r "${d}.instant.details.wind_speed")
|
||||||
|
wind=$( echo "$wind_ms" | awk '{printf "%d", $1 * 3.6}')
|
||||||
|
code=$( echo "$data" | jq -r \
|
||||||
|
"(${d}.next_1_hours.summary.symbol_code) // (${d}.next_6_hours.summary.symbol_code) // \"cloudy\"")
|
||||||
|
|
||||||
|
# Simplified apparent temperature: wind chill below 10°C, else = temp
|
||||||
|
feelslike=$(echo "$temp $wind" | awk '{
|
||||||
|
t=$1; v=$2
|
||||||
|
if (v > 4.8 && t < 10)
|
||||||
|
printf "%d", 13.12 + 0.6215*t - 11.37*(v^0.16) + 0.3965*t*(v^0.16)
|
||||||
|
else
|
||||||
|
printf "%d", t
|
||||||
|
}')
|
||||||
|
|
||||||
|
icon=$(icon_for "$code")
|
||||||
|
desc=$(desc_for "$code")
|
||||||
|
|
||||||
|
printf '{"temp":%s,"feelslike":%s,"humidity":%s,"wind":%s,"desc":"%s","icon":"%s","city":"%s"}\n' \
|
||||||
|
"$temp" "$feelslike" "$humidity" "$wind" "$desc" "$icon" "$city"
|
||||||
|
}
|
||||||
|
|
||||||
|
fetch
|
||||||
|
while true; do sleep 600; fetch; done
|
||||||
@@ -1,86 +1,174 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
colors=("blue" "blue" "green" "red")
|
declare -A ws_windows=()
|
||||||
empty="grey"
|
declare -A ws_name=()
|
||||||
|
declare -A ws_urgent=()
|
||||||
|
declare -A mon_active=()
|
||||||
|
focused_ws=""
|
||||||
|
focused_monitor=""
|
||||||
|
_state=""
|
||||||
|
_color=""
|
||||||
|
|
||||||
# get initial focused workspace
|
load_workspaces() {
|
||||||
focusedws=$(hyprctl -j monitors | jaq -r '.[] | select(.focused == true) | .activeWorkspace.id')
|
local raw
|
||||||
|
raw=$(hyprctl -j workspaces 2>/dev/null) || return
|
||||||
|
ws_windows=()
|
||||||
|
ws_name=()
|
||||||
|
while read -r id windows name; do
|
||||||
|
ws_windows[$id]=$windows
|
||||||
|
ws_name[$id]=$name
|
||||||
|
done < <(printf '%s' "$raw" | jaq -jr '.[] | (.id | tostring), " ", (.windows | tostring), " ", .name, "\n"' 2>/dev/null)
|
||||||
|
}
|
||||||
|
|
||||||
declare -A o=([1]=0 [2]=0 [3]=0 [4]=0 [5]=0 [6]=0 [7]=0 [8]=0 [9]=0 [10]=0)
|
load_monitors() {
|
||||||
declare -A monitormap
|
local raw
|
||||||
declare -A workspaces
|
raw=$(hyprctl -j monitors 2>/dev/null) || return
|
||||||
|
mon_active=()
|
||||||
|
focused_ws=""
|
||||||
|
focused_monitor=""
|
||||||
|
while read -r name active_id is_focused; do
|
||||||
|
mon_active[$name]=$active_id
|
||||||
|
if [ "$is_focused" = "true" ]; then
|
||||||
|
focused_ws=$active_id
|
||||||
|
focused_monitor=$name
|
||||||
|
fi
|
||||||
|
done < <(printf '%s' "$raw" | jaq -jr '.[] | .name, " ", (.activeWorkspace.id | tostring), " ", (.focused | tostring), "\n"' 2>/dev/null)
|
||||||
|
}
|
||||||
|
|
||||||
# set color for each workspace
|
load_urgent() {
|
||||||
status() {
|
local raw
|
||||||
if [ "${o[$1]}" -eq 1 ]; then
|
raw=$(hyprctl -j clients 2>/dev/null) || return
|
||||||
mon=${monitormap[${workspaces[$1]}]}
|
ws_urgent=()
|
||||||
echo -n "${colors[$mon]}"
|
while read -r wsid; do
|
||||||
|
ws_urgent[$wsid]=1
|
||||||
|
done < <(printf '%s' "$raw" | jaq -r '.[] | select(.urgent == true) | (.workspace.id | tostring)' 2>/dev/null)
|
||||||
|
}
|
||||||
|
|
||||||
|
ws_state_color() {
|
||||||
|
local id=$1
|
||||||
|
_state="empty"
|
||||||
|
_color="grey"
|
||||||
|
|
||||||
|
if [ "$id" = "$focused_ws" ]; then
|
||||||
|
_state="focused"
|
||||||
else
|
else
|
||||||
echo -n "$empty"
|
local mon
|
||||||
|
for mon in "${!mon_active[@]}"; do
|
||||||
|
if [ "${mon_active[$mon]}" = "$id" ]; then
|
||||||
|
_state="active"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if [ "$_state" = "empty" ] && [ "${ws_windows[$id]:-0}" -gt 0 ]; then
|
||||||
|
_state="running"
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$_state" != "empty" ]; then
|
||||||
|
if [ "${ws_urgent[$id]:-0}" -eq 1 ]; then
|
||||||
|
_color="red"
|
||||||
|
else
|
||||||
|
_color="blue"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# handle workspace create/destroy
|
ws_entry() {
|
||||||
workspace_event() {
|
local id=$1 name=$2 target=$3 sep=${4:-false}
|
||||||
while read -r k v; do workspaces[$k]="$v"; done < <(hyprctl -j workspaces | jaq -jr '.[] | .id, " ", .monitor, "\n"')
|
ws_state_color "$id"
|
||||||
}
|
printf '{"id":%s,"name":"%s","target":"%s","state":"%s","color":"%s","sep":%s}' \
|
||||||
# handle monitor (dis)connects
|
"$id" "$name" "$target" "$_state" "$_color" "$sep"
|
||||||
monitor_event() {
|
|
||||||
while read -r k v; do monitormap["$k"]=$v; done < <(hyprctl -j monitors | jaq -jr '.[] | .name, " ", .id, "\n"')
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# get all apps titles in a workspace
|
|
||||||
applist() {
|
|
||||||
ws="$1"
|
|
||||||
|
|
||||||
apps=$(hyprctl -j clients | jaq -jr '.[] | select(.workspace.id == '"$ws"') | .title + "\\n"')
|
|
||||||
echo -En "${apps%"\n"}"
|
|
||||||
}
|
|
||||||
|
|
||||||
# generate the json for eww
|
|
||||||
generate() {
|
generate() {
|
||||||
echo -n '['
|
printf '['
|
||||||
|
local first=true
|
||||||
|
|
||||||
for i in {1..10}; do
|
local neg_ids=() id
|
||||||
echo -n ''"$([ "$i" -eq 1 ] || echo ,)" '{"number": "'"$i"'", "color": "'"$(status "$i")"'", "focused": '"$([ "$focusedws" = "$i" ] && echo "true" || echo "false")"'}' #, "tooltip": "'$(applist "$i")'" }'
|
for id in "${!ws_name[@]}"; do
|
||||||
|
if [[ "$id" == -* ]] && [ "${ws_name[$id]}" != "special:magic" ]; then
|
||||||
|
neg_ids+=("$id")
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
echo ']'
|
local has_neg=false
|
||||||
|
if [ ${#neg_ids[@]} -gt 0 ]; then
|
||||||
|
has_neg=true
|
||||||
|
IFS=$'\n' sorted_neg=($(printf '%s\n' "${neg_ids[@]}" | sort -n)); unset IFS
|
||||||
|
for id in "${sorted_neg[@]}"; do
|
||||||
|
$first || printf ','
|
||||||
|
first=false
|
||||||
|
ws_entry "$id" "${ws_name[$id]}" "name:${ws_name[$id]}"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
||||||
|
local first_pos=true
|
||||||
|
for i in {1..9}; do
|
||||||
|
$first || printf ','
|
||||||
|
first=false
|
||||||
|
if $first_pos && $has_neg; then
|
||||||
|
ws_entry "$i" "$i" "$i" true
|
||||||
|
else
|
||||||
|
ws_entry "$i" "$i" "$i"
|
||||||
|
fi
|
||||||
|
first_pos=false
|
||||||
|
done
|
||||||
|
|
||||||
|
printf ']\n'
|
||||||
}
|
}
|
||||||
|
|
||||||
# setup
|
load_workspaces
|
||||||
|
load_monitors
|
||||||
# add monitors
|
load_urgent
|
||||||
monitor_event
|
|
||||||
|
|
||||||
# add workspaces
|
|
||||||
workspace_event
|
|
||||||
|
|
||||||
# check occupied workspaces
|
|
||||||
for num in "${!workspaces[@]}"; do
|
|
||||||
o[$num]=1
|
|
||||||
done
|
|
||||||
# generate initial widget
|
|
||||||
generate
|
generate
|
||||||
|
|
||||||
# main loop
|
while read -r line; do
|
||||||
socat -u UNIX-CONNECT:$XDG_RUNTIME_DIR/hypr/"$HYPRLAND_INSTANCE_SIGNATURE"/.socket2.sock - | rg --line-buffered "workspace|mon(itor)?" | while read -r line; do
|
event="${line%>>*}"
|
||||||
case ${line%>>*} in
|
data="${line#*>>}"
|
||||||
|
case "$event" in
|
||||||
"workspace")
|
"workspace")
|
||||||
focusedws=${line#*>>}
|
# data is the workspace name, not id — resolve to id for named workspaces
|
||||||
|
focused_ws="$data"
|
||||||
|
for _k in "${!ws_name[@]}"; do
|
||||||
|
[ "${ws_name[$_k]}" = "$data" ] && { focused_ws="$_k"; break; }
|
||||||
|
done
|
||||||
|
unset "ws_urgent[$focused_ws]"
|
||||||
|
[ -n "$focused_monitor" ] && mon_active[$focused_monitor]="$focused_ws"
|
||||||
|
;;
|
||||||
|
"workspacev2")
|
||||||
|
focused_ws="${data%%,*}"
|
||||||
|
unset "ws_urgent[$focused_ws]"
|
||||||
|
[ -n "$focused_monitor" ] && mon_active[$focused_monitor]="$focused_ws"
|
||||||
;;
|
;;
|
||||||
"focusedmon")
|
"focusedmon")
|
||||||
focusedws=${line#*,}
|
focused_monitor="${data%%,*}"
|
||||||
|
_wsname="${data#*,}"
|
||||||
|
focused_ws="$_wsname"
|
||||||
|
for _k in "${!ws_name[@]}"; do
|
||||||
|
[ "${ws_name[$_k]}" = "$_wsname" ] && { focused_ws="$_k"; break; }
|
||||||
|
done
|
||||||
|
unset "ws_urgent[$focused_ws]"
|
||||||
|
mon_active[$focused_monitor]="$focused_ws"
|
||||||
;;
|
;;
|
||||||
"createworkspace")
|
"urgent")
|
||||||
o[${line#*>>}]=1
|
wsid=$(hyprctl -j clients 2>/dev/null | jaq -r --arg addr "$data" '.[] | select(.address == $addr) | (.workspace.id | tostring)' 2>/dev/null)
|
||||||
|
[ -n "$wsid" ] && ws_urgent[$wsid]=1
|
||||||
;;
|
;;
|
||||||
"destroyworkspace")
|
"createworkspace"*|"destroyworkspace"*|"moveworkspace"*)
|
||||||
o[${line#*>>}]=0
|
load_workspaces
|
||||||
|
load_monitors
|
||||||
|
;;
|
||||||
|
"openwindow"|"movewindow"*)
|
||||||
|
load_workspaces
|
||||||
|
;;
|
||||||
|
"closewindow")
|
||||||
|
load_workspaces
|
||||||
|
load_urgent
|
||||||
;;
|
;;
|
||||||
"monitor"*)
|
"monitor"*)
|
||||||
monitor_event
|
load_monitors
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
generate
|
generate
|
||||||
done
|
done < <(socat -u UNIX-CONNECT:"$XDG_RUNTIME_DIR/hypr/$HYPRLAND_INSTANCE_SIGNATURE/.socket2.sock" - | \
|
||||||
|
rg --line-buffered "^(workspace|focusedmon|createworkspace|destroyworkspace|openwindow|closewindow|movewindow|moveworkspace|monitor|urgent)")
|
||||||
|
|||||||
@@ -0,0 +1,133 @@
|
|||||||
|
#version 320 es
|
||||||
|
|
||||||
|
/*
|
||||||
|
I love e-ink displays!
|
||||||
|
The mathematical philosophy here is using deterministic logic (Bayer matrices, arithmetic hashing)
|
||||||
|
to simulate physical chaos (paper grain, ink bleed). I picked up these concepts in a course
|
||||||
|
and this is easily the best real-world application of them I've found.
|
||||||
|
It works brilliantly-looks like real paper, killed my eye strain, and even reduced the insane
|
||||||
|
reflections from my glossy surface display.
|
||||||
|
|
||||||
|
by @snes19xx, https://github.com/snes19xx
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
precision highp float;
|
||||||
|
in vec2 v_texcoord;
|
||||||
|
uniform sampler2D tex;
|
||||||
|
out vec4 fragColor;
|
||||||
|
|
||||||
|
// 4x4 Bayer Matrix
|
||||||
|
// this grid helps break up smooth gradients into texture so it looks less "digital"
|
||||||
|
float getBayer(vec2 pos) {
|
||||||
|
int x = int(mod(pos.x, 4.0));
|
||||||
|
int y = int(mod(pos.y, 4.0));
|
||||||
|
const mat4 bayer = mat4(
|
||||||
|
0.0, 12.0, 3.0, 15.0,
|
||||||
|
8.0, 4.0, 11.0, 7.0,
|
||||||
|
2.0, 14.0, 1.0, 13.0,
|
||||||
|
10.0, 6.0, 9.0, 5.0
|
||||||
|
);
|
||||||
|
return bayer[x][y] / 16.0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// High-performance "Hash12" - No trigonometry
|
||||||
|
// old hash used sin() which is slow on gpu. this one just mashes bits together.
|
||||||
|
// (https://www.shadertoy.com/view/4djSRW)
|
||||||
|
float hash(vec2 p) {
|
||||||
|
// fract() keeps only the decimal part for the wave-like dusty pattern
|
||||||
|
// .1031 is a special prime number to avoid perfect alignments with pixel grid
|
||||||
|
vec3 p3 = fract(vec3(p.xyx) * .1031);
|
||||||
|
|
||||||
|
// dot product mixes the x, y, z values so they depend on each other
|
||||||
|
p3 += dot(p3, p3.yzx + 33.33);
|
||||||
|
|
||||||
|
// return the final entangled decimal. deterministically random (afaik).
|
||||||
|
return fract((p3.x + p3.y) * p3.z);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Multi-octave noise for realistic paper fiber texture
|
||||||
|
float paperTexture(vec2 uv) {
|
||||||
|
float n = 0.0;
|
||||||
|
n += hash(uv * 0.3) * 0.6; // Very large fibers
|
||||||
|
n += hash(uv * 0.8) * 0.4; // Large fibers
|
||||||
|
n += hash(uv * 2.5) * 0.3; // Medium detail
|
||||||
|
n += hash(uv * 6.0) * 0.2; // Fine grain
|
||||||
|
n += hash(uv * 15.0) * 0.1; // Very fine grain
|
||||||
|
return n / 1.6; // Normalize
|
||||||
|
}
|
||||||
|
|
||||||
|
// Directional paper grain (simulates paper fibers running in one direction)
|
||||||
|
float directionalGrain(vec2 uv) {
|
||||||
|
vec2 direction = vec2(0.7, 0.3); // Fiber direction
|
||||||
|
float grain = 0.0;
|
||||||
|
grain += hash(uv * 3.0 + direction * 2.0) * 0.5;
|
||||||
|
grain += hash(uv * 8.0 + direction * 5.0) * 0.3;
|
||||||
|
return grain / 0.8;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Subtle vignette for paper edge darkening
|
||||||
|
float vignette(vec2 uv) {
|
||||||
|
vec2 center = uv - 0.5;
|
||||||
|
float dist = length(center);
|
||||||
|
// smoothstep creates a signmoid (S-curve) so the shadow falls off naturally
|
||||||
|
return 1.0 - smoothstep(0.4, 1.2, dist) * 0.15;
|
||||||
|
}
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
vec4 pixColor = texture(tex, v_texcoord);
|
||||||
|
|
||||||
|
// Luma Conversion
|
||||||
|
// not using average (r+g+b)/3 because eyes see green brighter than blue.
|
||||||
|
float gray = dot(pixColor.rgb, vec3(0.299, 0.587, 0.114));
|
||||||
|
|
||||||
|
// E-ink characteristic response curve
|
||||||
|
// real e-ink isn't linear. this exponent simulates ink clumping.
|
||||||
|
gray = pow(gray, 1.2);
|
||||||
|
|
||||||
|
// Better contrast with slight S-curve
|
||||||
|
// clips pure blacks/whites but keeps the middle smooth.
|
||||||
|
gray = smoothstep(0.08, 0.92, gray);
|
||||||
|
|
||||||
|
// Mid-tone boost
|
||||||
|
float midBoost = smoothstep(0.3, 0.5, gray) * (1.0 - smoothstep(0.5, 0.7, gray));
|
||||||
|
gray += midBoost * 0.1;
|
||||||
|
|
||||||
|
vec2 screenPos = gl_FragCoord.xy;
|
||||||
|
|
||||||
|
// PAPER GRAIN
|
||||||
|
float paperGrain = (paperTexture(screenPos * 0.3) - 0.5) * 0.035;
|
||||||
|
float dirGrain = (directionalGrain(screenPos * 0.4) - 0.5) * 0.025; // directional grain
|
||||||
|
|
||||||
|
float bayerValue = getBayer(screenPos);
|
||||||
|
|
||||||
|
// Apply to bright areas (paper), but also slightly to mid-tones for more visible grain
|
||||||
|
float textureMask = smoothstep(0.5, 0.95, gray); // Lower threshold for more coverage
|
||||||
|
|
||||||
|
// Apply both grain types
|
||||||
|
gray += paperGrain * textureMask;
|
||||||
|
gray += dirGrain * textureMask * 0.7; // Directional grain is slightly weaker
|
||||||
|
|
||||||
|
// Increased dithering for more texture
|
||||||
|
float ditherStrength = 0.025; // Increased from 0.018
|
||||||
|
gray += (bayerValue - 0.5) * ditherStrength * textureMask;
|
||||||
|
|
||||||
|
// Vignette for paper edges
|
||||||
|
float vig = vignette(v_texcoord);
|
||||||
|
gray *= vig;
|
||||||
|
|
||||||
|
gray = clamp(gray, 0.0, 1.0);
|
||||||
|
|
||||||
|
// E-ink colors with slight warmth variation
|
||||||
|
vec3 paperColor = vec3(0.94, 0.92, 0.86);
|
||||||
|
vec3 inkColor = vec3(0.10, 0.10, 0.12);
|
||||||
|
|
||||||
|
// More noticeable color variation for paper texture
|
||||||
|
float colorVariation = hash(screenPos * 0.08) * 0.02; // Increased from 0.01
|
||||||
|
paperColor += vec3(colorVariation, colorVariation * 0.5, -colorVariation * 0.2);
|
||||||
|
|
||||||
|
// linear interpolation. paints the gray value onto our specific color palette.
|
||||||
|
vec3 finalColor = mix(inkColor, paperColor, gray);
|
||||||
|
|
||||||
|
fragColor = vec4(finalColor, pixColor.a);
|
||||||
|
}
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
(defwindow calendar
|
|
||||||
:monitor 0
|
|
||||||
:geometry (geometry
|
|
||||||
:x "0%"
|
|
||||||
:y "0%"
|
|
||||||
:anchor "bottom right"
|
|
||||||
:width "0px"
|
|
||||||
:height "0px")
|
|
||||||
(window (calendar)))
|
|
||||||
@@ -0,0 +1,133 @@
|
|||||||
|
|
||||||
|
(deflisten weather
|
||||||
|
:initial '{"temp":0,"feelslike":0,"humidity":0,"wind":0,"desc":"","icon":"","city":""}'
|
||||||
|
"scripts/weather")
|
||||||
|
|
||||||
|
(deflisten volume
|
||||||
|
:initial '{"icon":"","percent":50,"sink_muted":false,"mic_icon":"","microphone":50,"source_muted":false,"sink":""}'
|
||||||
|
"scripts/volume")
|
||||||
|
|
||||||
|
(deflisten brightness
|
||||||
|
:initial '{"percent":0,"available":false}'
|
||||||
|
"scripts/brightness")
|
||||||
|
|
||||||
|
; --- Weather ---
|
||||||
|
|
||||||
|
(defwidget weather-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header
|
||||||
|
:title {weather.city != "" ? "Weather · ${weather.city}" : "Weather"}
|
||||||
|
:accent "weather-accent")
|
||||||
|
(box :orientation "h" :space-evenly false :halign "center" :class "weather-main"
|
||||||
|
(label :class "weather-icon" :valign "center" :text {weather.icon})
|
||||||
|
(box :orientation "v" :space-evenly false :valign "center"
|
||||||
|
(label :class "weather-temp" :text "${weather.temp}°C")
|
||||||
|
(label :class "weather-desc" :text {weather.desc})))
|
||||||
|
(box :orientation "h" :space-evenly true :class "weather-stats"
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
|
(label :class "gpu-stat-value" :text "${weather.feelslike}°C")
|
||||||
|
(label :class "gpu-stat-label" :text "feels like"))
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
|
(label :class "gpu-stat-value" :text "${weather.humidity}%")
|
||||||
|
(label :class "gpu-stat-label" :text "humidity"))
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
|
(label :class "gpu-stat-value" :text "${weather.wind} km/h")
|
||||||
|
(label :class "gpu-stat-label" :text "wind")))))
|
||||||
|
|
||||||
|
; --- Volume ---
|
||||||
|
|
||||||
|
(defwidget vol-row [icon value onchange onclick muted]
|
||||||
|
(box :orientation "h" :space-evenly false :valign "center" :class "ctrl-row"
|
||||||
|
(button
|
||||||
|
:class "ctrl-icon ${muted ? 'ctrl-muted' : ''}"
|
||||||
|
:onclick onclick
|
||||||
|
(label :text icon))
|
||||||
|
(scale
|
||||||
|
:min 0 :max 100 :value value
|
||||||
|
:hexpand true
|
||||||
|
:class "ctrl-slider ${muted ? 'ctrl-slider-muted' : ''}"
|
||||||
|
:onchange {muted ? "true" : onchange})
|
||||||
|
(label :class "ctrl-value ${muted ? 'ctrl-muted' : ''}" :halign "end" :text "${value}%")))
|
||||||
|
|
||||||
|
(defwidget volume-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header
|
||||||
|
:title {volume.sink != "" ? "Volume · ${volume.sink}" : "Volume"}
|
||||||
|
:accent "vol-accent")
|
||||||
|
(vol-row
|
||||||
|
:icon {volume.icon}
|
||||||
|
:value {volume.percent}
|
||||||
|
:muted {volume.sink_muted}
|
||||||
|
:onchange "scripts/volume setvol SINK {}"
|
||||||
|
:onclick "scripts/volume mute SINK")
|
||||||
|
(vol-row
|
||||||
|
:icon {volume.mic_icon}
|
||||||
|
:value {volume.microphone}
|
||||||
|
:muted {volume.source_muted}
|
||||||
|
:onchange "scripts/volume setvol SOURCE {}"
|
||||||
|
:onclick "scripts/volume mute SOURCE")))
|
||||||
|
|
||||||
|
; --- Quick Actions ---
|
||||||
|
|
||||||
|
(defpoll power-save :interval "5s" :initial "false" "scripts/power-save status")
|
||||||
|
(defpoll night-light :interval "5s" :initial "false" "scripts/nightlight status")
|
||||||
|
(defpoll read-mode :interval "5s" :initial "false" "scripts/read-mode status")
|
||||||
|
(defpoll airplane-mode :interval "5s" :initial "false" "scripts/airplane-mode status")
|
||||||
|
(defpoll do-not-disturb :interval "5s" :initial "false" "scripts/do-not-disturb status")
|
||||||
|
|
||||||
|
(defwidget quick-btn [icon label onclick active]
|
||||||
|
(button :class "quick-btn ${active ? 'quick-btn-active' : ''}"
|
||||||
|
:onclick onclick
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||||
|
(label :class "quick-icon" :text icon)
|
||||||
|
(label :class "quick-label" :text label))))
|
||||||
|
|
||||||
|
(defwidget quick-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header :title "Quick Actions" :accent "quick-accent")
|
||||||
|
(box :orientation "v" :space-evenly false :class "quick-grid" :spacing 4
|
||||||
|
(box :orientation "h" :space-evenly true
|
||||||
|
(quick-btn :icon "" :label "Night Light" :onclick "scripts/nightlight" :active {night-light})
|
||||||
|
(quick-btn :icon "" :label "Read Mode" :onclick "scripts/read-mode" :active {read-mode})
|
||||||
|
(quick-btn :icon "" :label "Wallpaper" :onclick "scripts/wallpaper" :active false))
|
||||||
|
(box :orientation "h" :space-evenly true
|
||||||
|
(quick-btn :icon "" :label "Power Save" :onclick "scripts/power-save" :active {power-save})
|
||||||
|
(quick-btn :icon "" :label "Airplane" :onclick "scripts/airplane-mode" :active {airplane-mode})
|
||||||
|
(quick-btn :icon "" :label "Do Not Dist" :onclick "scripts/do-not-disturb" :active {do-not-disturb}))
|
||||||
|
(box :orientation "h" :space-evenly true
|
||||||
|
(quick-btn :icon "" :label "Screenshot" :onclick "scripts/screenshot" :active false)
|
||||||
|
(quick-btn :icon "" :label "Lock" :onclick "scripts/lock" :active false)
|
||||||
|
(quick-btn :icon "" :label "Color Pick" :onclick "scripts/color-pick" :active false)))))
|
||||||
|
|
||||||
|
; --- Brightness ---
|
||||||
|
|
||||||
|
(defwidget brightness-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
:visible {brightness.available}
|
||||||
|
(section-header :title "Brightness" :accent "bri-accent")
|
||||||
|
(box :orientation "h" :space-evenly false :valign "center" :class "ctrl-row"
|
||||||
|
(label :class "ctrl-icon" :text "")
|
||||||
|
(scale
|
||||||
|
:min 1 :max 100 :value {brightness.percent}
|
||||||
|
:hexpand true
|
||||||
|
:class "ctrl-slider"
|
||||||
|
:onchange "scripts/brightness set {}")
|
||||||
|
(label :class "ctrl-value" :halign "end" :text "${brightness.percent}%"))))
|
||||||
|
|
||||||
|
; --- Root ---
|
||||||
|
|
||||||
|
(defwidget clock-win []
|
||||||
|
(box :class "sys-win" :orientation "v" :space-evenly false
|
||||||
|
(volume-section)
|
||||||
|
(brightness-section)
|
||||||
|
(box :class "section-sep")
|
||||||
|
(quick-section)
|
||||||
|
(box :class "section-sep")
|
||||||
|
(weather-section)
|
||||||
|
(box :class "section-sep")
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section cal-box"
|
||||||
|
(section-header :title "Calendar" :accent "cal-accent")
|
||||||
|
(calendar :show-week-numbers false))
|
||||||
|
))
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,105 @@
|
|||||||
|
|
||||||
|
(deflisten netinfo
|
||||||
|
:initial '{"wifi":{"ssid":"","ip":"","freq":0,"band":"","gen":"","signal":0},"ethernet":{"state":"down","ip":"","speed":"","interface":""},"usb":{"interface":"","ip":""}}'
|
||||||
|
"scripts/net/netinfo")
|
||||||
|
|
||||||
|
(deflisten bt-devices
|
||||||
|
:initial "[]"
|
||||||
|
"scripts/net/bt-devices")
|
||||||
|
|
||||||
|
; --- Shared widgets ---
|
||||||
|
|
||||||
|
(defwidget netinfo-row [label value]
|
||||||
|
(box :orientation "h" :space-evenly false :class "netinfo-row"
|
||||||
|
(label :class "netinfo-label" :halign "start" :text label)
|
||||||
|
(label :class "netinfo-value" :halign "end" :hexpand true :text value)))
|
||||||
|
|
||||||
|
(defwidget section-header-toggle [title accent enabled onclick icon-on icon-off]
|
||||||
|
(box :orientation "h" :space-evenly false :valign "center" :class "sys-section-header"
|
||||||
|
(box :class "section-accent ${accent}")
|
||||||
|
(label :class "sys-label" :text title :hexpand true :halign "start")
|
||||||
|
(button
|
||||||
|
:class "net-toggle-btn ${enabled ? 'net-toggle-on' : 'net-toggle-off'}"
|
||||||
|
:onclick onclick
|
||||||
|
(label :text {enabled ? icon-on : icon-off}))))
|
||||||
|
|
||||||
|
; --- WiFi ---
|
||||||
|
|
||||||
|
(defwidget wifi-net-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header-toggle
|
||||||
|
:title "WiFi" :accent "wifi-accent"
|
||||||
|
:enabled {net.wifi.enabled}
|
||||||
|
:onclick {net.wifi.enabled ? "rfkill block wlan" : "rfkill unblock wlan"}
|
||||||
|
:icon-on "" :icon-off "")
|
||||||
|
(box :orientation "v" :space-evenly false
|
||||||
|
:visible {net.wifi.connected}
|
||||||
|
(netinfo-row :label "SSID" :value {netinfo.wifi.ssid})
|
||||||
|
(netinfo-row :label "IP" :value {netinfo.wifi.ip})
|
||||||
|
(netinfo-row :label "Signal" :value "${net.wifi.icon} ${netinfo.wifi.signal} dBm")
|
||||||
|
(netinfo-row :label "Freq" :value "${netinfo.wifi.freq} MHz · ${netinfo.wifi.band} · ${netinfo.wifi.gen}"))
|
||||||
|
(label :class "netinfo-dim" :halign "start"
|
||||||
|
:visible {!net.wifi.connected}
|
||||||
|
:text {net.wifi.enabled ? "Not connected" : "Disabled"})))
|
||||||
|
|
||||||
|
; --- USB ---
|
||||||
|
|
||||||
|
(defwidget usb-net-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header :title "USB" :accent "usb-accent")
|
||||||
|
(netinfo-row :label "Interface" :value {netinfo.usb.interface})
|
||||||
|
(netinfo-row :label "IP" :value {netinfo.usb.ip})))
|
||||||
|
|
||||||
|
; --- Ethernet ---
|
||||||
|
|
||||||
|
(defwidget ethernet-net-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header :title "Ethernet" :accent "eth-accent")
|
||||||
|
(box :orientation "v" :space-evenly false
|
||||||
|
:visible {net.ethernet.connected}
|
||||||
|
(netinfo-row :label "Interface" :value {netinfo.ethernet.interface})
|
||||||
|
(netinfo-row :label "IP" :value {netinfo.ethernet.ip})
|
||||||
|
(netinfo-row :label "Speed" :value {netinfo.ethernet.speed}))
|
||||||
|
(label :class "netinfo-dim" :halign "start"
|
||||||
|
:visible {!net.ethernet.connected}
|
||||||
|
:text "No carrier")))
|
||||||
|
|
||||||
|
; --- Bluetooth ---
|
||||||
|
|
||||||
|
(defwidget bt-device-row [device]
|
||||||
|
(box :orientation "h" :space-evenly false :class "bt-device-row" :valign "center"
|
||||||
|
(label :class "bt-device-name" :hexpand true :halign "start" :text {device.name})
|
||||||
|
(button
|
||||||
|
:class "bt-device-btn ${device.connected ? 'bt-btn-on' : 'bt-btn-off'}"
|
||||||
|
:onclick "scripts/net/bt-toggle ${device.mac}"
|
||||||
|
:tooltip {device.connected ? "Disconnect" : "Connect"}
|
||||||
|
(label :text {device.connected ? "" : ""}))))
|
||||||
|
|
||||||
|
(defwidget bluetooth-net-section []
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header-toggle
|
||||||
|
:title "Bluetooth" :accent "blt-accent"
|
||||||
|
:enabled {bluetooth.powered}
|
||||||
|
:onclick {bluetooth.powered ? "bluetoothctl power off" : "bluetoothctl power on"}
|
||||||
|
:icon-on "" :icon-off "")
|
||||||
|
(scroll :vscroll true :hscroll false :height 90
|
||||||
|
:visible {bluetooth.powered}
|
||||||
|
(box :orientation "v" :space-evenly false
|
||||||
|
(for device in {bt-devices}
|
||||||
|
(bt-device-row :device {device}))))
|
||||||
|
(label :class "netinfo-dim" :halign "start"
|
||||||
|
:visible {!bluetooth.powered}
|
||||||
|
:text "Disabled")))
|
||||||
|
|
||||||
|
; --- Root ---
|
||||||
|
|
||||||
|
(defwidget net-win []
|
||||||
|
(box :class "sys-win" :space-evenly false :orientation "v"
|
||||||
|
(box :visible {net.usb.connected} :space-evenly false :orientation "v"
|
||||||
|
(usb-net-section)
|
||||||
|
(box :class "section-sep"))
|
||||||
|
(ethernet-net-section)
|
||||||
|
(box :class "section-sep")
|
||||||
|
(wifi-net-section)
|
||||||
|
(box :class "section-sep")
|
||||||
|
(bluetooth-net-section)))
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
|
||||||
|
(defwidget popup-win []
|
||||||
|
(box :space-evenly false :orientation "v"
|
||||||
|
(revealer :reveal {active-panel == "sys"} :transition "slidedown" :duration 120
|
||||||
|
(sys-win))
|
||||||
|
(revealer :reveal {active-panel == "net"} :transition "slidedown" :duration 120
|
||||||
|
(net-win))
|
||||||
|
(revealer :reveal {active-panel == "clock"} :transition "slidedown" :duration 120
|
||||||
|
(clock-win))
|
||||||
|
(revealer :reveal {active-panel == "radio"} :transition "slidedown" :duration 120
|
||||||
|
(radio-win))))
|
||||||
|
|
||||||
|
(defwindow popup
|
||||||
|
:monitor 0
|
||||||
|
:stacking "overlay"
|
||||||
|
:geometry (geometry
|
||||||
|
:x "0%" :y "0%"
|
||||||
|
:anchor "bottom right"
|
||||||
|
:width "320px" :height "0px")
|
||||||
|
(window (popup-win)))
|
||||||
@@ -1,37 +1,28 @@
|
|||||||
(defwidget powermenu_entry [label icon onclick]
|
|
||||||
(box :orientation "v" :space-evenly false :class "powermenu-entry"
|
(defwidget pm-btn [icon label onclick]
|
||||||
(button :class "powermenu-button" :onclick {onclick}
|
(button :class "pm-btn" :onclick onclick
|
||||||
:tooltip "${label}"
|
(box :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||||
(label :class "powermenu-icon" :text {icon})
|
(label :class "pm-icon" :text icon)
|
||||||
)
|
(label :class "pm-label" :text label))))
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(defwidget powermenu []
|
(defwidget powermenu []
|
||||||
(box :orientation "h" :space-evenly true :valign "center" :halign "center" :class "powermenu-box"
|
(box :hexpand true :vexpand true :class "pm-overlay"
|
||||||
(powermenu_entry :label "Power off"
|
(box :halign "center" :valign "center"
|
||||||
:icon ""
|
(eventbox :class "winevent"
|
||||||
|
(box :class "wininner pm-win"
|
||||||
|
(box :orientation "h" :space-evenly true
|
||||||
|
(pm-btn :icon "" :label "Power off"
|
||||||
:onclick "systemctl poweroff")
|
:onclick "systemctl poweroff")
|
||||||
(powermenu_entry :label "Reboot"
|
(pm-btn :icon "" :label "Reboot"
|
||||||
:icon ""
|
|
||||||
:onclick "systemctl reboot")
|
:onclick "systemctl reboot")
|
||||||
(powermenu_entry :label "Lock"
|
(pm-btn :icon "" :label "Lock"
|
||||||
:icon ""
|
:onclick "scripts/lock")
|
||||||
:onclick "sleep 0.1 && gtklock & eww close powermenu &")
|
(pm-btn :icon "" :label "Suspend"
|
||||||
|
:onclick "scripts/lock & systemctl suspend")
|
||||||
(powermenu_entry :label "Suspend"
|
(pm-btn :icon "" :label "Sign out"
|
||||||
:icon ""
|
|
||||||
:onclick "sleep 0.1 && gtklock & systemctl suspend & eww close powermenu &")
|
|
||||||
|
|
||||||
(powermenu_entry :label "Sign out"
|
|
||||||
:icon ""
|
|
||||||
:onclick "hyprctl eval \"hl.dispatch(hl.dsp.exit())\"")
|
:onclick "hyprctl eval \"hl.dispatch(hl.dsp.exit())\"")
|
||||||
|
(pm-btn :icon "" :label "Cancel"
|
||||||
(powermenu_entry :label "Cancel"
|
:onclick "eww close powermenu")))))))
|
||||||
:icon ""
|
|
||||||
:onclick "eww close powermenu")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
(defwindow powermenu
|
(defwindow powermenu
|
||||||
:monitor 0
|
:monitor 0
|
||||||
@@ -41,5 +32,4 @@
|
|||||||
:width "120%"
|
:width "120%"
|
||||||
:height "120%")
|
:height "120%")
|
||||||
:namespace "eww-blur"
|
:namespace "eww-blur"
|
||||||
(powermenu)
|
(powermenu))
|
||||||
)
|
|
||||||
|
|||||||
@@ -1,111 +1,82 @@
|
|||||||
(deflisten radio :initial '{"is_paused":1,"song":{"artist":"","song":"","image600":"https://www.radiorecord.ru/upload/stations_images/record_image600_white_fill.png"},"stations":[]}' "scripts/radio")
|
|
||||||
(defvar radio_rev false)
|
|
||||||
|
|
||||||
(defwindow radio
|
|
||||||
:monitor 0
|
|
||||||
:geometry (geometry
|
|
||||||
:x "0%"
|
|
||||||
:y "0%"
|
|
||||||
:anchor "bottom right"
|
|
||||||
:width "0px"
|
|
||||||
:height "0px")
|
|
||||||
(window (radio-win)))
|
|
||||||
|
|
||||||
|
(deflisten radio
|
||||||
|
:initial '{"is_paused":1,"song":{"artist":"","song":"","image600":""},"radio":0,"stations":[],"media":{"player":"","status":"Stopped","artist":"","title":"","art":""}}'
|
||||||
|
"scripts/radio")
|
||||||
|
(defvar radio-vol 80)
|
||||||
|
(defvar radio-muted false)
|
||||||
|
|
||||||
(defwidget radio-win []
|
(defwidget radio-win []
|
||||||
(box
|
(box :class "sys-win" :orientation "v" :space-evenly false
|
||||||
:space-evenly false
|
|
||||||
:orientation "h"
|
|
||||||
(revealer
|
|
||||||
:visible radio_rev
|
|
||||||
:reveal radio_rev
|
|
||||||
:transition "slideleft"
|
|
||||||
(radio-selector))
|
|
||||||
(box
|
|
||||||
:space-evenly false
|
|
||||||
:orientation "v"
|
|
||||||
|
|
||||||
(box
|
; --- Now Playing ---
|
||||||
:class "album_art"
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
:style "background-size:cover; background-image: url('${radio.song.image600?:'https://www.radiorecord.ru/upload/stations_images/record_image600_white_fill.png'}');")
|
(section-header :title "Media" :accent "radio-accent")
|
||||||
(box
|
(box :orientation "h" :space-evenly false :valign "center" :spacing 10 :class "radio-now-playing"
|
||||||
:space-evenly false
|
(box :class "radio-art"
|
||||||
:orientation "v"
|
:style "background-image: url('${radio.is_paused == 0 ? radio.song.image600 : (radio.media.status != 'Stopped' ? radio.media.art : radio.song.image600)}'); background-size: cover; background-position: center;"
|
||||||
(label
|
(label :class "radio-art-icon" :halign "center" :valign "center"
|
||||||
:halign "center"
|
:visible {radio.is_paused == 0
|
||||||
:class "song"
|
? radio.song.image600 == ""
|
||||||
:wrap "true"
|
: (radio.media.status != "Stopped"
|
||||||
:limit-width 18
|
? radio.media.art == ""
|
||||||
:text "${radio.song.song?:'...'}")
|
: radio.song.image600 == "")}
|
||||||
(label
|
:text ""))
|
||||||
:halign "center"
|
(box :orientation "v" :space-evenly false :hexpand true :valign "center"
|
||||||
:class "artist"
|
(label :class "radio-song" :halign "start" :wrap true :limit-width 20
|
||||||
:wrap "true"
|
:text {radio.is_paused == 0
|
||||||
:limit-width 22
|
? (radio.song.song != "" ? radio.song.song : "Tuning in...")
|
||||||
:text "${radio.song.artist?:'...'}")
|
: (radio.media.status != "Stopped"
|
||||||
(box
|
? (radio.media.title != "" ? radio.media.title : "Playing")
|
||||||
:space-evenly true
|
: (radio.song.song != "" ? radio.song.song : "Nothing playing"))})
|
||||||
:orientation "h"
|
(label :class "radio-artist" :halign "start" :wrap true :limit-width 22
|
||||||
:halign "center"
|
:text {radio.is_paused == 0
|
||||||
:class "btn_bar"
|
? radio.song.artist
|
||||||
|
: (radio.media.status != "Stopped"
|
||||||
|
? (radio.media.artist != "" ? radio.media.artist : radio.media.player)
|
||||||
|
: "")})))
|
||||||
|
|
||||||
(button
|
; Controls - hidden only in placeholder state
|
||||||
:class "btn_left"
|
(box :visible {radio.is_paused == 0 || radio.radio > 0 || radio.media.status != "Stopped"}
|
||||||
:onclick "${EWW_CMD} update radio_rev=${!radio_rev}"
|
:orientation "v" :space-evenly false :class "radio-controls"
|
||||||
(box ""))
|
(box :orientation "h" :space-evenly true :halign "center"
|
||||||
|
(button :visible {radio.is_paused == 1 && radio.media.status != "Stopped"}
|
||||||
|
:class "radio-ctrl-btn" :timeout "2s" :onclick "scripts/media previous"
|
||||||
|
(label :text ""))
|
||||||
|
(button :class "radio-ctrl-btn" :timeout "2s"
|
||||||
|
:onclick {radio.is_paused == 1 && radio.media.status != "Stopped" ? "scripts/media play-pause" : "scripts/radio toggle"}
|
||||||
|
(label :text {radio.is_paused == 0 ? "" : (radio.media.status == "Playing" ? "" : "")}))
|
||||||
|
(button :visible {radio.is_paused == 1 && radio.media.status != "Stopped"}
|
||||||
|
:class "radio-ctrl-btn" :timeout "2s" :onclick "scripts/media next"
|
||||||
|
(label :text "")))
|
||||||
|
(vol-row
|
||||||
|
:icon ""
|
||||||
|
:value {radio-vol}
|
||||||
|
:onchange "scripts/radio vol {}"
|
||||||
|
:onclick "scripts/radio mute"
|
||||||
|
:muted {radio-muted})))
|
||||||
|
|
||||||
(button
|
(box :class "section-sep")
|
||||||
:class "btn_play"
|
|
||||||
:timeout "2s"
|
|
||||||
:onclick "scripts/radio toggle"
|
|
||||||
"${radio.is_paused==1 ? "" : ""}")
|
|
||||||
|
|
||||||
(button
|
|
||||||
:class "btn_right"
|
|
||||||
:onclick ""
|
|
||||||
(box :visible false ""))
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
(defwidget radio-selector []
|
|
||||||
(scroll
|
|
||||||
:active true
|
|
||||||
:vscroll true
|
|
||||||
:hscroll false
|
|
||||||
|
|
||||||
(box
|
|
||||||
:class "station_list"
|
|
||||||
:space-evenly false
|
|
||||||
:orientation "v"
|
|
||||||
|
|
||||||
|
; --- Stations ---
|
||||||
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
|
(section-header :title "Radio Stations" :accent "radio-accent")
|
||||||
|
(scroll :vscroll true :hscroll false :height 130
|
||||||
|
(box :class "station-list" :space-evenly false :orientation "v"
|
||||||
(for station in {radio.stations}
|
(for station in {radio.stations}
|
||||||
(button
|
(button
|
||||||
:class "station_art ${(radio.radio == station.id)?'station_sel':''}"
|
:class "station-row ${radio.radio == station.id ? 'station-row-active' : ''}"
|
||||||
:timeout "2s"
|
:timeout "2s"
|
||||||
:onclick "scripts/radio start ${station.id}"
|
:onclick "scripts/radio start ${station.id}"
|
||||||
:tooltip "${station.title}"
|
:tooltip {station.title}
|
||||||
:style "background-size:cover; background-image: url('${station.icon_fill_white}');"
|
(box :orientation "h" :space-evenly false :valign "center"
|
||||||
)
|
(box :class "station-icon"
|
||||||
)
|
:style "background-image: url('${station.icon_fill_white}'); background-size: contain; background-position: center;")
|
||||||
)
|
(label :class "station-name" :text {station.title}
|
||||||
)
|
:hexpand true :halign "start" :limit-width 16)))))))))
|
||||||
)
|
|
||||||
|
|
||||||
(defwidget radio-mod []
|
(defwidget radio-mod []
|
||||||
(module
|
(module
|
||||||
(box
|
(eventbox
|
||||||
:orientation "v"
|
:onclick "(sleep 0.1 && scripts/panel-toggle radio)"
|
||||||
(button
|
(box :orientation "v"
|
||||||
:onclick "(sleep 0.1 && eww-open-on-current-screen radio --toggle --no-daemonize)"
|
(label :show-truncated false :class "icon-text" :text "")))))
|
||||||
(label
|
|
||||||
:show-truncated false
|
|
||||||
:class "icon-text"
|
|
||||||
:text "")
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|||||||
@@ -1,140 +1,211 @@
|
|||||||
|
|
||||||
|
(defpoll swap :interval "30s" "scripts/sys/swap")
|
||||||
|
|
||||||
|
(defpoll cpu-freq-min :interval "60s"
|
||||||
|
"awk '{print $1/1000}' /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq")
|
||||||
|
(defpoll cpu-freq-max :interval "60s"
|
||||||
|
"awk '{print $1/1000}' /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq")
|
||||||
|
(defpoll cpu-temp :interval "4s"
|
||||||
|
"scripts/sys/cputemp")
|
||||||
|
(defpoll cpu-freq-avg :interval "2s"
|
||||||
|
"awk '{sum+=$1; count++} END {printf \"%.1f\", sum/count/1000000}' /sys/devices/system/cpu/cpu*/cpufreq/scaling_cur_freq")
|
||||||
|
|
||||||
|
(deflisten cpu-grid :initial '[[{"core":0,"usage":0,"freq":0}]]'
|
||||||
|
"bash scripts/sys/cpugrid")
|
||||||
|
|
||||||
|
; --- Shared ---
|
||||||
|
|
||||||
|
(defwidget section-header [title accent]
|
||||||
|
(box :orientation "h" :space-evenly false :valign "center" :class "sys-section-header"
|
||||||
|
(box :class "section-accent ${accent}")
|
||||||
|
(label :class "sys-label" :text title)))
|
||||||
|
|
||||||
|
; --- CPU ---
|
||||||
|
|
||||||
|
(defwidget cpu-core-cell [core]
|
||||||
|
(overlay
|
||||||
|
(circular-progress
|
||||||
|
:width 60 :height 60
|
||||||
|
:value {core.usage}
|
||||||
|
:start-at 0
|
||||||
|
:clockwise true
|
||||||
|
:thickness 7
|
||||||
|
:class "cpu-usage-ring")
|
||||||
|
(circular-progress
|
||||||
|
:value {100 * (core.freq - cpu-freq-min) / (cpu-freq-max - cpu-freq-min)}
|
||||||
|
:start-at 0
|
||||||
|
:clockwise true
|
||||||
|
:thickness 4
|
||||||
|
:class "cpu-freq-ring")
|
||||||
|
(box :halign "center" :valign "center"
|
||||||
|
(label :class "cpu-core-label" :text "${core.core}"))
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
(defwidget cpu-sys-win []
|
(defwidget cpu-sys-win []
|
||||||
(box
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
:orientation "v"
|
(section-header :title "CPU" :accent "cpu-accent")
|
||||||
:space-evenly false
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
(box :class "sys-label" "CPU")
|
(for row in {cpu-grid}
|
||||||
(box
|
(box :orientation "h" :space-evenly false
|
||||||
:orientation "v"
|
(for core in {row}
|
||||||
(for core in {EWW_CPU.cores}
|
(cpu-core-cell :core {core})))))
|
||||||
(box
|
(box :orientation "h" :space-evenly true :class "gpu-stats-row"
|
||||||
:space-evenly false
|
(box :orientation "v" :halign "center" :space-evenly false
|
||||||
:class "cpu-core ${core.core}"
|
(label :class "gpu-stat-value" :text "${cpu-temp}°C")
|
||||||
(progress
|
(label :class "gpu-stat-label" :text "temp"))
|
||||||
:value {core.usage}
|
(box :orientation "v" :halign "center" :space-evenly false
|
||||||
:orientation "h"
|
(label :class "gpu-stat-value" :text "${cpu-freq-avg}GHz")
|
||||||
:flipped true
|
(label :class "gpu-stat-label" :text "avg clk"))
|
||||||
:class "cpu-core-usage"
|
(box :orientation "v" :halign "center" :space-evenly false
|
||||||
:tooltip "${core.core} @ ${core.freq}Mhz"
|
(label :class "gpu-stat-value" :text "${round(EWW_CPU.avg, 0)}%")
|
||||||
)
|
(label :class "gpu-stat-label" :text "usage")))
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
; --- GPU ---
|
||||||
|
|
||||||
(defwidget gpu-sys-win []
|
(defwidget gpu-sys-win []
|
||||||
(box
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
:orientation "v"
|
(section-header :title "GPU" :accent "gpu-accent")
|
||||||
:space-evenly false
|
(box :orientation "h" :space-evenly true
|
||||||
(box :class "sys-label" "GPU")
|
; GFX - outer: activity%, inner: clock% of range
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
|
(overlay
|
||||||
|
(circular-progress :width 68 :height 68
|
||||||
|
:value {gpu.gfx_pct}
|
||||||
|
:start-at 0 :clockwise true :thickness 7
|
||||||
|
:class "gpu-ring"
|
||||||
|
:tooltip "GFX ${round(gpu.gfx_pct, 1)}%\nClock ${gpu.sclk} MHz (${round(gpu.sclk_pct, 0)}% of range)")
|
||||||
|
(circular-progress
|
||||||
|
:value {gpu.sclk_pct}
|
||||||
|
:start-at 0 :clockwise true :thickness 4
|
||||||
|
:class "gpu-freq-ring")
|
||||||
|
(box :halign "center" :valign "center"
|
||||||
|
(label :class "gpu-ring-value" :text "${round(gpu.gfx_pct, 0)}%")))
|
||||||
|
(label :class "gpu-ring-label" :text "GFX" :halign "center"))
|
||||||
|
; Memory - outer: activity%, inner: memory clock% of range
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
|
(overlay
|
||||||
|
(circular-progress :width 68 :height 68
|
||||||
|
:value {gpu.mem_pct}
|
||||||
|
:start-at 0 :clockwise true :thickness 7
|
||||||
|
:class "gpu-ring"
|
||||||
|
:tooltip "Memory ${round(gpu.mem_pct, 1)}%\nClock ${gpu.mclk} MHz (${round(gpu.mclk_pct, 0)}% of range)")
|
||||||
|
(circular-progress
|
||||||
|
:value {gpu.mclk_pct}
|
||||||
|
:start-at 0 :clockwise true :thickness 4
|
||||||
|
:class "gpu-freq-ring")
|
||||||
|
(box :halign "center" :valign "center"
|
||||||
|
(label :class "gpu-ring-value" :text "${round(gpu.mem_pct, 0)}%")))
|
||||||
|
(label :class "gpu-ring-label" :text "Mem" :halign "center"))
|
||||||
|
; Media - outer: activity%, inner: video clock% of GPU clock max
|
||||||
|
(box :orientation "v" :space-evenly false :halign "center"
|
||||||
|
(overlay
|
||||||
|
(circular-progress :width 68 :height 68
|
||||||
|
:value {gpu.media_pct}
|
||||||
|
:start-at 0 :clockwise true :thickness 7
|
||||||
|
:class "gpu-ring"
|
||||||
|
:tooltip "Media Engine ${round(gpu.media_pct, 1)}%\nVideo Clock ${gpu.vclk} MHz")
|
||||||
|
(circular-progress
|
||||||
|
:value {gpu.vclk_pct}
|
||||||
|
:start-at 0 :clockwise true :thickness 4
|
||||||
|
:class "gpu-freq-ring")
|
||||||
|
(box :halign "center" :valign "center"
|
||||||
|
(label :class "gpu-ring-value" :text "${round(gpu.media_pct, 0)}%")))
|
||||||
|
(label :class "gpu-ring-label" :text "Med" :halign "center")))
|
||||||
|
(box :orientation "v" :space-evenly false :class "vram-row"
|
||||||
(progress
|
(progress
|
||||||
:value {gpu.devices[0].GRBM2?.CommandProcessor-Compute?.value?:0.0}
|
:value {100 * gpu.vram_used / gpu.vram_total}
|
||||||
:orientation "h"
|
:orientation "h" :flipped true :hexpand true
|
||||||
:flipped true
|
:class "vram-bar"
|
||||||
:class "gpu-core-usage"
|
:tooltip "VRAM ${round(100 * gpu.vram_used / gpu.vram_total, 1)}%")
|
||||||
:tooltip "Compute"
|
(box :orientation "h" :space-evenly false
|
||||||
|
(label :class "vram-usage-label" :halign "start" :hexpand true :text "VRAM")
|
||||||
|
(label :class "vram-usage-label" :halign "end"
|
||||||
|
:text "${round(gpu.vram_used / 1024, 1)} / ${round(gpu.vram_total / 1024, 1)} GiB")))
|
||||||
|
(box :orientation "h" :space-evenly true :class "gpu-stats-row"
|
||||||
|
(box :orientation "v" :halign "center" :space-evenly false
|
||||||
|
(label :class "gpu-stat-value" :text "${gpu.temp}°C")
|
||||||
|
(label :class "gpu-stat-label" :text "temp"))
|
||||||
|
(box :orientation "v" :halign "center" :space-evenly false
|
||||||
|
(label :class "gpu-stat-value" :text "${gpu.power}W")
|
||||||
|
(label :class "gpu-stat-label" :text "power")))
|
||||||
)
|
)
|
||||||
(progress
|
)
|
||||||
:value {gpu.devices[0].GRBM2?.CommandProcessor-Fetcher?.value?:0.0}
|
|
||||||
:orientation "h"
|
; --- RAM ---
|
||||||
:flipped true
|
|
||||||
:class "gpu-core-usage"
|
(defwidget ram-sys-win []
|
||||||
:tooltip "Fetcher"
|
(box :orientation "v" :space-evenly false :class "sys-section"
|
||||||
)
|
(section-header :title "RAM" :accent "ram-accent")
|
||||||
(progress
|
(box :orientation "h" :space-evenly false :halign "center" :spacing 16 :valign "center"
|
||||||
:value {gpu.devices[0].GRBM2?.CommandProcessor-Graphics?.value?:0.0}
|
(overlay
|
||||||
:orientation "h"
|
(circular-progress
|
||||||
:flipped true
|
:width 88 :height 88
|
||||||
:class "gpu-core-usage"
|
:value {100*memory.used/memory.total}
|
||||||
:tooltip "Graphics"
|
:start-at 0
|
||||||
)
|
:clockwise true
|
||||||
(box :class "spacer")
|
:thickness 9
|
||||||
(progress
|
:class "ram-ring"
|
||||||
:value {gpu.devices[0]?.gpu_activity?.GFX?.value?:0.0}
|
:tooltip "RAM\nUsed ${memory.human.used} / ${memory.human.total}\nCached ${memory.human.cached}")
|
||||||
:orientation "h"
|
(circular-progress
|
||||||
:flipped true
|
:value {100*memory.cached/memory.total}
|
||||||
:class "gpu-core-usage"
|
:start-at {100*memory.used/memory.total}
|
||||||
:tooltip "GFX"
|
:clockwise true
|
||||||
)
|
:thickness 9
|
||||||
(progress
|
:class "ram-cached-ring")
|
||||||
:value {gpu.devices[0]?.gpu_activity?.Memory?.value?:0.0}
|
(box :orientation "v" :valign "center" :halign "center" :space-evenly false
|
||||||
:orientation "h"
|
(label :class "ram-used-label" :text "${memory.human.used}")
|
||||||
:flipped true
|
(label :class "ram-total-label" :text "${memory.human.total}")))
|
||||||
:class "gpu-core-usage"
|
(box :orientation "v" :space-evenly false :halign "center" :valign "center"
|
||||||
:tooltip "Memory"
|
(overlay
|
||||||
)
|
(circular-progress
|
||||||
(progress
|
:width 72 :height 72
|
||||||
:value {gpu.devices[0]?.gpu_activity?.MediaEngine?.value?:0.0}
|
:value {100*swap.used/swap.total}
|
||||||
:orientation "h"
|
:start-at 0 :clockwise true :thickness 7
|
||||||
:flipped true
|
:class "swap-ring"
|
||||||
:class "gpu-core-usage"
|
:tooltip "Swap\n${swap.human.used} / ${swap.human.total}")
|
||||||
:tooltip "Media"
|
(box :orientation "v" :valign "center" :halign "center" :space-evenly false
|
||||||
)
|
(label :class "ram-used-label" :text "${swap.human.used}")
|
||||||
(box :class "spacer")
|
(label :class "ram-total-label" :text "${swap.human.total}"))))
|
||||||
(progress
|
|
||||||
:value {100*(gpu.devices[0]?.VRAM?.TotalVRAMUsage?.value?:0.0)/(gpu.devices[0]?.VRAM?.TotalVRAM?.value?:1.0)}
|
|
||||||
:orientation "h"
|
|
||||||
:flipped true
|
|
||||||
:class "gpu-core-usage"
|
|
||||||
:tooltip "VRAM"
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(defwidget ram-sys-win []
|
; --- Battery ---
|
||||||
(box
|
|
||||||
:orientation "v"
|
(defwidget bat-sys-win []
|
||||||
:space-evenly false
|
(box :orientation "v" :space-evenly false :class "sys-section" :visible {battery.visible}
|
||||||
(box :class "sys-label" "RAM")
|
(section-header :title "Battery" :accent "bat-accent")
|
||||||
(progress
|
(overlay
|
||||||
:value {100*memory.used/memory.total}
|
(circular-progress
|
||||||
:orientation "h"
|
:width 60 :height 60
|
||||||
:flipped true
|
:value {battery.percentage}
|
||||||
:class "memory-usage"
|
:start-at 0
|
||||||
:tooltip "RAM"
|
:clockwise true
|
||||||
)
|
:thickness 6
|
||||||
|
:class "bat-ring"
|
||||||
|
:style "color: ${battery.color};"
|
||||||
|
:tooltip "Battery ${round(battery.percentage, 0)}%\n${battery.status} @ ${battery.wattage}")
|
||||||
|
(label :class "bat-ring-label"
|
||||||
|
:text "${round(battery.percentage, 0)}%"))
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
; --- Root ---
|
||||||
|
|
||||||
(defwidget sys-win []
|
(defwidget sys-win []
|
||||||
(box
|
(box
|
||||||
:class "sys-win"
|
:class "sys-win"
|
||||||
:space-evenly false
|
|
||||||
:orientation "h"
|
|
||||||
(box
|
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
:orientation "v"
|
:orientation "v"
|
||||||
(cpu-sys-win)
|
(cpu-sys-win)
|
||||||
(box :class "spacer")
|
(box :class "section-sep")
|
||||||
(box :class "spacer")
|
|
||||||
(gpu-sys-win)
|
(gpu-sys-win)
|
||||||
(box :class "spacer")
|
(box :class "section-sep")
|
||||||
(box :class "spacer")
|
|
||||||
(ram-sys-win)
|
(ram-sys-win)
|
||||||
)
|
(box :class "section-sep" :visible {battery.visible})
|
||||||
(box
|
(bat-sys-win)
|
||||||
:visible {battery.visible}
|
|
||||||
:height 200
|
|
||||||
(graph
|
|
||||||
:height 200
|
|
||||||
:value {battery.percentage}
|
|
||||||
:time-range "30min"
|
|
||||||
:min "0.0"
|
|
||||||
:max "100.0"
|
|
||||||
:dynamic true
|
|
||||||
)
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
||||||
(defwindow sys
|
|
||||||
:monitor 0
|
|
||||||
:stacking "overlay"
|
|
||||||
:geometry (geometry
|
|
||||||
:x "0%"
|
|
||||||
:y "0%"
|
|
||||||
:anchor "bottom right"
|
|
||||||
:width "0px"
|
|
||||||
:height "0px")
|
|
||||||
(window (sys-win)))
|
|
||||||
|
|||||||
@@ -12,24 +12,56 @@ let
|
|||||||
|
|
||||||
exec ${lib.getExe pkgs.eww} open "$window" "$@"
|
exec ${lib.getExe pkgs.eww} open "$window" "$@"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Wraps a static script file with a bash launcher that prepends Nix store
|
||||||
|
# bin dirs to PATH — keeps the source files unchanged.
|
||||||
|
mkScript = name: src: inputs: pkgs.writeShellScriptBin name ''
|
||||||
|
export PATH="${lib.makeBinPath inputs}:$PATH"
|
||||||
|
${builtins.readFile src}
|
||||||
|
'';
|
||||||
|
|
||||||
|
scripts = {
|
||||||
|
"scripts/brightness" = mkScript "brightness" ./bar/scripts/brightness [ pkgs.brightnessctl ];
|
||||||
|
"scripts/nightlight" = mkScript "nightlight" ./bar/scripts/nightlight [ pkgs.wlsunset ];
|
||||||
|
"scripts/read-mode" = mkScript "read-mode" ./bar/scripts/read-mode [ pkgs.hyprland ];
|
||||||
|
"scripts/airplane-mode" = mkScript "airplane-mode" ./bar/scripts/airplane-mode [ pkgs.util-linux ];
|
||||||
|
"scripts/do-not-disturb" = mkScript "do-not-disturb" ./bar/scripts/do-not-disturb [ pkgs.dunst ];
|
||||||
|
"scripts/panel-toggle" = mkScript "panel-toggle" ./bar/scripts/panel-toggle [ pkgs.eww pkgs.util-linux openOnCurrentScreen ];
|
||||||
|
"scripts/powermenu-toggle" = mkScript "powermenu-toggle" ./bar/scripts/powermenu-toggle [ pkgs.eww openOnCurrentScreen ];
|
||||||
|
"scripts/power-save" = mkScript "power-save" ./bar/scripts/power-save [ pkgs.eww ];
|
||||||
|
"scripts/radio" = mkScript "radio" ./bar/scripts/radio [ pkgs.eww pkgs.jq pkgs.curl pkgs.mpv pkgs.playerctl ];
|
||||||
|
"scripts/color-pick" = mkScript "color-pick" ./bar/scripts/color-pick [ pkgs.eww pkgs.hyprpicker ];
|
||||||
|
"scripts/media" = mkScript "media" ./bar/scripts/media [ pkgs.playerctl ];
|
||||||
|
"scripts/lock" = mkScript "lock" ./bar/scripts/lock [ pkgs.eww pkgs.hyprlock ];
|
||||||
|
"scripts/screenshot" = mkScript "screenshot" ./bar/scripts/screenshot [ pkgs.eww pkgs.hyprshot pkgs.satty pkgs.wl-clipboard ];
|
||||||
|
"scripts/sys/gpu" = mkScript "gpu" ./bar/scripts/sys/gpu [ pkgs.custom.amdgpu_top pkgs.jq ];
|
||||||
|
"scripts/sys/memory" = mkScript "memory" ./bar/scripts/sys/memory [ pkgs.ripgrep ];
|
||||||
|
"scripts/volume" = mkScript "volume" ./bar/scripts/volume [ pkgs.ripgrep ];
|
||||||
|
"scripts/weather" = mkScript "weather" ./bar/scripts/weather [ pkgs.jq pkgs.curl ];
|
||||||
|
"scripts/workspaces" = mkScript "workspaces" ./bar/scripts/workspaces [ pkgs.jaq pkgs.socat pkgs.ripgrep ];
|
||||||
|
};
|
||||||
in {
|
in {
|
||||||
|
|
||||||
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
||||||
home.packages = with pkgs; [ eww jq jaq custom.amdgpu_top openOnCurrentScreen ];
|
home.packages = [ pkgs.eww openOnCurrentScreen ];
|
||||||
|
|
||||||
xdg.configFile."eww" = {
|
xdg.configFile = lib.mkMerge [
|
||||||
|
{
|
||||||
|
"eww" = {
|
||||||
source = lib.cleanSourceWith {
|
source = lib.cleanSourceWith {
|
||||||
filter = name: _type:
|
filter = name: _type:
|
||||||
let baseName = baseNameOf (toString name);
|
let
|
||||||
in !(lib.hasSuffix ".nix" baseName) && (baseName != "_colors.scss");
|
baseName = baseNameOf (toString name);
|
||||||
|
relPath = lib.removePrefix (toString ./bar + "/") (toString name);
|
||||||
|
in !(lib.hasSuffix ".nix" baseName)
|
||||||
|
&& (baseName != "_colors.scss")
|
||||||
|
&& !(builtins.elem relPath (builtins.attrNames scripts));
|
||||||
src = lib.cleanSource ./bar/.;
|
src = lib.cleanSource ./bar/.;
|
||||||
};
|
};
|
||||||
|
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
# colors file
|
"eww/css/_colors.scss".text = ''
|
||||||
xdg.configFile."eww/css/_colors.scss".text = ''
|
|
||||||
$base00: #${config.colorScheme.palette.base00};
|
$base00: #${config.colorScheme.palette.base00};
|
||||||
$base01: #${config.colorScheme.palette.base01};
|
$base01: #${config.colorScheme.palette.base01};
|
||||||
$base02: #${config.colorScheme.palette.base02};
|
$base02: #${config.colorScheme.palette.base02};
|
||||||
@@ -59,6 +91,16 @@ in {
|
|||||||
|
|
||||||
$gaps-screen: ${config.colorScheme.palette.gaps-screen}px;
|
$gaps-screen: ${config.colorScheme.palette.gaps-screen}px;
|
||||||
$gaps-window: ${config.colorScheme.palette.gaps-window}px;
|
$gaps-window: ${config.colorScheme.palette.gaps-window}px;
|
||||||
|
|
||||||
|
$panel-font-size: 10pt;
|
||||||
|
$popup-scale: 1.25;
|
||||||
'';
|
'';
|
||||||
|
}
|
||||||
|
|
||||||
|
(lib.mapAttrs' (rel: drv: {
|
||||||
|
name = "eww/${rel}";
|
||||||
|
value.source = "${drv}/bin/${drv.name}";
|
||||||
|
}) scripts)
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +1,24 @@
|
|||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
let
|
let
|
||||||
restartEwwBar = monitor: pkgs.writeShellScript "restart-eww-bar-after-kanshi-${toString monitor}" ''
|
# Close the bar if it's already open (wrong screen), then open on the target screen.
|
||||||
|
moveOrOpenBar = screen: "${pkgs.writeShellScript "kanshi-eww-bar-${toString screen}" ''
|
||||||
|
if ${pkgs.eww}/bin/eww active-windows 2>/dev/null | grep -qx "bar"; then
|
||||||
|
${pkgs.eww}/bin/eww close bar
|
||||||
|
fi
|
||||||
|
${pkgs.eww}/bin/eww open bar --screen ${toString screen}
|
||||||
|
''}";
|
||||||
|
|
||||||
sleep 1
|
baseOutput = {
|
||||||
${lib.getExe pkgs.eww} close bar || true
|
position = "0,0";
|
||||||
${lib.getExe pkgs.eww} open bar --screen ${toString monitor}
|
scale = 1.0;
|
||||||
'';
|
adaptiveSync = true;
|
||||||
|
status = "enable";
|
||||||
|
transform = "normal";
|
||||||
|
};
|
||||||
|
aocT = "AOC 24E1W1 GNSKCHA086899";
|
||||||
|
aocB = "AOC 24E1W1 GNSKBHA080346";
|
||||||
|
lgM = "LG Electronics LG ULTRAGEAR+ 511NTDVGC194";
|
||||||
|
valinorM = "Lenovo Group Limited *";
|
||||||
in {
|
in {
|
||||||
|
|
||||||
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
||||||
@@ -13,110 +26,134 @@ in {
|
|||||||
enable = true;
|
enable = true;
|
||||||
systemdTarget = "graphical-session.target";
|
systemdTarget = "graphical-session.target";
|
||||||
settings = [
|
settings = [
|
||||||
{
|
{output = baseOutput//{
|
||||||
profile.name = "tower_0";
|
criteria = "LG Electronics LG ULTRAGEAR+ 511NTDVGC194";
|
||||||
profile.exec = [ "${restartEwwBar 1}" ];
|
# mode = "2560x1440@480.168";
|
||||||
profile.outputs = [
|
mode = "2560x1440@240.083";
|
||||||
{
|
# mode = "1920x1080x240.084";
|
||||||
|
};}
|
||||||
|
{output = baseOutput//{
|
||||||
criteria = "AOC 24E1W1 GNSKCHA086899";
|
criteria = "AOC 24E1W1 GNSKCHA086899";
|
||||||
mode = "1920x1080@60.000";
|
mode = "1920x1080@60.000";
|
||||||
position = "0,0";
|
transform = "180";
|
||||||
status = "enable";
|
};}
|
||||||
scale = 1.0;
|
{output = baseOutput//{
|
||||||
adaptiveSync = true;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
criteria = "AOC 24E1W1 GNSKBHA080346";
|
criteria = "AOC 24E1W1 GNSKBHA080346";
|
||||||
mode = "1920x1080@60.000";
|
mode = "1920x1080@60.000";
|
||||||
position = "1920,0";
|
};}
|
||||||
status = "enable";
|
{output = baseOutput//{
|
||||||
scale = 1.0;
|
criteria = "Lenovo Group Limited *";
|
||||||
adaptiveSync = true;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
profile.name = "tower_1";
|
|
||||||
profile.exec = [ "${restartEwwBar 1}" ];
|
|
||||||
profile.outputs = [
|
|
||||||
{
|
|
||||||
criteria = "AOC 24E1W1 GNSKCHA086899";
|
|
||||||
mode = "1920x1080@60.000";
|
|
||||||
position = "0,0";
|
|
||||||
status = "enable";
|
|
||||||
scale = 1.0;
|
|
||||||
adaptiveSync = true;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
criteria = "AOC 24E1W1 GNSKBHA080346";
|
|
||||||
mode = "1920x1080@60.000";
|
|
||||||
position = "0,0";
|
|
||||||
status = "enable";
|
|
||||||
scale = 1.0;
|
|
||||||
adaptiveSync = true;
|
|
||||||
}
|
|
||||||
{
|
|
||||||
criteria = "LG UNKNOWN_TBD";
|
|
||||||
mode = "1920x1080@144.000";
|
|
||||||
position = "0,0";
|
|
||||||
status = "enable";
|
|
||||||
scale = 1.0;
|
|
||||||
adaptiveSync = true;
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
profile.name = "laptop_0";
|
|
||||||
profile.exec = [ "${restartEwwBar 0}" ];
|
|
||||||
profile.outputs = [{
|
|
||||||
criteria = "LG Display 0x060A Unknown";
|
|
||||||
mode = "1920x1080@60.020";
|
mode = "1920x1080@60.020";
|
||||||
position = "0,0";
|
};}
|
||||||
scale = 1.0;
|
{output = baseOutput//{
|
||||||
status = "enable";
|
|
||||||
}];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
profile.name = "laptop_1";
|
|
||||||
profile.exec = [ "${restartEwwBar 1}" ];
|
|
||||||
profile.outputs = [
|
|
||||||
{
|
|
||||||
criteria = "CEX CX133 0x00000001";
|
|
||||||
mode = "2560x1600@59.972";
|
|
||||||
position = "0,0";
|
|
||||||
scale = 1.0;
|
|
||||||
status = "enable";
|
|
||||||
}
|
|
||||||
{
|
|
||||||
criteria = "LG Display 0x060A Unknown";
|
|
||||||
mode = "1920x1080@60.020";
|
|
||||||
position = "2560,0";
|
|
||||||
scale = 1.0;
|
|
||||||
status = "enable";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
|
||||||
{
|
|
||||||
profile.name = "laptop_2";
|
|
||||||
profile.exec = [ "${restartEwwBar 1}" ];
|
|
||||||
profile.outputs = [
|
|
||||||
{
|
|
||||||
criteria = "AOC 16G3 1DDP7HA000348";
|
criteria = "AOC 16G3 1DDP7HA000348";
|
||||||
mode = "1920x1080@144.000";
|
mode = "1920x1080@144.000";
|
||||||
|
};}
|
||||||
|
{profile = {
|
||||||
|
name = "tower_00";
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = aocT;
|
||||||
position = "0,0";
|
position = "0,0";
|
||||||
status = "enable";
|
|
||||||
scale = 1.0;
|
|
||||||
adaptiveSync = true;
|
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
criteria = "LG Display 0x060A Unknown";
|
criteria = aocB;
|
||||||
mode = "1920x1080@60.020";
|
position = "0,1080";
|
||||||
position = "1920,0";
|
}
|
||||||
scale = 1.0;
|
{
|
||||||
status = "enable";
|
criteria = lgM;
|
||||||
|
position = "1920,720";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
exec = [
|
||||||
|
(moveOrOpenBar 0)
|
||||||
|
"${pkgs.writeShellScript "kanshi-hyprland-init" ''
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval '
|
||||||
|
hl.workspace_rule({ workspace = "1", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "2", monitor = "desc:${aocT}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "3", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "4", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "5", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "6", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "7", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "8", monitor = "desc:${aocT}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "9", monitor = "desc:${aocB}", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "name:X", monitor = "desc:${lgM}", default = true })
|
||||||
|
'
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval 'hl.dispatch(hl.dsp.focus({ monitor = "desc:${aocT}" })); hl.dispatch(hl.dsp.focus({ workspace = "2" }));'
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval 'hl.dispatch(hl.dsp.focus({ monitor = "desc:${lgM}" })); hl.dispatch(hl.dsp.focus({ workspace = "name:X" }));'
|
||||||
|
#${pkgs.hyprland}/bin/hyprctl eval 'hl.monitor({ output = "desc:${lgM}", cm = "hdr" });'
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval 'hl.dispatch(hl.dsp.focus({ monitor = "desc:${aocB}" }));'
|
||||||
|
|
||||||
|
''}"
|
||||||
|
"${pkgs.awww}/bin/awww restore"
|
||||||
|
];
|
||||||
|
};}
|
||||||
|
{profile = {
|
||||||
|
name = "tower_01";
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "AOC 24E1W1 GNSKCHA086899";
|
||||||
|
transform = "180";
|
||||||
|
position = "0,0";
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
criteria = "AOC 24E1W1 GNSKBHA080346";
|
||||||
|
position = "0,1080";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
exec = [
|
||||||
|
|
||||||
|
"${pkgs.writeShellScript "kanshi-hyprland-init" ''
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval '
|
||||||
|
hl.workspace_rule({ workspace = "1", monitor = "DP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "2", monitor = "DP-2", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "3", monitor = "DP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "4", monitor = "DP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "5", monitor = "DP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "6", monitor = "DP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "7", monitor = "DP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "8", monitor = "DP-2", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "9", monitor = "DP-1", default = true })
|
||||||
|
'
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval 'hl.dispatch(hl.dsp.focus({ monitor = "DP-2" })); hl.dispatch(hl.dsp.focus({ workspace = "2" }));'
|
||||||
|
|
||||||
|
''}"
|
||||||
|
"${pkgs.awww}/bin/awww restore"
|
||||||
|
(moveOrOpenBar 0)
|
||||||
|
];
|
||||||
|
};}
|
||||||
|
{profile = {
|
||||||
|
name = "valinor00";
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "Lenovo Group Limited *";
|
||||||
|
position = "0,0";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
exec = [
|
||||||
|
"${pkgs.writeShellScript "kanshi-hyprland-init" ''
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval '
|
||||||
|
hl.workspace_rule({ workspace = "1", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "2", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "3", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "4", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "5", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "6", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "7", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "8", monitor = "eDP-1", default = true })
|
||||||
|
hl.workspace_rule({ workspace = "9", monitor = "eDP-1", default = true })
|
||||||
|
'
|
||||||
|
${pkgs.hyprland}/bin/hyprctl eval 'hl.dispatch(hl.dsp.focus({ monitor = "eDP-1" })); hl.dispatch(hl.dsp.focus({ workspace = "1" }));'
|
||||||
|
|
||||||
|
''}"
|
||||||
|
"${pkgs.awww}/bin/awww restore"
|
||||||
|
(moveOrOpenBar 0)
|
||||||
|
];
|
||||||
|
};}
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
+113
@@ -0,0 +1,113 @@
|
|||||||
|
{ lib, pkgs, config, ... }: {
|
||||||
|
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
||||||
|
programs.hyprlock = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
general = {
|
||||||
|
grace = 5; # grace=5
|
||||||
|
no_fade_in = false; # fade-in=0.2 (handled dynamically)
|
||||||
|
ignore_empty_input = true; # ignore-empty-password
|
||||||
|
};
|
||||||
|
|
||||||
|
background = [
|
||||||
|
# 1. OLED MONITOR (Pure Black)
|
||||||
|
{
|
||||||
|
monitor = "desc:LG Electronics LG ULTRAGEAR+ 511NTDVGC194";
|
||||||
|
color = "rgba(0,0,0,1.0)"; # Pure black OLED protection
|
||||||
|
path = ""; # Explicitly no screenshot
|
||||||
|
zindex = 0;
|
||||||
|
}
|
||||||
|
# 2. ALL OTHER MONITORS (Pixelated Screenshot)
|
||||||
|
{
|
||||||
|
monitor = "";
|
||||||
|
path = "screenshot"; # screenshots
|
||||||
|
blur_passes = 2; # effect-pixelate=5 approximation
|
||||||
|
blur_size = 4;
|
||||||
|
noise = 0.01;
|
||||||
|
zindex = -1;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
|
||||||
|
input-field = {
|
||||||
|
monitor = "";
|
||||||
|
placeholder_text = "";
|
||||||
|
fail_text = "";
|
||||||
|
|
||||||
|
size = "200, 200"; # Custom sizing matching indicator-radius
|
||||||
|
outline_thickness = 30; # indicator-thickness=30
|
||||||
|
|
||||||
|
dots_size = 0.33;
|
||||||
|
dots_spacing = 0.15;
|
||||||
|
dots_center = true;
|
||||||
|
fade_on_empty = true;
|
||||||
|
hide_input = true;
|
||||||
|
dots_text_format = "*";
|
||||||
|
font_family = "IBM Plex Mono"; # font=IBM Plex Mono
|
||||||
|
|
||||||
|
# --- Outer Rings / Outline Colors ---
|
||||||
|
# key-hl-color, bs-hl-color, caps-lock-key-hl-color
|
||||||
|
check_color = "rgb(${config.colorScheme.palette.base0C})"; # key-hl
|
||||||
|
fail_color = "rgb(${config.colorScheme.palette.base0F})"; # inside-wrong
|
||||||
|
capslock_color = "rgb(${config.colorScheme.palette.base09})"; # caps-lock-key-hl
|
||||||
|
|
||||||
|
# --- Inner/Outer Core Colors ---
|
||||||
|
# Replicating your transparent rings with solid action states
|
||||||
|
outer_color = "rgba(${config.colorScheme.palette.base00}00)"; # ring-color (Transparent)
|
||||||
|
inner_color = "rgba(${config.colorScheme.palette.base0C}00)"; # inside-color (Transparent)
|
||||||
|
font_color = "rgba(${config.colorScheme.palette.base00}00)"; # text-color (Transparent)
|
||||||
|
|
||||||
|
fail_transition = 300;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
xdg.configFile."swaylock/config".text = ''
|
||||||
|
screenshots
|
||||||
|
grace-no-mouse
|
||||||
|
grace-no-touch
|
||||||
|
grace=5
|
||||||
|
effect-pixelate=5
|
||||||
|
fade-in=0.2
|
||||||
|
|
||||||
|
ignore-empty-password
|
||||||
|
font=IBM Plex Mono
|
||||||
|
|
||||||
|
color=${config.colorScheme.palette.base00}00
|
||||||
|
|
||||||
|
indicator-radius=100
|
||||||
|
indicator-thickness=30
|
||||||
|
|
||||||
|
separator-color=${config.colorScheme.palette.base00}00
|
||||||
|
|
||||||
|
inside-color=${config.colorScheme.palette.base0C}00
|
||||||
|
inside-clear-color=${config.colorScheme.palette.base08}FF
|
||||||
|
inside-caps-lock-color=${config.colorScheme.palette.base09}00
|
||||||
|
inside-ver-color=${config.colorScheme.palette.base0C}FF
|
||||||
|
inside-wrong-color=${config.colorScheme.palette.base0F}FF
|
||||||
|
|
||||||
|
|
||||||
|
ring-color=${config.colorScheme.palette.base00}00
|
||||||
|
ring-clear-color=${config.colorScheme.palette.base00}00
|
||||||
|
ring-caps-lock-color=${config.colorScheme.palette.base00}00
|
||||||
|
ring-ver-color=${config.colorScheme.palette.base00}00
|
||||||
|
ring-wrong-color=${config.colorScheme.palette.base00}00
|
||||||
|
|
||||||
|
line-color=${config.colorScheme.palette.base00}00
|
||||||
|
line-clear-color=${config.colorScheme.palette.base00}00
|
||||||
|
line-caps-lock-color=${config.colorScheme.palette.base00}00
|
||||||
|
line-ver-color=${config.colorScheme.palette.base00}00
|
||||||
|
line-wrong-color=${config.colorScheme.palette.base00}00
|
||||||
|
|
||||||
|
text-color=${config.colorScheme.palette.base00}00
|
||||||
|
text-clear-color=${config.colorScheme.palette.base00}00
|
||||||
|
text-caps-lock-color=${config.colorScheme.palette.base00}00
|
||||||
|
text-ver-color=${config.colorScheme.palette.base00}00
|
||||||
|
text-wrong-color=${config.colorScheme.palette.base00}00
|
||||||
|
|
||||||
|
|
||||||
|
key-hl-color=${config.colorScheme.palette.base0C}FF
|
||||||
|
bs-hl-color=${config.colorScheme.palette.base08}FF
|
||||||
|
caps-lock-key-hl-color=${config.colorScheme.palette.base09}FF
|
||||||
|
caps-lock-bs-hl-color=${config.colorScheme.palette.base09}FF
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -19,8 +19,6 @@ let
|
|||||||
in {
|
in {
|
||||||
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
||||||
|
|
||||||
home.packages = [ pkgs.custom.amdgpu_top pkgs.jq ];
|
|
||||||
|
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.waybar;
|
package = pkgs.waybar;
|
||||||
@@ -203,8 +201,7 @@ in {
|
|||||||
"custom/gpu" = {
|
"custom/gpu" = {
|
||||||
"exec" = jsonOutput "gpu" {
|
"exec" = jsonOutput "gpu" {
|
||||||
tooltip = "...";
|
tooltip = "...";
|
||||||
percentage = ''
|
percentage = ''$(${lib.getExe pkgs.custom.amdgpu_top} -J -n 1 | ${pkgs.jq}/bin/jq -r '.devices[0].GRBM2."Command Processor - Graphics".value')'';
|
||||||
$(amdgpu_top -J -n 1 | jq -r '.devices[0].GRBM2."Command Processor - Graphics".value')'';
|
|
||||||
};
|
};
|
||||||
"return-type" = "json";
|
"return-type" = "json";
|
||||||
"interval" = 5;
|
"interval" = 5;
|
||||||
|
|||||||
@@ -1,56 +0,0 @@
|
|||||||
{ lib, pkgs, config, ... }: {
|
|
||||||
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
|
||||||
|
|
||||||
home.packages = with pkgs; [ swayidle swaylock-effects ];
|
|
||||||
|
|
||||||
xdg.configFile."swaylock/config".text = ''
|
|
||||||
screenshots
|
|
||||||
grace-no-mouse
|
|
||||||
grace-no-touch
|
|
||||||
grace=5
|
|
||||||
effect-pixelate=5
|
|
||||||
fade-in=0.2
|
|
||||||
|
|
||||||
ignore-empty-password
|
|
||||||
font=IBM Plex Mono
|
|
||||||
|
|
||||||
color=${config.colorScheme.palette.base00}00
|
|
||||||
|
|
||||||
indicator-radius=100
|
|
||||||
indicator-thickness=30
|
|
||||||
|
|
||||||
separator-color=${config.colorScheme.palette.base00}00
|
|
||||||
|
|
||||||
inside-color=${config.colorScheme.palette.base0C}00
|
|
||||||
inside-clear-color=${config.colorScheme.palette.base08}FF
|
|
||||||
inside-caps-lock-color=${config.colorScheme.palette.base09}00
|
|
||||||
inside-ver-color=${config.colorScheme.palette.base0C}FF
|
|
||||||
inside-wrong-color=${config.colorScheme.palette.base0F}FF
|
|
||||||
|
|
||||||
|
|
||||||
ring-color=${config.colorScheme.palette.base00}00
|
|
||||||
ring-clear-color=${config.colorScheme.palette.base00}00
|
|
||||||
ring-caps-lock-color=${config.colorScheme.palette.base00}00
|
|
||||||
ring-ver-color=${config.colorScheme.palette.base00}00
|
|
||||||
ring-wrong-color=${config.colorScheme.palette.base00}00
|
|
||||||
|
|
||||||
line-color=${config.colorScheme.palette.base00}00
|
|
||||||
line-clear-color=${config.colorScheme.palette.base00}00
|
|
||||||
line-caps-lock-color=${config.colorScheme.palette.base00}00
|
|
||||||
line-ver-color=${config.colorScheme.palette.base00}00
|
|
||||||
line-wrong-color=${config.colorScheme.palette.base00}00
|
|
||||||
|
|
||||||
text-color=${config.colorScheme.palette.base00}00
|
|
||||||
text-clear-color=${config.colorScheme.palette.base00}00
|
|
||||||
text-caps-lock-color=${config.colorScheme.palette.base00}00
|
|
||||||
text-ver-color=${config.colorScheme.palette.base00}00
|
|
||||||
text-wrong-color=${config.colorScheme.palette.base00}00
|
|
||||||
|
|
||||||
|
|
||||||
key-hl-color=${config.colorScheme.palette.base0C}FF
|
|
||||||
bs-hl-color=${config.colorScheme.palette.base08}FF
|
|
||||||
caps-lock-key-hl-color=${config.colorScheme.palette.base09}FF
|
|
||||||
caps-lock-bs-hl-color=${config.colorScheme.palette.base09}FF
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -1,7 +1,6 @@
|
|||||||
{ lib, config, pkgs, ... }: {
|
{ lib, config, pkgs, ... }: {
|
||||||
|
|
||||||
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
||||||
home.packages = with pkgs; [ wofi ];
|
|
||||||
xdg.configFile."wofi/config".text = ''
|
xdg.configFile."wofi/config".text = ''
|
||||||
width=280
|
width=280
|
||||||
lines=10
|
lines=10
|
||||||
|
|||||||
@@ -1,53 +1,49 @@
|
|||||||
{ lib, config, pkgs, ... }:
|
{ lib, config, pkgs, ... }:
|
||||||
let
|
let
|
||||||
dbus-hyprland-environment = pkgs.writeTextFile {
|
#Bookmark: javascript:(function(){window.location.href='mpv://'+encodeURIComponent(window.location.href);})();
|
||||||
name = "dbus-hyprland-environment";
|
mpvHandler = pkgs.writeShellScriptBin "mpv-handler" ''
|
||||||
destination = "/bin/dbus-hyprland-environment";
|
#!/bin/bash
|
||||||
executable = true;
|
exec 2>> /tmp/mpv-handler-debug.log
|
||||||
text = ''
|
set -x
|
||||||
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=hyprland
|
RAW_URL="$1"
|
||||||
systemctl --user stop pipewire wireplumber xdg-desktop-portal-hyprland xdg-desktop-portal-gtk
|
STRIPPED_URL="''${RAW_URL:6}"
|
||||||
systemctl --user start pipewire wireplumber xdg-desktop-portal-hyprland xdg-desktop-portal-gtk
|
URL=$(printf '%b' "''${STRIPPED_URL//%/\\x}")
|
||||||
|
exec ${config.programs.mpv.finalPackage}/bin/mpv "$URL"
|
||||||
'';
|
'';
|
||||||
};
|
in
|
||||||
in {
|
{
|
||||||
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
config = lib.mkIf (config.usercfg.wm == "Wayland") {
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
dbus-hyprland-environment
|
|
||||||
wayland
|
wayland
|
||||||
|
|
||||||
hyprpicker
|
|
||||||
|
|
||||||
hyprshot
|
|
||||||
slurp
|
slurp
|
||||||
satty
|
|
||||||
|
|
||||||
swappy
|
swappy
|
||||||
cliphist
|
|
||||||
wl-clipboard
|
|
||||||
|
|
||||||
wlr-randr
|
wlr-randr
|
||||||
wdisplays
|
wdisplays
|
||||||
kanshi
|
kanshi
|
||||||
|
|
||||||
glib
|
glib
|
||||||
|
|
||||||
brightnessctl
|
|
||||||
awww
|
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
xdg.desktopEntries."mpv-handler" = {
|
||||||
|
name = "MPV Scheme Handler";
|
||||||
|
exec = "${mpvHandler}/bin/mpv-handler %u";
|
||||||
|
terminal = false;
|
||||||
|
mimeType = [ "x-scheme-handler/mpv" ];
|
||||||
|
};
|
||||||
|
|
||||||
xdg.mimeApps = {
|
xdg.mimeApps = {
|
||||||
enable = true;
|
enable = true;
|
||||||
defaultApplications = {
|
defaultApplications = {
|
||||||
"x-scheme-handler/discord-409416265891971072" =
|
# --- System & Directories ---
|
||||||
[ "discord-409416265891971072.desktop" ];
|
"inode/directory" = [ "thunar.desktop" ];
|
||||||
"x-scheme-handler/discord-402572971681644545" =
|
"x-scheme-handler/file" = [ "thunar.desktop" ];
|
||||||
[ "discord-402572971681644545.desktop" ];
|
|
||||||
"x-scheme-handler/discord-696343075731144724" =
|
# --- Web & Browsing ---
|
||||||
[ "discord-696343075731144724.desktop" ];
|
"x-scheme-handler/unknown" = [ "firefox.desktop" ];
|
||||||
"x-scheme-handler/tg" = [ "org.telegram.desktop.desktop" ];
|
|
||||||
"x-scheme-handler/tonsite" = [ "org.telegram.desktop.desktop" ];
|
|
||||||
"x-scheme-handler/http" = [ "firefox.desktop" ];
|
"x-scheme-handler/http" = [ "firefox.desktop" ];
|
||||||
"x-scheme-handler/https" = [ "firefox.desktop" ];
|
"x-scheme-handler/https" = [ "firefox.desktop" ];
|
||||||
"x-scheme-handler/chrome" = [ "firefox.desktop" ];
|
"x-scheme-handler/chrome" = [ "firefox.desktop" ];
|
||||||
@@ -59,16 +55,77 @@ in {
|
|||||||
"application/x-extension-xhtml" = [ "firefox.desktop" ];
|
"application/x-extension-xhtml" = [ "firefox.desktop" ];
|
||||||
"application/x-extension-xht" = [ "firefox.desktop" ];
|
"application/x-extension-xht" = [ "firefox.desktop" ];
|
||||||
|
|
||||||
|
# --- Chat & Social Protocol Schemes ---
|
||||||
|
"x-scheme-handler/tg" = [ "org.telegram.desktop.desktop" ];
|
||||||
|
"x-scheme-handler/tonsite" = [ "org.telegram.desktop.desktop" ];
|
||||||
|
"x-scheme-handler/discord-409416265891971072" = [ "discord-409416265891971072.desktop" ];
|
||||||
|
"x-scheme-handler/discord-402572971681644545" = [ "discord-402572971681644545.desktop" ];
|
||||||
|
"x-scheme-handler/discord-696343075731144724" = [ "discord-696343075731144724.desktop" ];
|
||||||
|
|
||||||
|
# --- Documents & Source Code (VSCodium) ---
|
||||||
"application/pdf" = [ "org.pwmt.zathura-pdf-mupdf.desktop" ];
|
"application/pdf" = [ "org.pwmt.zathura-pdf-mupdf.desktop" ];
|
||||||
"text/plain" = [ "vscodium.desktop" ];
|
"text/plain" = [ "vscodium.desktop" ];
|
||||||
|
"text/markdown" = [ "vscodium.desktop" ];
|
||||||
|
"text/xml" = [ "vscodium.desktop" ];
|
||||||
|
"text/csv" = [ "vscodium.desktop" ];
|
||||||
|
"text/css" = [ "vscodium.desktop" ];
|
||||||
|
"application/xml" = [ "vscodium.desktop" ];
|
||||||
|
"application/json" = [ "vscodium.desktop" ];
|
||||||
|
"application/toml" = [ "vscodium.desktop" ];
|
||||||
|
"application/yaml" = [ "vscodium.desktop" ];
|
||||||
|
"application/javascript" = [ "vscodium.desktop" ];
|
||||||
|
"application/x-shellscript" = [ "vscodium.desktop" ];
|
||||||
|
|
||||||
|
# --- Video & Audio (MPV) ---
|
||||||
|
"x-scheme-handler/mpv" = [ "mpv-handler.desktop" ];
|
||||||
"video/mp4" = [ "mpv.desktop" ];
|
"video/mp4" = [ "mpv.desktop" ];
|
||||||
|
"video/mkv" = [ "mpv.desktop" ];
|
||||||
|
"video/webm" = [ "mpv.desktop" ];
|
||||||
|
"video/x-matroska" = [ "mpv.desktop" ];
|
||||||
|
"video/quicktime" = [ "mpv.desktop" ];
|
||||||
|
"video/x-msvideo" = [ "mpv.desktop" ];
|
||||||
|
"video/x-flv" = [ "mpv.desktop" ];
|
||||||
|
"video/3gpp" = [ "mpv.desktop" ];
|
||||||
|
"audio/mp3" = [ "mpv.desktop" ];
|
||||||
|
"audio/mpeg" = [ "mpv.desktop" ];
|
||||||
|
"audio/ogg" = [ "mpv.desktop" ];
|
||||||
|
"audio/wav" = [ "mpv.desktop" ];
|
||||||
|
"audio/x-wav" = [ "mpv.desktop" ];
|
||||||
|
"audio/flac" = [ "mpv.desktop" ];
|
||||||
|
"audio/x-flac" = [ "mpv.desktop" ];
|
||||||
|
"audio/mp4" = [ "mpv.desktop" ];
|
||||||
|
"audio/aac" = [ "mpv.desktop" ];
|
||||||
|
"audio/x-matroska-audio" = [ "mpv.desktop" ];
|
||||||
|
"audio/x-mpegurl" = [ "mpv.desktop" ];
|
||||||
|
"audio/mpegurl" = [ "mpv.desktop" ];
|
||||||
|
|
||||||
|
# --- Images (IMV) ---
|
||||||
"image/png" = [ "imv-dir.desktop" ];
|
"image/png" = [ "imv-dir.desktop" ];
|
||||||
"image/jpg" = [ "imv-dir.desktop" ];
|
"image/jpg" = [ "imv-dir.desktop" ];
|
||||||
|
"image/jpeg" = [ "imv-dir.desktop" ];
|
||||||
|
"image/webp" = [ "imv-dir.desktop" ];
|
||||||
|
"image/gif" = [ "imv-dir.desktop" ];
|
||||||
|
"image/svg+xml" = [ "imv-dir.desktop" ];
|
||||||
|
"image/x-canon-cr2" = [ "imv-dir.desktop" ];
|
||||||
|
"image/bmp" = [ "imv-dir.desktop" ];
|
||||||
|
"image/tiff" = [ "imv-dir.desktop" ];
|
||||||
|
"image/heic" = [ "imv-dir.desktop" ];
|
||||||
|
"image/avif" = [ "imv-dir.desktop" ];
|
||||||
|
|
||||||
|
# --- Archives (Engrampa) ---
|
||||||
|
"application/zip" = [ "engrampa.desktop" ];
|
||||||
|
"application/x-tar" = [ "engrampa.desktop" ];
|
||||||
|
"application/x-gzip" = [ "engrampa.desktop" ];
|
||||||
|
"application/x-bzip2" = [ "engrampa.desktop" ];
|
||||||
|
"application/x-7z-compressed" = [ "engrampa.desktop" ];
|
||||||
|
"application/x-rar" = [ "engrampa.desktop" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
associations = {
|
associations = {
|
||||||
removed = { "application/pdf" = [ "krita_pdf.desktop" ]; };
|
removed = {
|
||||||
|
"application/pdf" = [ "krita_pdf.desktop" ];
|
||||||
|
"application/zip" = [ "org.prismlauncher.PrismLauncher.desktop" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -24,13 +24,13 @@
|
|||||||
|
|
||||||
|
|
||||||
startupScript = pkgs.writeShellScriptBin "hyprland-start" ''
|
startupScript = pkgs.writeShellScriptBin "hyprland-start" ''
|
||||||
eww-open-on-current-screen bar &
|
${pkgs.eww}/bin/eww open bar &
|
||||||
awww-daemon &
|
${pkgs.awww}/bin/awww-daemon &
|
||||||
|
${pkgs.awww}/bin/awww restore &
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
keepassxc &
|
keepassxc &
|
||||||
firefox &
|
firefox &
|
||||||
jellyfin-mpv-shim &
|
|
||||||
easyeffects --gapplication-service &
|
easyeffects --gapplication-service &
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
@@ -52,9 +52,9 @@ in {
|
|||||||
function()
|
function()
|
||||||
hl.exec_cmd("dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP")
|
hl.exec_cmd("dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP")
|
||||||
hl.exec_cmd("${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1")
|
hl.exec_cmd("${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1")
|
||||||
hl.exec_cmd("wl-paste --type text --watch cliphist store")
|
hl.exec_cmd("${pkgs.wl-clipboard}/bin/wl-paste --type text --watch ${lib.getExe pkgs.cliphist} store")
|
||||||
hl.exec_cmd("wl-paste --type image --watch cliphist store")
|
hl.exec_cmd("${pkgs.wl-clipboard}/bin/wl-paste --type image --watch ${lib.getExe pkgs.cliphist} store")
|
||||||
hl.exec_cmd("swayidle -w timeout 600 'swaylock' before-sleep 'swaylock'")
|
hl.exec_cmd("${lib.getExe pkgs.swayidle} -w timeout 600 '${pkgs.hyprlock}/bin/hyprlock' before-sleep '${pkgs.hyprlock}/bin/hyprlock'")
|
||||||
hl.exec_cmd("${lib.getExe startupScript}")
|
hl.exec_cmd("${lib.getExe startupScript}")
|
||||||
hl.exec_cmd("[workspace special:magic silent] kitty --title flying_kitty")
|
hl.exec_cmd("[workspace special:magic silent] kitty --title flying_kitty")
|
||||||
end'')
|
end'')
|
||||||
@@ -67,8 +67,12 @@ in {
|
|||||||
position = "auto";
|
position = "auto";
|
||||||
scale = "auto";
|
scale = "auto";
|
||||||
bitdepth = 10;
|
bitdepth = 10;
|
||||||
|
cm = "dcip3"; #auto"; #hdr";#
|
||||||
|
sdrbrightness = 0.85;
|
||||||
|
sdrsaturation = 1.0;
|
||||||
|
sdr_max_luminance = 600;
|
||||||
|
sdr_min_luminance = 0.0005;
|
||||||
}];
|
}];
|
||||||
#Fullscreen HDR is possible without the hdr cm setting if "render:cm_auto_hdr" is enabled.
|
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
input = {
|
input = {
|
||||||
@@ -85,13 +89,27 @@ in {
|
|||||||
tap_to_click = false;
|
tap_to_click = false;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
render = {
|
||||||
|
cm_enabled = true;
|
||||||
|
cm_auto_hdr = 1;
|
||||||
|
};
|
||||||
|
quirks = {
|
||||||
|
prefer_hdr = 1;
|
||||||
|
};
|
||||||
misc = {
|
misc = {
|
||||||
force_default_wallpaper = -1;
|
force_default_wallpaper = 0;
|
||||||
disable_hyprland_logo = true;
|
disable_hyprland_logo = true;
|
||||||
|
disable_splash_rendering = true;
|
||||||
animate_mouse_windowdragging = false;
|
animate_mouse_windowdragging = false;
|
||||||
animate_manual_resizes = false;
|
animate_manual_resizes = false;
|
||||||
vrr = 1;
|
vrr = 0; #vrr=2;
|
||||||
|
};
|
||||||
|
debug = {
|
||||||
|
vfr = false;
|
||||||
|
};
|
||||||
|
ecosystem = {
|
||||||
|
no_update_news = true;
|
||||||
|
no_donation_nag = true;
|
||||||
};
|
};
|
||||||
general = {
|
general = {
|
||||||
gaps_in = config.colorScheme.palette.gaps-window;
|
gaps_in = config.colorScheme.palette.gaps-window;
|
||||||
@@ -237,41 +255,10 @@ in {
|
|||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# windowrule = [ "noshadow, floating:0" ];
|
|
||||||
|
|
||||||
# windowrulev2 = [
|
|
||||||
# "workspace 2 silent, class:^(org.telegram.desktop)$"
|
|
||||||
# "workspace 2 silent, class:^(discord)$"
|
|
||||||
# "workspace 8 silent, class:^(org.keepassxc.KeePassXC)$"
|
|
||||||
# "workspace 8 silent, title:^(Nextcloud)$"
|
|
||||||
# "workspace 8 silent, class:^(Tk)$,title:^(Server Configuration)$"
|
|
||||||
# "float,class:^(org.keepassxc.KeePassXC)$,title:^(KeePassXC - Access Request)$"
|
|
||||||
# "pin,class:^(org.keepassxc.KeePassXC)$,title:^(KeePassXC - Access Request)$"
|
|
||||||
# "float,class:^(org.keepassxc.KeePassXC)$,title:^(Unlock Database - KeePassXC)$"
|
|
||||||
# "pin,class:^(org.keepassxc.KeePassXC)$,title:^(Unlock Database - KeePassXC)$"
|
|
||||||
# "float,title:^(Open)$"
|
|
||||||
# "float,title:^(Choose Files)$"
|
|
||||||
# "float,title:^(Save As)$"
|
|
||||||
# "float,title:^(Confirm to replace files)$"
|
|
||||||
# "float,title:^(File Operation Progress)$"
|
|
||||||
# "float,class:^(firefox)$,title:^(Picture-in-Picture)$"
|
|
||||||
# "pin,class:^(firefox)$,title:^(Picture-in-Picture)$"
|
|
||||||
# "suppressevent fullscreen,class:^(firefox)$,title:^(Picture-in-Picture)$"
|
|
||||||
# "float,class:^(firefox)$,title:^(Firefox — Sharing Indicator)$"
|
|
||||||
# "suppressevent fullscreen,class:^(firefox)$,title:^(Firefox — Sharing Indicator)$"
|
|
||||||
# "float,class:^(firefox)$,title:^(Extension:.* Mozilla Firefox)$"
|
|
||||||
# "suppressevent fullscreen,class:^(firefox)$,title:^(Extension:.* Mozilla Firefox)$"
|
|
||||||
# "float,class:^(org.telegram.desktop)$,title:^(Media viewer)$"
|
|
||||||
# "center,class:^(org.telegram.desktop)$,title:^(Media viewer)$"
|
|
||||||
# "idleinhibit fullscreen, class:^(.*)"
|
|
||||||
# "idleinhibit focus, class:^(steam_app_.*)$"
|
|
||||||
# "idleinhibit focus, class:^(mpv)$"
|
|
||||||
# ];
|
|
||||||
|
|
||||||
layer_rule = [ {
|
layer_rule = [ {
|
||||||
match.namespace = "^eww%-blur$";
|
match.namespace = "^eww%-blur$";
|
||||||
blur = true;
|
blur = true;
|
||||||
ignore_alpha = 0.5;
|
ignore_alpha = 0.0;
|
||||||
}];
|
}];
|
||||||
|
|
||||||
bind = [
|
bind = [
|
||||||
@@ -283,11 +270,11 @@ in {
|
|||||||
(bind "SUPER + F" dsp.fullscreen)
|
(bind "SUPER + F" dsp.fullscreen)
|
||||||
(bind "SUPER + P" dsp.pseudo)
|
(bind "SUPER + P" dsp.pseudo)
|
||||||
(bind "SUPER + J" (dsp.layout "togglesplit"))
|
(bind "SUPER + J" (dsp.layout "togglesplit"))
|
||||||
(bind "SUPER + D" (dsp.exec "wofi -modi --show drun"))
|
(bind "SUPER + D" (dsp.exec "${lib.getExe pkgs.wofi} -modi --show drun"))
|
||||||
(bind "SUPER + SHIFT + D" (dsp.exec "~/.config/hypr/themes/apatheia/eww/launch_bar"))
|
(bind "SUPER + SHIFT + D" (dsp.exec "~/.config/hypr/themes/apatheia/eww/launch_bar"))
|
||||||
(bind "SUPER + V" (dsp.exec "cliphist list | wofi -dmenu | cliphist decode | wl-copy"))
|
(bind "SUPER + V" (dsp.exec "${lib.getExe pkgs.cliphist} list | ${lib.getExe pkgs.wofi} -dmenu | ${lib.getExe pkgs.cliphist} decode | ${pkgs.wl-clipboard}/bin/wl-copy"))
|
||||||
(bind "PRINT" (dsp.exec "hyprshot -m region --raw | satty --filename - --early-exit --action-on-enter save-to-clipboard --copy-command 'wl-copy'"))
|
(bind "PRINT" (dsp.exec "${lib.getExe pkgs.hyprshot} -m region --raw | ${lib.getExe pkgs.satty} --filename - --early-exit --action-on-enter save-to-clipboard --copy-command '${pkgs.wl-clipboard}/bin/wl-copy'"))
|
||||||
(bind "SUPER + L" (dsp.exec "swaylock"))
|
(bind "SUPER + L" (dsp.exec "${pkgs.hyprlock}/bin/hyprlock"))
|
||||||
(bind "SUPER + left" (dsp.focus "left"))
|
(bind "SUPER + left" (dsp.focus "left"))
|
||||||
(bind "SUPER + right" (dsp.focus "right"))
|
(bind "SUPER + right" (dsp.focus "right"))
|
||||||
(bind "SUPER + up" (dsp.focus "up"))
|
(bind "SUPER + up" (dsp.focus "up"))
|
||||||
@@ -313,16 +300,14 @@ in {
|
|||||||
(bind "SUPER + SHIFT + 8" (dsp.moveToWorkspace 8))
|
(bind "SUPER + SHIFT + 8" (dsp.moveToWorkspace 8))
|
||||||
(bind "SUPER + 9" (dsp.focusWorkspace 9))
|
(bind "SUPER + 9" (dsp.focusWorkspace 9))
|
||||||
(bind "SUPER + SHIFT + 9" (dsp.moveToWorkspace 9))
|
(bind "SUPER + SHIFT + 9" (dsp.moveToWorkspace 9))
|
||||||
(bind "SUPER + 0" (dsp.focusWorkspace 0))
|
(bind "XF86AudioPlay" (dsp.exec "${lib.getExe pkgs.playerctl} play-pause"))
|
||||||
(bind "SUPER + SHIFT + 0" (dsp.moveToWorkspace 0))
|
(bind "XF86AudioPrev" (dsp.exec "${lib.getExe pkgs.playerctl} previous"))
|
||||||
(bind "XF86AudioPlay" (dsp.exec "playerctl play-pause"))
|
(bind "XF86AudioNext" (dsp.exec "${lib.getExe pkgs.playerctl} next"))
|
||||||
(bind "XF86AudioPrev" (dsp.exec "playerctl previous"))
|
|
||||||
(bind "XF86AudioNext" (dsp.exec "playerctl next"))
|
|
||||||
(bindOpts "XF86AudioRaiseVolume" (dsp.exec "amixer -q sset 'Master' 5%+") { locked = true; repeating = true; })
|
(bindOpts "XF86AudioRaiseVolume" (dsp.exec "amixer -q sset 'Master' 5%+") { locked = true; repeating = true; })
|
||||||
(bindOpts "XF86AudioLowerVolume" (dsp.exec "amixer -q sset 'Master' 5%-") { locked = true; repeating = true; })
|
(bindOpts "XF86AudioLowerVolume" (dsp.exec "amixer -q sset 'Master' 5%-") { locked = true; repeating = true; })
|
||||||
(bindOpts "XF86AudioMute" (dsp.exec "amixer -q sset 'Master' toggle") { locked = true; })
|
(bindOpts "XF86AudioMute" (dsp.exec "amixer -q sset 'Master' toggle") { locked = true; })
|
||||||
(bindOpts "XF86MonBrightnessUp" (dsp.exec "brightnessctl s 5%+") { locked = true; repeating = true; })
|
(bindOpts "XF86MonBrightnessUp" (dsp.exec "${lib.getExe pkgs.brightnessctl} s 5%+") { locked = true; repeating = true; })
|
||||||
(bindOpts "XF86MonBrightnessDown" (dsp.exec "brightnessctl s 5%-") { locked = true; repeating = true; })
|
(bindOpts "XF86MonBrightnessDown" (dsp.exec "${lib.getExe pkgs.brightnessctl} s 5%-") { locked = true; repeating = true; })
|
||||||
(bindOpts "SUPER + mouse:272" dsp.drag { mouse = true; })
|
(bindOpts "SUPER + mouse:272" dsp.drag { mouse = true; })
|
||||||
(bindOpts "SUPER + mouse:273" dsp.resize { mouse = true; })
|
(bindOpts "SUPER + mouse:273" dsp.resize { mouse = true; })
|
||||||
];
|
];
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
{ config, pkgs, ... }: {
|
{ config, pkgs, ... }: {
|
||||||
|
|
||||||
home.packages = with pkgs; [ xdg-user-dirs ];
|
xdg.enable = true;
|
||||||
|
|
||||||
xdg.userDirs.enable = true;
|
xdg.userDirs.enable = true;
|
||||||
xdg.userDirs.desktop = "${config.home.homeDirectory}/desktop";
|
xdg.userDirs.desktop = "${config.home.homeDirectory}/desktop";
|
||||||
xdg.userDirs.documents = "${config.home.homeDirectory}/desktop";
|
xdg.userDirs.documents = "${config.home.homeDirectory}/desktop";
|
||||||
|
|||||||
@@ -109,7 +109,6 @@
|
|||||||
|
|
||||||
telegram-desktop &
|
telegram-desktop &
|
||||||
nextcloud &
|
nextcloud &
|
||||||
jellyfin-mpv-shim &
|
|
||||||
#flameshot &
|
#flameshot &
|
||||||
|
|
||||||
sleep 2
|
sleep 2
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{ ... }: {
|
{ config, lib, ... }: {
|
||||||
imports = [ ./dbus ./fonts ./hw ./locale ./network ./nix ./security ./xdg ];
|
imports = [ ./dbus ./docs ./fonts ./hw ./locale ./network ./nix ./security ./xdg ];
|
||||||
|
|
||||||
services.journald.extraConfig = ''
|
services.journald.extraConfig = ''
|
||||||
SystemMaxUse=512M
|
SystemMaxUse=512M
|
||||||
@@ -8,4 +8,16 @@
|
|||||||
RateLimitIntervalSec=30s
|
RateLimitIntervalSec=30s
|
||||||
RateLimitBurst=10000
|
RateLimitBurst=10000
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
systemd.services.systemd-user-sessions = {
|
||||||
|
after = lib.mkForce ([
|
||||||
|
"system.slice"
|
||||||
|
"systemd-journald.socket"
|
||||||
|
"sysinit.target"
|
||||||
|
"remote-fs.target"
|
||||||
|
"nss-user-lookup.target"
|
||||||
|
"home.mount"
|
||||||
|
"basic.target"
|
||||||
|
] ++ map (user: "home-manager-${user.username}.service") config.syscfg.users);
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,14 @@
|
|||||||
|
{ config, lib, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.syscfg.make;
|
||||||
|
withDocs = cfg.gui || cfg.develop || cfg.serverExtras;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
documentation = lib.mkIf (!withDocs) {
|
||||||
|
enable = false;
|
||||||
|
man.enable = false;
|
||||||
|
info.enable = false;
|
||||||
|
doc.enable = false;
|
||||||
|
nixos.enable = false;
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
{ pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
|
|
||||||
fonts = {
|
fonts = lib.mkIf (config.syscfg.make.gui || config.syscfg.make.serverExtras) {
|
||||||
enableDefaultPackages = false;
|
enableDefaultPackages = false;
|
||||||
fontDir.enable = true;
|
fontDir.enable = true;
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{ ... }: {
|
{ config, lib, ... }: {
|
||||||
services.fwupd.enable = true;
|
services.fwupd.enable = lib.mkDefault (config.syscfg.make.gui || config.syscfg.make.power);
|
||||||
hardware.enableAllFirmware = true;
|
hardware.enableAllFirmware = false;
|
||||||
|
services.power-profiles-daemon.enable = lib.mkDefault config.syscfg.make.gui;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,19 @@
|
|||||||
let isSANDBOX = builtins.elem config.syscfg.hostname [ "sandbox" ];
|
let isSANDBOX = builtins.elem config.syscfg.hostname [ "sandbox" ];
|
||||||
in {
|
in {
|
||||||
config = lib.mkIf (!isSANDBOX) {
|
config = lib.mkIf (!isSANDBOX) {
|
||||||
|
boot.kernelParams = [
|
||||||
|
"amdgpu.gpu_recovery=1"
|
||||||
|
"amdgpu.psr=0"
|
||||||
|
"amdgpu.dcfeaturemask=0x2"
|
||||||
|
"async_probe=tpm*" # Load TPM in parallel without blocking udev
|
||||||
|
"8250.nr_uarts=0" # Stop scanning for old motherboard serial lines (ttyS0-S3)
|
||||||
|
];
|
||||||
|
boot.initrd = {
|
||||||
|
compressor = "zstd";
|
||||||
|
checkJournalingFS = false;
|
||||||
|
};
|
||||||
boot.loader = {
|
boot.loader = {
|
||||||
|
timeout = 2;
|
||||||
systemd-boot = {
|
systemd-boot = {
|
||||||
enable = true;
|
enable = true;
|
||||||
configurationLimit = 8;
|
configurationLimit = 8;
|
||||||
|
|||||||
@@ -1,6 +1,9 @@
|
|||||||
{ pkgs, ... }: {
|
{ config, lib, pkgs, ... }:
|
||||||
|
let
|
||||||
|
hasNfsFileSystems = lib.any (fs: fs.fsType == "nfs" || fs.fsType == "nfs4") (lib.attrValues config.fileSystems);
|
||||||
|
in {
|
||||||
services.fstrim.enable = true; # Improves SSD life
|
services.fstrim.enable = true; # Improves SSD life
|
||||||
services.gvfs.enable = true; # User Mounted FS
|
services.gvfs.enable = config.syscfg.make.gui; # User Mounted FS
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ nfs-utils ];
|
environment.systemPackages = lib.optionals hasNfsFileSystems [ pkgs.nfs-utils ];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
{ ... }: {
|
{ config, ... }: {
|
||||||
hardware.graphics.enable = true;
|
hardware.graphics.enable = config.syscfg.make.gui || config.syscfg.make.serverExtras || config.syscfg.make.game;
|
||||||
hardware.graphics.enable32Bit = true;
|
hardware.graphics.enable32Bit = config.syscfg.make.game;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
{ lib, config, pkgs, ... }: {
|
{ lib, config, pkgs, ... }: {
|
||||||
config = lib.mkIf (config.syscfg.make.power) {
|
config = lib.mkIf (config.syscfg.make.power) {
|
||||||
|
services.power-profiles-daemon.enable = false; # conflicts with TLP
|
||||||
services.tlp = {
|
services.tlp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|||||||
@@ -3,6 +3,9 @@
|
|||||||
hostName = config.syscfg.hostname;
|
hostName = config.syscfg.hostname;
|
||||||
useDHCP = true;
|
useDHCP = true;
|
||||||
nameservers = [ "1.1.1.1" "9.9.9.9" ];
|
nameservers = [ "1.1.1.1" "9.9.9.9" ];
|
||||||
|
dhcpcd = {
|
||||||
|
wait = "background";
|
||||||
|
};
|
||||||
|
|
||||||
extraHosts = ''
|
extraHosts = ''
|
||||||
${lib.concatStringsSep "\n" config.syscfg.extra.hosts}
|
${lib.concatStringsSep "\n" config.syscfg.extra.hosts}
|
||||||
|
|||||||
@@ -27,6 +27,7 @@ in
|
|||||||
else
|
else
|
||||||
[{
|
[{
|
||||||
allowedIPs = [ "10.10.1.0/24" "fd10:10:10::0/64" ];
|
allowedIPs = [ "10.10.1.0/24" "fd10:10:10::0/64" ];
|
||||||
|
name = "vpn-helcel";
|
||||||
endpoint = "vpn.helcel.net:1515";
|
endpoint = "vpn.helcel.net:1515";
|
||||||
publicKey = "NFBJvYXZC+bd62jhrKnM7/pugidWhgR6+C5qIiUiq3Q=";
|
publicKey = "NFBJvYXZC+bd62jhrKnM7/pugidWhgR6+C5qIiUiq3Q=";
|
||||||
persistentKeepalive = 30;
|
persistentKeepalive = 30;
|
||||||
@@ -34,9 +35,17 @@ in
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
systemd.services."wireguard-wg0" = {
|
|
||||||
|
systemd.services."wireguard-wg0-peer-vpn-helcel" = {
|
||||||
after = [ "network-online.target" "nss-lookup.target" ];
|
after = [ "network-online.target" "nss-lookup.target" ];
|
||||||
wants = [ "network-online.target" "nss-lookup.target" ];
|
bindsTo = [ "network-online.target" ];
|
||||||
|
wantedBy = lib.mkForce [ "network-online.target" ];
|
||||||
|
before = lib.mkForce [ ];
|
||||||
|
serviceConfig = {
|
||||||
|
Restart = "on-failure";
|
||||||
|
RestartSec = "10s"; # Wait 2 seconds before retrying the domain query
|
||||||
|
};
|
||||||
|
startLimitIntervalSec = 0;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,14 +1,10 @@
|
|||||||
{ inputs, pkgs, ... }: {
|
{ config, inputs, lib, pkgs, ... }: {
|
||||||
nixpkgs.config = {
|
nixpkgs.config = {
|
||||||
permittedInsecurePackages = [ ];
|
permittedInsecurePackages = [ ];
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
android_sdk.accept_license = true;
|
android_sdk.accept_license = true;
|
||||||
packageOverrides = pkgs: rec {
|
|
||||||
custom = import ../../../../packages { inherit pkgs; };
|
|
||||||
};
|
};
|
||||||
|
nixpkgs.overlays = import ../../../../overlays { inherit inputs; };
|
||||||
};
|
|
||||||
nixpkgs.overlays = import ../../../../overlays { inherit inputs pkgs; };
|
|
||||||
nix = {
|
nix = {
|
||||||
package = pkgs.nixVersions.stable;
|
package = pkgs.nixVersions.stable;
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
@@ -37,7 +33,9 @@
|
|||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
programs.nix-ld = {
|
programs.nix-ld = lib.mkIf (
|
||||||
|
config.syscfg.make.gui || config.syscfg.make.develop || config.syscfg.make.serverExtras
|
||||||
|
) {
|
||||||
enable = true;
|
enable = true;
|
||||||
libraries = with pkgs; [
|
libraries = with pkgs; [
|
||||||
libx11 libxcb libxi libxext libxkbfile xcbutilcursor
|
libx11 libxcb libxi libxext libxkbfile xcbutilcursor
|
||||||
|
|||||||
@@ -1,10 +1,12 @@
|
|||||||
{ pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
|
config = lib.mkIf config.syscfg.make.gui {
|
||||||
security.polkit.enable = true;
|
security.polkit.enable = true;
|
||||||
security.pam.services.swaylock = {
|
security.pam.services.hyprlock = { #swaylock
|
||||||
text = ''
|
text = ''
|
||||||
auth include login
|
auth include login
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ polkit_gnome ];
|
environment.systemPackages = [ pkgs.polkit_gnome ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
config = lib.mkIf (config.syscfg.make.develop) {
|
config = lib.mkIf (config.syscfg.make.develop) {
|
||||||
|
|
||||||
programs.wireshark.enable = true;
|
programs.wireshark.enable = true;
|
||||||
|
programs.dconf.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [ wget dconf wireshark mtr android-tools ];
|
environment.systemPackages = with pkgs; [ wget dconf wireshark mtr android-tools ];
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
{ pkgs, ... }: {
|
{ config, lib, pkgs, ... }: {
|
||||||
imports = [ ./debug ./develop ./telegraf ];
|
imports = [ ./debug ./develop ./telegraf ];
|
||||||
|
|
||||||
|
environment.systemPackages = lib.optionals config.syscfg.make.gui [ pkgs.engrampa ];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -305,12 +305,14 @@ let
|
|||||||
build_datetime="''${current#*|}"
|
build_datetime="''${current#*|}"
|
||||||
build_timestamp="$(${lib.getExe' pkgs.coreutils "date"} -d "$build_datetime" +%s)"
|
build_timestamp="$(${lib.getExe' pkgs.coreutils "date"} -d "$build_datetime" +%s)"
|
||||||
now="$(${lib.getExe' pkgs.coreutils "date"} +%s)"
|
now="$(${lib.getExe' pkgs.coreutils "date"} +%s)"
|
||||||
store_bytes="$(${lib.getExe' pkgs.coreutils "du"} -sb /nix/store | ${lib.getExe pkgs.gawk} '{print $1}')"
|
store_bytes="$(${lib.getExe pkgs.nix} path-info --json --json-format 1 --all --offline --no-pretty | ${lib.getExe pkgs.jq} -r 'map(.narSize // 0) | add // 0')"
|
||||||
|
current_system_bytes="$(${lib.getExe pkgs.nix} path-info --json --json-format 1 --closure-size /run/current-system --offline --no-pretty | ${lib.getExe pkgs.jq} -r 'to_entries[0].value.closureSize // 0')"
|
||||||
|
|
||||||
printf 'nix generation=%si,configured_packages=%si,store_bytes=%si,build_timestamp=%si,seconds_since_build=%si,build_datetime="%s"\n' \
|
printf 'nix generation=%si,configured_packages=%si,store_bytes=%si,current_system_bytes=%si,build_timestamp=%si,seconds_since_build=%si,build_datetime="%s"\n' \
|
||||||
"$generation" \
|
"$generation" \
|
||||||
${toString (builtins.length config.environment.systemPackages)} \
|
${toString (builtins.length config.environment.systemPackages)} \
|
||||||
"$store_bytes" \
|
"$store_bytes" \
|
||||||
|
"$current_system_bytes" \
|
||||||
"$build_timestamp" \
|
"$build_timestamp" \
|
||||||
"$((now - build_timestamp))" \
|
"$((now - build_timestamp))" \
|
||||||
"$build_datetime"
|
"$build_datetime"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ in {
|
|||||||
|
|
||||||
runtime = {
|
runtime = {
|
||||||
paths = [{
|
paths = [{
|
||||||
path="${serverCfg.path.config}/example/";
|
path="${serverCfg.path.config.path}/example/";
|
||||||
mode = "0444";
|
mode = "0444";
|
||||||
}];
|
}];
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ in {
|
|||||||
|
|
||||||
runtime = {
|
runtime = {
|
||||||
paths = [{
|
paths = [{
|
||||||
path="${serverCfg.path.config}/authentik";
|
path="${serverCfg.path.config.path}/authentik";
|
||||||
owner = "1000:1000";
|
owner = "1000:1000";
|
||||||
dirs = ["media" "templates"];
|
dirs = ["media" "templates"];
|
||||||
mode = "0755";
|
mode = "0755";
|
||||||
@@ -48,6 +48,11 @@ in {
|
|||||||
port = 9000;
|
port = 9000;
|
||||||
secret = name;
|
secret = name;
|
||||||
extraEnv = {
|
extraEnv = {
|
||||||
|
AUTHENTIK_DISABLE_STARTUP_ANALYTICS="true";
|
||||||
|
AUTHENTIK_ERROR_REPORTING__ENABLED="false";
|
||||||
|
AUTHENTIK_WEB__WORKERS="1";
|
||||||
|
AUTHENTIK_WORKER__PROCESSES="1";
|
||||||
|
AUTHENTIK_WORKER__THREADS="2";
|
||||||
AUTHENTIK_REDIS__HOST = builder.host;
|
AUTHENTIK_REDIS__HOST = builder.host;
|
||||||
AUTHENTIK_POSTGRESQL__HOST = builder.host;
|
AUTHENTIK_POSTGRESQL__HOST = builder.host;
|
||||||
AUTHENTIK_POSTGRESQL__USER = "authentik_user";
|
AUTHENTIK_POSTGRESQL__USER = "authentik_user";
|
||||||
@@ -69,8 +74,8 @@ in {
|
|||||||
|
|
||||||
cmd = [ "server" ];
|
cmd = [ "server" ];
|
||||||
volumes = [
|
volumes = [
|
||||||
"${serverCfg.path.config}/authentik/media:/media"
|
"${serverCfg.path.config.path}/authentik/media:/media"
|
||||||
"${serverCfg.path.config}/authentik/templates:/templates"
|
"${serverCfg.path.config.path}/authentik/templates:/templates"
|
||||||
"${authentikData}:/blueprints/custom:ro"
|
"${authentikData}:/blueprints/custom:ro"
|
||||||
"${mediaCfg.logo.svg}:${logoSvgMount}:ro"
|
"${mediaCfg.logo.svg}:${logoSvgMount}:ro"
|
||||||
"${mediaCfg.logo.ico}:${logoIcoMount}:ro"
|
"${mediaCfg.logo.ico}:${logoIcoMount}:ro"
|
||||||
@@ -83,6 +88,11 @@ in {
|
|||||||
image = "ghcr.io/goauthentik/server:${version}";
|
image = "ghcr.io/goauthentik/server:${version}";
|
||||||
secret = name;
|
secret = name;
|
||||||
extraEnv = {
|
extraEnv = {
|
||||||
|
AUTHENTIK_DISABLE_STARTUP_ANALYTICS="true";
|
||||||
|
AUTHENTIK_ERROR_REPORTING__ENABLED="false";
|
||||||
|
AUTHENTIK_WEB__WORKERS="1";
|
||||||
|
AUTHENTIK_WORKER__PROCESSES="1";
|
||||||
|
AUTHENTIK_WORKER__THREADS="2";
|
||||||
AUTHENTIK_REDIS__HOST = builder.host;
|
AUTHENTIK_REDIS__HOST = builder.host;
|
||||||
AUTHENTIK_POSTGRESQL__HOST = builder.host;
|
AUTHENTIK_POSTGRESQL__HOST = builder.host;
|
||||||
AUTHENTIK_POSTGRESQL__USER = "authentik_user";
|
AUTHENTIK_POSTGRESQL__USER = "authentik_user";
|
||||||
@@ -94,8 +104,8 @@ in {
|
|||||||
overrides = {
|
overrides = {
|
||||||
cmd = [ "worker" ];
|
cmd = [ "worker" ];
|
||||||
volumes = [
|
volumes = [
|
||||||
"${serverCfg.path.config}/authentik/media:/media"
|
"${serverCfg.path.config.path}/authentik/media:/media"
|
||||||
"${serverCfg.path.config}/authentik/templates:/templates"
|
"${serverCfg.path.config.path}/authentik/templates:/templates"
|
||||||
"${authentikData}:/blueprints/custom:ro"
|
"${authentikData}:/blueprints/custom:ro"
|
||||||
"${mediaCfg.logo.svg}:${logoSvgMount}:ro"
|
"${mediaCfg.logo.svg}:${logoSvgMount}:ro"
|
||||||
"${mediaCfg.logo.ico}:${logoIcoMount}:ro"
|
"${mediaCfg.logo.ico}:${logoIcoMount}:ro"
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user