mirror of
https://gitlab.com/thebiblelover7/dotfiles.git
synced 2025-09-13 15:13:49 +00:00
added my scripts and added them to the install script
This commit is contained in:
23
scripts/projman
Executable file
23
scripts/projman
Executable file
@@ -0,0 +1,23 @@
|
||||
#!/bin/bash
|
||||
|
||||
project_dir=$HOME/Videos/Projects
|
||||
proj_name=$1
|
||||
|
||||
mkproj(){
|
||||
mkdir -p $project_dir/$proj_name
|
||||
}
|
||||
openproj(){
|
||||
cd $project_dir/$proj_name
|
||||
tmux
|
||||
}
|
||||
|
||||
case $1 in
|
||||
'--help' | '-h' | 'help')
|
||||
echo "HELP!"
|
||||
;;
|
||||
* )
|
||||
echo $proj_name
|
||||
mkproj
|
||||
openproj
|
||||
;;
|
||||
esac
|
Reference in New Issue
Block a user