Files
2023-08-23 09:10:43 +05:30

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