dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 481d8831067acb8fd1252e8f85cf31764d6b2989
parent 481734effb0f8752a9cbf2a7fbfa1a95ede96bce
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Fri,  3 May 2019 14:24:24 +0200

Do not assign to redundant variable

Diffstat:
Mbin/dmenu_run | 3+--
1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/bin/dmenu_run b/bin/dmenu_run @@ -1,4 +1,3 @@ #!/bin/sh cmd="$(dmenu_path | dmenu_themed "$@")" -out="$(eval "$cmd" 2>&1)" -notify-send "\$ $cmd" "$out" +notify-send "\$ $cmd" "$(eval "$cmd" 2>&1)"