Attempt to configure waybar, then give up
This commit is contained in:
parent
a39544b93d
commit
74cc26d88c
|
@ -1,7 +1,7 @@
|
||||||
{ inputs, ... }:
|
{ inputs, ... }:
|
||||||
let
|
let
|
||||||
transparency = amount: {
|
transparency = amount: {
|
||||||
desktop = 1.0;
|
desktop = amount;
|
||||||
applications = amount;
|
applications = amount;
|
||||||
terminal = amount;
|
terminal = amount;
|
||||||
popups = amount;
|
popups = amount;
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./wlsunset.nix
|
./wlsunset.nix
|
||||||
./wlogout.nix
|
./wlogout.nix
|
||||||
|
./waybar.nix
|
||||||
./anyrun.nix
|
./anyrun.nix
|
||||||
|
|
||||||
../desktop
|
../desktop
|
||||||
|
|
|
@ -28,7 +28,9 @@ decoration {
|
||||||
# Blur extra surfaces
|
# Blur extra surfaces
|
||||||
layerrule = blur,gtk-layer-shell
|
layerrule = blur,gtk-layer-shell
|
||||||
layerrule = blur,anyrun
|
layerrule = blur,anyrun
|
||||||
|
layerrule = blur,waybar
|
||||||
layerrule = ignorezero,anyrun
|
layerrule = ignorezero,anyrun
|
||||||
|
layerrule = ignorezero,waybar
|
||||||
|
|
||||||
input {
|
input {
|
||||||
kb_layout = us
|
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 = {
|
xdg.portal = {
|
||||||
enable = true;
|
enable = true;
|
||||||
xdgOpenUsePortal = true;
|
xdgOpenUsePortal = true;
|
||||||
configPackages = [ pkgs.xdg-desktop-portal-gtk ];
|
extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = [ pkgs.xdg-utils ];
|
environment.systemPackages = [ pkgs.xdg-utils ];
|
||||||
|
|
Loading…
Reference in a new issue