Adds sesh to user bin

This commit is contained in:
2024-03-23 09:45:19 -07:00
parent ce74a987c6
commit 8bc0cfebd3
3 changed files with 13 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
sudo cp ./sesh /usr/bin
sudo dnf install zig -y sudo dnf install zig -y
sudo dnf install neovim -y sudo dnf install neovim -y
sudo dnf install npm -y sudo dnf install npm -y

10
sesh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Check if no parameter is provided
if [ $# -eq 0 ]; then
echo "Error: No parameter provided. Please provide a session."
exit 1
fi
# Echo the provided session parameter
echo "Session: $1"
flatpak run org.wezfurlong.wezterm start ~/linux-setup/tmux-sessions/$1.sh

View File

@@ -1,6 +1,7 @@
sudo apt install zig -y sudo apt install zig -y
snap install nvim --classic snap install nvim --classic
sudo cp ./sesh /usr/bin
cp .tmux.conf ~ cp .tmux.conf ~
###### Node ###### Node