summaryrefslogtreecommitdiffstats
path: root/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-x.local/bin/shutup19
1 files changed, 19 insertions, 0 deletions
diff --git a/.local/bin/shutup b/.local/bin/shutup
new file mode 100755
index 0000000..d5d7b46
--- /dev/null
+++ b/.local/bin/shutup
@@ -0,0 +1,19 @@
+#!/usr/local/bin/perl
+
+use strict;
+use warnings;
+use File::HomeDir qw(home)
+
+use constant {
+ DUNSTRC_PATH => home() . '/.config/dunst/dunstrc'
+ NOTIFYSEND_PATH => '/usr/local/bin/notify-send'
+}
+
+sub main()
+{
+ return;
+}
+
+main();
+
+__END__