Updated script

This commit is contained in:
Christoffer Martinsson 2024-09-21 21:07:24 +02:00
parent 9399c20b32
commit c4a4a0a828
2 changed files with 7 additions and 5 deletions

View File

@ -54,7 +54,7 @@ vim.o.wrap = true
vim.o.foldmethod = "expr"
vim.o.foldexpr = "nvim_treesitter#foldexpr()"
vim.o.nofoldenable = true
-- vim.o.nofoldenable = true
vim.o.foldlevelstart = 99
-- show cursor line only in active window

View File

@ -1,8 +1,10 @@
#!/bin/bash
# Start virtual here client in non-service mode
sudo vhclientx86_64 &
vhclientx86_64 -t LIST
tmux rename-window "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