Attempt to configure waybar, then give up
This commit is contained in:
parent
a39544b93d
commit
74cc26d88c
|
@ -1,7 +1,7 @@
|
|||
{ inputs, ... }:
|
||||
let
|
||||
transparency = amount: {
|
||||
desktop = 1.0;
|
||||
desktop = amount;
|
||||
applications = amount;
|
||||
terminal = amount;
|
||||
popups = amount;
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
imports = [
|
||||
./wlsunset.nix
|
||||
./wlogout.nix
|
||||
./waybar.nix
|
||||
./anyrun.nix
|
||||
|
||||
../desktop
|
||||
|
|
|
@ -28,7 +28,9 @@ decoration {
|
|||
# Blur extra surfaces
|
||||
layerrule = blur,gtk-layer-shell
|
||||
layerrule = blur,anyrun
|
||||
layerrule = blur,waybar
|
||||
layerrule = ignorezero,anyrun
|
||||
layerrule = ignorezero,waybar
|
||||
|
||||
input {
|
||||
kb_layout = us
|
||||
|
|
12
home/features/wayland/waybar.nix
Normal file
12
home/features/wayland/waybar.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{ ... }: {
|
||||
programs.waybar = {
|
||||
enable = false;
|
||||
|
||||
systemd.enable = true;
|
||||
systemd.target = "hyprland-session.target";
|
||||
};
|
||||
|
||||
stylix.targets.waybar = {
|
||||
enable = false;
|
||||
};
|
||||
}
|
|
@ -3,7 +3,7 @@
|
|||
xdg.portal = {
|
||||
enable = true;
|
||||
xdgOpenUsePortal = true;
|
||||
configPackages = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||
};
|
||||
|
||||
environment.systemPackages = [ pkgs.xdg-utils ];
|
||||
|
|
Loading…
Reference in a new issue