mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
dustin: start trayscale at login
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
Some checks are pending
git-mirror / gitlab-sync (push) Waiting to run
nix-build / default-build (push) Waiting to run
nix-build / fallarbor-build (push) Waiting to run
nix-build / lavaridge-build (push) Waiting to run
nix-build / mauville-build (push) Waiting to run
nix-build / petalburg-build (push) Waiting to run
nix-build / rustboro-build (push) Waiting to run
nix-check / fmt-check (push) Waiting to run
nix-check / eval-check (push) Waiting to run
This commit is contained in:
parent
0bfa043306
commit
349f0f398d
|
@ -16,6 +16,7 @@ self: {
|
||||||
libreoffice-fresh
|
libreoffice-fresh
|
||||||
plexamp
|
plexamp
|
||||||
teams-for-linux
|
teams-for-linux
|
||||||
|
trayscale
|
||||||
webcord
|
webcord
|
||||||
xfce.xfce4-taskmanager
|
xfce.xfce4-taskmanager
|
||||||
zoom-us
|
zoom-us
|
||||||
|
@ -38,9 +39,12 @@ self: {
|
||||||
};
|
};
|
||||||
|
|
||||||
wayland.windowManager = {
|
wayland.windowManager = {
|
||||||
hyprland.settings.bind = [
|
hyprland.settings = {
|
||||||
"SUPER,P,exec,${lib.getExe pkgs.rofi-rbw-wayland}"
|
bind = [
|
||||||
];
|
"SUPER,P,exec,${lib.getExe pkgs.rofi-rbw-wayland}"
|
||||||
|
];
|
||||||
|
exec-once = ["${lib.getExe pkgs.trayscale}"];
|
||||||
|
};
|
||||||
|
|
||||||
sway.config = {
|
sway.config = {
|
||||||
input."type:keyboard" = lib.mkForce {
|
input."type:keyboard" = lib.mkForce {
|
||||||
|
@ -51,6 +55,8 @@ self: {
|
||||||
keybindings = {
|
keybindings = {
|
||||||
"${config.wayland.windowManager.sway.config.modifier}+P" = "exec ${lib.getExe pkgs.rofi-rbw-wayland}";
|
"${config.wayland.windowManager.sway.config.modifier}+P" = "exec ${lib.getExe pkgs.rofi-rbw-wayland}";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
startup = [{command = "${lib.getExe pkgs.trayscale}";}];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue