Only scale on aloria
This commit is contained in:
parent
006e6e8302
commit
93c4f032c7
|
|
@ -15,7 +15,7 @@
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
imports = [
|
imports = [
|
||||||
(import ./utils/desktop.nix {inherit inputs config pkgs;})
|
(import ./utils/desktop.nix {inherit inputs config pkgs; scale = 1.2;})
|
||||||
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
|
(import ./utils/fzgo_links.nix {inherit config pkgs fzgo_paths;})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
{pkgs, ...}: let
|
{pkgs, scale ? null, ...}: let
|
||||||
terminal = "${pkgs.foot}/bin/footclient";
|
terminal = "${pkgs.foot}/bin/footclient";
|
||||||
nautilus = "${pkgs.nautilus}/bin/nautilus";
|
nautilus = "${pkgs.nautilus}/bin/nautilus";
|
||||||
playerctl = "${pkgs.playerctl}/bin/playerctl";
|
playerctl = "${pkgs.playerctl}/bin/playerctl";
|
||||||
|
|
@ -141,10 +141,11 @@ in {
|
||||||
focus-follows-mouse max-scroll-amount="10%"
|
focus-follows-mouse max-scroll-amount="10%"
|
||||||
warp-mouse-to-focus
|
warp-mouse-to-focus
|
||||||
}
|
}
|
||||||
|
${if scale != null then ''
|
||||||
output "eDP-1" {
|
output "eDP-1" {
|
||||||
scale 1.2
|
scale ${toString scale}
|
||||||
}
|
}
|
||||||
window-rule {
|
'' else ""} window-rule {
|
||||||
match app-id="vicinae"
|
match app-id="vicinae"
|
||||||
open-floating true
|
open-floating true
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,13 +2,14 @@
|
||||||
inputs,
|
inputs,
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
|
scale ? null,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
(import ./common.nix {inherit inputs config pkgs;})
|
(import ./common.nix {inherit inputs config pkgs;})
|
||||||
(import ./python.nix {inherit inputs config pkgs;})
|
(import ./python.nix {inherit inputs config pkgs;})
|
||||||
# (import ../hyprland {inherit inputs pkgs;})
|
# (import ../hyprland {inherit inputs pkgs;})
|
||||||
(import ../niri {inherit inputs config pkgs;})
|
(import ../niri {inherit inputs config pkgs scale;})
|
||||||
(import ../ags {inherit inputs pkgs;})
|
(import ../ags {inherit inputs pkgs;})
|
||||||
../rofi
|
../rofi
|
||||||
../vicinae
|
../vicinae
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue