Managed wallpapers

This commit is contained in:
Daniel Flanagan 2024-01-24 22:02:50 -06:00
parent 2bec61cc0c
commit d7ce3ec0a7
Signed by: lytedev
GPG key ID: 5B2020A0F9921EF4
5 changed files with 28 additions and 16 deletions

View file

@ -10,6 +10,7 @@ with builtins;
"desktop" "desktop"
"ewwbar" "ewwbar"
"firefox" "firefox"
"firefox-no-tabs"
"fish" "fish"
"git" "git"
"gnome" "gnome"

View file

@ -0,0 +1,22 @@
{...}: {
programs.firefox = {
profiles = {
daniel = {
userChrome = ''
#TabsToolbar {
visibility: collapse;
}
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar>.toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
'';
};
};
};
}

View file

@ -26,22 +26,9 @@
''; '';
userChrome = '' userChrome = ''
#TabsToolbar {
visibility: collapse;
}
#webrtcIndicator { #webrtcIndicator {
display: none; display: none;
} }
#main-window[tabsintitlebar="true"]:not([extradragspace="true"]) #TabsToolbar>.toolbar-items {
opacity: 0;
pointer-events: none;
}
#main-window:not([tabsintitlebar="true"]) #TabsToolbar {
visibility: collapse !important;
}
''; '';
# userContent = '' # userContent = ''

View file

@ -37,6 +37,7 @@ in {
imports = with outputs.homeManagerModules; [ imports = with outputs.homeManagerModules; [
sway sway
pass pass
firefox-no-tabs
# sway-laptop # sway-laptop
# hyprland # hyprland
]; ];

View file

@ -1,4 +1,5 @@
{ {
pkgs,
lib, lib,
inputs, inputs,
outputs, outputs,
@ -29,9 +30,9 @@
imports = with outputs.homeManagerModules; [linux-desktop]; imports = with outputs.homeManagerModules; [linux-desktop];
}; };
environment.systemPackages = environment.systemPackages = with pkgs;
#with pkgs; #with pkgs;
[]; [variety];
programs.steam.enable = true; programs.steam.enable = true;
programs.steam.remotePlay.openFirewall = true; programs.steam.remotePlay.openFirewall = true;