Compare commits

...

2 Commits

Author SHA1 Message Date
ce77f97011 sensible-terminal 2023-07-31 08:33:33 +05:00
9c6b39aa4b added ssh-terminal 2023-07-31 08:17:03 +05:00
3 changed files with 12 additions and 0 deletions

View File

@@ -74,3 +74,5 @@ then
mkdir /home/shihaam/.config/picom/
ln -s $PWD/config/picom/picom.conf $HOME/.config/picom/picom.conf
fi
# install screen key please add it here

7
scripts/sensible-terminal Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
if [ -z "$1" ]; then
/sbin/xfce4-terminal
else
/sbin/xfce4-terminal -e "ssh $1"
fi

3
scripts/ssh-terminal Executable file
View File

@@ -0,0 +1,3 @@
#!/bin/bash
/sbin/xfce4-terminal -e "ssh $1"