mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-21 19:53: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
|
||||
plexamp
|
||||
teams-for-linux
|
||||
trayscale
|
||||
webcord
|
||||
xfce.xfce4-taskmanager
|
||||
zoom-us
|
||||
|
@ -38,9 +39,12 @@ self: {
|
|||
};
|
||||
|
||||
wayland.windowManager = {
|
||||
hyprland.settings.bind = [
|
||||
"SUPER,P,exec,${lib.getExe pkgs.rofi-rbw-wayland}"
|
||||
];
|
||||
hyprland.settings = {
|
||||
bind = [
|
||||
"SUPER,P,exec,${lib.getExe pkgs.rofi-rbw-wayland}"
|
||||
];
|
||||
exec-once = ["${lib.getExe pkgs.trayscale}"];
|
||||
};
|
||||
|
||||
sway.config = {
|
||||
input."type:keyboard" = lib.mkForce {
|
||||
|
@ -51,6 +55,8 @@ self: {
|
|||
keybindings = {
|
||||
"${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