diff options
Diffstat (limited to 'common/home/scripts')
| -rw-r--r-- | common/home/scripts/openproject | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/common/home/scripts/openproject b/common/home/scripts/openproject index 4881921..5b42432 100644 --- a/common/home/scripts/openproject +++ b/common/home/scripts/openproject @@ -1,3 +1,8 @@ #!/bin/sh -echo Hello, World +path=$(find ~ -name '.git' -type d -maxdepth 6 | sed 's/\.git$//' | wofi -d -p 'Open Project') + +[ -z "$path" ] && exit + +cd $path +alacritty |