1
Fork 0

Attempt to configure waybar, then give up

This commit is contained in:
Matei Adriel 2024-01-04 20:35:10 +01:00
parent a39544b93d
commit 74cc26d88c
No known key found for this signature in database
5 changed files with 17 additions and 2 deletions

View file

@ -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;

View file

@ -3,6 +3,7 @@
imports = [ imports = [
./wlsunset.nix ./wlsunset.nix
./wlogout.nix ./wlogout.nix
./waybar.nix
./anyrun.nix ./anyrun.nix
../desktop ../desktop

View file

@ -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

View file

@ -0,0 +1,12 @@
{ ... }: {
programs.waybar = {
enable = false;
systemd.enable = true;
systemd.target = "hyprland-session.target";
};
stylix.targets.waybar = {
enable = false;
};
}

View file

@ -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 ];