Adds sesh to user bin
This commit is contained in:
@@ -1,3 +1,5 @@
|
||||
sudo cp ./sesh /usr/bin
|
||||
|
||||
sudo dnf install zig -y
|
||||
sudo dnf install neovim -y
|
||||
sudo dnf install npm -y
|
||||
|
||||
10
sesh
Executable file
10
sesh
Executable 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
|
||||
@@ -1,6 +1,7 @@
|
||||
sudo apt install zig -y
|
||||
snap install nvim --classic
|
||||
|
||||
sudo cp ./sesh /usr/bin
|
||||
cp .tmux.conf ~
|
||||
|
||||
###### Node
|
||||
|
||||
Reference in New Issue
Block a user