17 lines
409 B
Bash
Executable File
17 lines
409 B
Bash
Executable File
#!/bin/bash
|
|
# Starting virtualhere client in non-service mode
|
|
echo "Starting virtualhere client in non-service mode"
|
|
tmux new-window -n "VHC" sudo vhclientx86_64
|
|
|
|
# Creating scratch window
|
|
tmux new-window -n "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
|