summaryrefslogtreecommitdiff
path: root/scripts/project
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2026-01-22 23:18:38 -0500
committerJack Jamison <jackqjamison@gmail.com>2026-01-22 23:18:38 -0500
commite5ca063e3bc3fba3e497edfb6482b4a9dba449e6 (patch)
tree7da87352c0085d4c95c5bbf836dee679297b2d56 /scripts/project
parent05fb99140b5541c3f3e3648fa1c8170e229118cd (diff)
switch to sway
Diffstat (limited to 'scripts/project')
-rwxr-xr-xscripts/project12
1 files changed, 0 insertions, 12 deletions
diff --git a/scripts/project b/scripts/project
deleted file mode 100755
index e306dfa..0000000
--- a/scripts/project
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-if [ "$TERM" = "linux" ]; then
- exit 1
-fi
-
-dir="$(find ~/Dev ~/Dev/CPP/comp-org/ -mindepth 2 -maxdepth 2 -type d | fzf)"
-if [ -z "$dir" ]; then
- return
-else
- cd "$dir"
-fi