summaryrefslogtreecommitdiffstats
path: root/.local/bin/shutup
blob: d5d7b463d213b82c7ee03a2184f67f5667710d3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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__