feat(solterra): redo rice
This commit is contained in:
parent
526881811c
commit
3baf81506f
13 changed files with 113 additions and 89 deletions
|
@ -37,6 +37,11 @@
|
|||
options = "eurosign:e,ctrl:nocaps";
|
||||
};
|
||||
|
||||
displayManager.sddm = {
|
||||
enable = true;
|
||||
wayland.enable = true;
|
||||
};
|
||||
|
||||
udev.packages = [
|
||||
pkgs.android-udev-rules
|
||||
];
|
||||
|
|
|
@ -1,16 +1,14 @@
|
|||
{pkgs, ...}: let
|
||||
comfy = pkgs.iosevka-comfy;
|
||||
in {
|
||||
{pkgs, ...}: {
|
||||
alqueva.system.fonts = {
|
||||
names = {
|
||||
sansSerif = ["Iosevka Comfy"];
|
||||
monospace = ["Iosevka Comfy Fixed"];
|
||||
sansSerif = ["Iosevka"];
|
||||
monospace = ["Iosevka"];
|
||||
serif = ["IBM Plex Serif"];
|
||||
emoji = ["Twitter Color Emoji"];
|
||||
};
|
||||
packages = {
|
||||
sansSerif = [comfy.comfy];
|
||||
monospace = [comfy.comfy-fixed];
|
||||
sansSerif = [pkgs.inter];
|
||||
monospace = [pkgs.iosevka];
|
||||
serif = [pkgs.ibm-plex];
|
||||
emoji = [pkgs.twemoji-color-font];
|
||||
extra = [
|
||||
|
|
|
@ -219,7 +219,7 @@ prefer-no-csd
|
|||
// You can change the path where screenshots are saved.
|
||||
// A ~ at the front will be expanded to the home directory.
|
||||
// The path is formatted with strftime(3) to give you the screenshot date and time.
|
||||
screenshot-path "~/Afbeeldingen/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
|
||||
screenshot-path "~/Bilder/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"
|
||||
|
||||
// You can also set this to null to disable saving screenshots to disk.
|
||||
// screenshot-path null
|
||||
|
@ -239,27 +239,6 @@ animations {
|
|||
// Find more information on the wiki:
|
||||
// https://github.com/YaLTeR/niri/wiki/Configuration:-Window-Rules
|
||||
|
||||
layer-rule {
|
||||
shadow {
|
||||
on
|
||||
softness 10
|
||||
spread 1
|
||||
draw-behind-window true
|
||||
color "#00000030"
|
||||
}
|
||||
}
|
||||
|
||||
window-rule {
|
||||
match is-floating=true
|
||||
shadow {
|
||||
on
|
||||
softness 20
|
||||
spread 10
|
||||
draw-behind-window true
|
||||
color "#00000040"
|
||||
}
|
||||
}
|
||||
|
||||
// Work around WezTerm's initial configure bug
|
||||
// by setting an empty default-column-width.
|
||||
window-rule {
|
||||
|
|
|
@ -1,15 +1,21 @@
|
|||
{
|
||||
"position": "top",
|
||||
"position": "bottom",
|
||||
"height": 0,
|
||||
"spacing": 16,
|
||||
"modules-left": ["mpris"],
|
||||
"modules-center": ["niri/workspaces"],
|
||||
"modules-right": ["wireplumber", "clock"],
|
||||
"modules-left": ["custom/nixos", "niri/workspaces"],
|
||||
"modules-center": ["mpris"],
|
||||
"modules-right": ["tray", "wireplumber", "clock"],
|
||||
"reload_style_on_change": true,
|
||||
"custom/nixos": {
|
||||
"format": "",
|
||||
"on-click": "rofi -show drun",
|
||||
"tooltip": false,
|
||||
},
|
||||
"mpris": {
|
||||
"format": "{player_icon} {dynamic}",
|
||||
"format-paused": "{status_icon} <i>{dynamic}</i>",
|
||||
"format-stopped": "whitespace",
|
||||
"interval": 1,
|
||||
"dynamic-len": 52,
|
||||
"dynamic-len": 64,
|
||||
"player-icons": {
|
||||
"default": "▶",
|
||||
"mpv": "🎵",
|
||||
|
@ -29,4 +35,7 @@
|
|||
"on-click": "helvum",
|
||||
"format-icons": ["", "", ""],
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 18,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -17,37 +17,57 @@
|
|||
|
||||
* {
|
||||
all: unset;
|
||||
font-size: 15px;
|
||||
color: @base06;
|
||||
color: @base05;
|
||||
min-height: 0px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background: @base00;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background: @base01;
|
||||
}
|
||||
|
||||
.modules-left,
|
||||
.modules-right {
|
||||
background: @base01;
|
||||
padding: 0px 8px;
|
||||
}
|
||||
|
||||
.modules-center {
|
||||
background: @base01;
|
||||
background: @base00;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
background: @base00;
|
||||
padding: 6px 16px;
|
||||
transition: 0.2s;
|
||||
transition: 0.2s background;
|
||||
}
|
||||
|
||||
.modules-right label,
|
||||
#tray image {
|
||||
padding-right: 12px;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
padding: 6px 24px;
|
||||
background: @base01;
|
||||
}
|
||||
|
||||
#workspaces button.focused {
|
||||
background: @base02;
|
||||
}
|
||||
|
||||
#custom-nixos {
|
||||
padding: 0px 12px;
|
||||
font-size: 24px;
|
||||
color: @base08;
|
||||
}
|
||||
|
||||
menu {
|
||||
background: @base00;
|
||||
color: @base05;
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
menuitem {
|
||||
background: @base01;
|
||||
margin: 2px;
|
||||
padding: 5px 10px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
|
||||
menuitem label {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
foot
|
||||
signal-desktop
|
||||
dino
|
||||
polari
|
||||
;
|
||||
inherit (inputs.hetch.packages.${pkgs.system}) hetch;
|
||||
inherit (inputs.gimp-nixpkgs.legacyPackages.${pkgs.system}) gimp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue