diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-08 20:06:30 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-08 20:06:30 +0200 |
commit | 06b11915c29e93c59168dc04f7f87c806e70b791 (patch) | |
tree | f485cadf51d6e31a03b3573e39a8d9152eb442c7 /.local/bin | |
parent | It doesnt work (diff) | |
download | dotfiles-bsd-06b11915c29e93c59168dc04f7f87c806e70b791.tar.gz dotfiles-bsd-06b11915c29e93c59168dc04f7f87c806e70b791.tar.bz2 dotfiles-bsd-06b11915c29e93c59168dc04f7f87c806e70b791.tar.xz dotfiles-bsd-06b11915c29e93c59168dc04f7f87c806e70b791.tar.zst dotfiles-bsd-06b11915c29e93c59168dc04f7f87c806e70b791.zip |
New script incoming
Diffstat (limited to '.local/bin')
-rwxr-xr-x | .local/bin/shutup | 19 |
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__ |