mirror of
https://github.com/Whitecat18/Mavoc
synced 2026-06-06 15:04:28 +00:00
11 lines
196 B
Bash
11 lines
196 B
Bash
#!/bin/bash
|
|
|
|
if [ -f ~/.tmux.conf ]; then
|
|
echo "set -g mouse on" >> ~/.tmux.conf
|
|
echo "Functions Enabled."
|
|
else
|
|
echo "set -g mouse on" > ~/.tmux.conf
|
|
echo "Functions Enabled."
|
|
fi
|
|
|