From: Siraaj Khandkar Date: Wed, 10 Apr 2019 01:56:49 +0000 (-0400) Subject: Convert dunst pause/resume from aliases to scripts X-Git-Url: https://git.xandkar.net/?a=commitdiff_plain;h=1b3cc72d4d2966124aed363bac2c3b2b8e8f8802;p=khome.git Convert dunst pause/resume from aliases to scripts so that I can call them from dmenu --- diff --git a/bin/dunst_pause b/bin/dunst_pause new file mode 100755 index 0000000..b747a29 --- /dev/null +++ b/bin/dunst_pause @@ -0,0 +1,3 @@ +#! /bin/sh + +notify-send DUNST_COMMAND_PAUSE diff --git a/bin/dunst_resume b/bin/dunst_resume new file mode 100755 index 0000000..6e87771 --- /dev/null +++ b/bin/dunst_resume @@ -0,0 +1,3 @@ +#! /bin/sh + +notify-send DUNST_COMMAND_RESUME diff --git a/lib/login_aliases.sh b/lib/login_aliases.sh index a00e8d0..b1b49fd 100644 --- a/lib/login_aliases.sh +++ b/lib/login_aliases.sh @@ -5,5 +5,3 @@ alias tree='tree --dirsfirst' alias dotnet="$HOME/.dotnet/dotnet" alias fsi="dotnet $HOME/.dotnet/sdk/2.1.503/FSharp/fsi.exe" alias tm='tmux' -alias dunst_pause='notify-send DUNST_COMMAND_PAUSE' -alias dunst_resume='notify-send DUNST_COMMAND_RESUME'