dmenu-scripts/dmenurepos

6 lines
207 B
Plaintext
Raw Normal View History

2021-03-13 19:30:19 +01:00
#!/bin/sh
2021-03-13 19:31:28 +01:00
# A script to list directory in a give path and them after chosing one opening them in alacritty.
2021-03-13 19:30:19 +01:00
find "$1" -xdev -maxdepth 1 -type d | dmenu -l 5 | xargs -I {} alacritty --working-directory {}