Compare commits

...

2 commits

Author SHA1 Message Date
Daniel Siepmann d1b97c1847
Exclude TYPO3 general calendar from notifications
It is not my calendar and only synced to have an overview.
Events in there are not important to me and should not notify me.
2024-02-06 12:20:22 +01:00
Daniel Siepmann 51acd348a3
Add arch linux wiki as search to firefox 2024-02-06 09:42:53 +01:00
3 changed files with 12 additions and 1 deletions

BIN
assets/arch.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 750 B

View file

@ -17,7 +17,7 @@ let
text = ''
date=$(date "+%H:%M:00")
events=$(khal list -d contact_birthdays --notstarted "$date" "$1" | (grep -v -e "Urlaub" -e "Today"; true))
events=$(khal list -d contact_birthdays -d typo3 --notstarted "$date" "$1" | (grep -v -e "Urlaub" -e "Today"; true))
if [ -z "$events" ]; then
exit 0;
fi

View file

@ -71,6 +71,17 @@ in {
icon = "''${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg";
definedAliases = [ "@np" ];
};
"ArchLinux Wiki" = {
urls = [{
template = "https://wiki.archlinux.org/index.php";
params = [
{ name = "search"; value = "{searchTerms}"; }
];
}];
icon = ./../../assets/arch.png;
definedAliases = [ "@arch" ];
};
"Packagist" = {
urls = [{
template = "https://packagist.org/";