15 lines
325 B
Bash
Executable File
15 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
# Start virtual here client in non-service mode
|
|
sudo vhclientx86_64 &
|
|
vhclientx86_64 -t LIST
|
|
tmux rename-window "BASH"
|
|
|
|
# Check if the projects directory exists, if not create it
|
|
if [ ! -d ~/projects ]; then
|
|
mkdir ~/projects
|
|
fi
|
|
|
|
# Start nvim in projects directory
|
|
cd ~/projects
|
|
tmux new-window -n "NVIM" nvim
|