mirror of
https://github.com/ItsDrike/nixdots
synced 2025-06-30 10:20:43 +00:00
Add toggle-notifications script & notification keybinds
This commit is contained in:
parent
3cb701b042
commit
b3f457340d
5 changed files with 32 additions and 2 deletions
|
@ -0,0 +1,15 @@
|
|||
{pkgs, ...}:
|
||||
pkgs.writeShellApplication {
|
||||
name = "toggle-notifications";
|
||||
runtimeInputs = with pkgs; [
|
||||
coreutils
|
||||
libnotify
|
||||
dunst
|
||||
];
|
||||
text = ''
|
||||
${builtins.readFile ./toggle-notifications.sh}
|
||||
'';
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue