7 lines
220 B
Bash
7 lines
220 B
Bash
#!/bin/bash
|
|
echo " - Configuring Hyper Terminal - "
|
|
curl -L https://releases.hyper.is/download/deb -o ~/Downloads/hyper.deb
|
|
sudo dpkg -i ~/Downloads/hyper.deb
|
|
sudo apt install -f
|
|
|
|
echo " - Configuring Hyper Terminal - "
|