91 lines
3 KiB
Nix
91 lines
3 KiB
Nix
{ pkgs, config, lib, ... }:
|
|
let
|
|
notificationModule = { config, pkgs, lib, ... }:
|
|
let
|
|
swaync = pkgs.swaynotificationcenter;
|
|
in
|
|
with lib; mkIf (config.linux.graphical.type == "wayland") {
|
|
services.swaync = {
|
|
enable = true;
|
|
settings.widgets = [ "inhibitors" "title" "dnd" "mpris" "notifications" ];
|
|
style = ./swaync.css;
|
|
};
|
|
systemd.user.services.swaync.Install.WantedBy = lib.mkForce [ "sway-session.target" ];
|
|
systemd.user.services.swaync.Unit.PartOf = lib.mkForce [ "sway-session.target" ];
|
|
|
|
programs.my-sway.waybar = {
|
|
extraSettings = {
|
|
modules-right = mkAfter [ "custom/swaync" ];
|
|
modules."custom/swaync" = {
|
|
tooltip = false;
|
|
format = "{icon} {}";
|
|
format-icons = {
|
|
notification = "<span foreground='red'><sup></sup></span>";
|
|
none = "";
|
|
dnd-notification = "<span foreground='red'><sup></sup></span>";
|
|
dnd-none = "";
|
|
inhibited-notification = "<span foreground='red'><sup></sup></span>";
|
|
inhibited-none = "";
|
|
dnd-inhibited-notification = "<span foreground='red'><sup></sup></span>";
|
|
dnd-inhibited-none = "";
|
|
};
|
|
return-type = "json";
|
|
# exec-if = "which swaync-client";
|
|
exec = "${swaync}/bin/swaync-client -swb";
|
|
on-click = "${swaync}/bin/swaync-client -t -sw";
|
|
on-click-right = "${swaync}/bin/swaync-client -d -sw";
|
|
escape = true;
|
|
};
|
|
};
|
|
extraStyle = mkAfter ''
|
|
#custom-swaync {
|
|
background: #F0FFFF;
|
|
color: #000000;
|
|
}
|
|
'';
|
|
};
|
|
};
|
|
in
|
|
with lib;
|
|
{
|
|
imports = [ notificationModule ];
|
|
config = mkIf (config.linux.graphical.type == "wayland") {
|
|
# Additional packages
|
|
home.packages = with pkgs; [
|
|
wl-clipboard # Clipboard management
|
|
|
|
# Mimic the clipboard stuff in MacOS
|
|
(pkgs.writeShellScriptBin "pbcopy" ''
|
|
exec ${pkgs.wl-clipboard}/bin/wl-copy "$@"
|
|
'')
|
|
(pkgs.writeShellScriptBin "pbpaste" ''
|
|
exec ${pkgs.wl-clipboard}/bin/wl-paste "$@"
|
|
'')
|
|
];
|
|
|
|
# Notification system
|
|
# services.dunst = {
|
|
# enable = true;
|
|
# settings.global.follow = "keyboard";
|
|
|
|
# settings.global.width = "(400, 800)";
|
|
# settings.global.notification_limit = 5;
|
|
|
|
# settings.global.font = "Monospace 12";
|
|
|
|
# settings.global.dmenu = "${pkgs.bemenu}/bin/bemenu";
|
|
# settings.global.browser = "${pkgs.firefox-wayland}/bin/firefox";
|
|
|
|
# settings.global.mouse_left_click = "do_action, close_current";
|
|
# settings.global.mouse_right_click = "close_current";
|
|
# settings.global.mouse_middle_click = "close_all";
|
|
|
|
# settings.experimental.per_monitor_dpi = "true";
|
|
# };
|
|
|
|
# Forward wallpaper settings to sway
|
|
programs.my-sway.wallpaper = config.linux.graphical.wallpaper;
|
|
};
|
|
}
|
|
|