sway: fix sway-launcher
All checks were successful
continuous-integration/drone/push Build is passing

whence is a zsh builtin, use bash's compgen function to get a list
of available commands
This commit is contained in:
teutat3s 2023-05-16 15:04:29 +02:00 committed by Benjamin Bädorf
parent 77747848a3
commit 8027bbd866
No known key found for this signature in database
GPG key ID: 4406E80E13CD656C

View file

@ -11,7 +11,7 @@ with self; ''
# Get shell command list
# This may include the occasional non-executable file
command_list=$({ whence -wm '*' | sed 's/:[^:]*$//' })
command_list=$({ compgen -c | sed 's/:[^:]*$//'; })
# read existing command history
if [ -f "$HIST_FILE" ]; then