Compare commits

..

2 Commits

2 changed files with 16 additions and 1 deletions

15
bin/launcher.sh Normal file
View File

@ -0,0 +1,15 @@
#!/usr/bin/env bash
#
# launcher
#
# TODO: toujours mettre des \n entre les résultats !
res=()
# Find all programs in $PATH.
res+=$(echo -n "$PATH" | xargs -d: -I{} -r -- find -L {} -maxdepth 1 -mindepth 1 -type f -executable -printf '%P\n' 2>/dev/null)
res+=$(echo -e "\ncoucou")
for resultat in "${res[@]}"; do
echo "$resultat"
done | fzf|sh

View File

@ -1,4 +1,4 @@
#!/usr/bin/env bash
# Compatible with Wayland. Cf. https://github.com/IJHack/QtPass/issues/663
QT_QPA_PLATFORM=xcb /usr/bin/qtpass
export QT_QPA_PLATFORM=xcb && /usr/bin/qtpass