Compare commits

..

No commits in common. "cc95668f6dce90fc24639f222990fb5070b17d9a" and "466ab42ee832c8ca652b57f62a4a7b182a505392" have entirely different histories.

2 changed files with 9 additions and 19 deletions

View File

@ -315,17 +315,19 @@ in
systemd.user = { systemd.user = {
services = { services = {
wayland-pipewire-idle-inhibit = { /*
Unit.Description = "inhibit sleep while audio output is active"; himalaya = {
Unit.Description = "Himalaya new messages notifier";
Service = { Service = {
ExecStart = "${lib.getExe pkgs.wayland-pipewire-idle-inhibit}"; ExecStart = "himalaya notify";
Restart = "always"; Restart = "always";
RestartSec = 10; RestartSec = 10;
}; };
Install = { Install = {
WantedBy = [ "graphical-session.target" ]; WantedBy = [ "multi-user.target" ];
}; };
}; };
*/
}; };
}; };
} }

View File

@ -92,18 +92,6 @@
ls; ls;
} }
function osc7-pwd() {
emulate -L zsh # also sets localoptions for us
setopt extendedglob
local LC_ALL=C
printf '\e]7;file://%s%s\e\' $HOST ''${PWD//(#m)([^@-Za-z&-;_~])/%''${(l:2::0:)''$(([##16]#MATCH))}}
}
function chpwd-osc7-pwd() {
(( ZSH_SUBSHELL )) || osc7-pwd
}
add-zsh-hook -Uz chpwd chpwd-osc7-pwd
eval "$(direnv hook zsh)" eval "$(direnv hook zsh)"
zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}' zstyle ':completion:*' matcher-list 'm:{a-z}={A-Za-z}'