11 lines
448 B
Bash
11 lines
448 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 - "
|
|
sed -ri "s/fontSize: (.*?),/fontSize: 16,/g" ~/.hyper.js
|
|
sed -ri "s/fontFamily: '(.*?)',/fontFamily: 'Hasklig',/g" ~/.hyper.js
|
|
hyper i hyper-dracula
|
|
sed -ri "s/plugins: \[(.*?)\],/plugins: \['hyper-dracula'\],/g" ~/.hyper.js
|