Compare commits
2 Commits
06f70c14cc
...
18090c67d4
Author | SHA1 | Date | |
---|---|---|---|
18090c67d4 | |||
6ce5b9bfcc |
15
bin/launcher.sh
Normal file
15
bin/launcher.sh
Normal 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
|
@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Compatible with Wayland. Cf. https://github.com/IJHack/QtPass/issues/663
|
# 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
|
||||||
|
Loading…
Reference in New Issue
Block a user