diff options
| author | Joe <rbo@gmx.us> | 2024-12-27 09:55:45 +0100 |
|---|---|---|
| committer | Joe <rbo@gmx.us> | 2024-12-27 09:55:45 +0100 |
| commit | 48e216d8f05423454cfd2ebbb56a72679c74019f (patch) | |
| tree | d9c51db27d383109dd826b9abecb3e6d477a3cec /.local/bin/dmlog | |
| parent | up (diff) | |
| download | dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.gz dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.bz2 dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.xz dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.tar.zst dotfiles-bsd-48e216d8f05423454cfd2ebbb56a72679c74019f.zip | |
up
Diffstat (limited to '.local/bin/dmlog')
| -rwxr-xr-x | .local/bin/dmlog | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/dmlog b/.local/bin/dmlog index 6410007..632f518 100755 --- a/.local/bin/dmlog +++ b/.local/bin/dmlog @@ -36,7 +36,7 @@ sub confirm for (@{+CONFIRM}) { $list .= $_ . "\n"; } - $choice = `printf "%s" "$list" | dmenu -i -p "$var?" -m 0`; + $choice = `printf "%s" "$list" | dmenu -i -p "$var?"`; chomp $choice; if ($choice eq ${+CONFIRM}[1]) { return (1); @@ -132,7 +132,7 @@ sub main for (@{+LIST}) { $list .= $_ . "\n"; } - $choice = `printf "%s" "$list" | dmenu -i -m 0`; + $choice = `printf "%s" "$list" | dmenu -i`; action($choice); return (0); } |
