sunhat/install/typora.sh

12 lines
364 B
Bash
Raw Normal View History

2024-05-26 18:09:34 -05:00
if ! command -v typora &>/dev/null; then
sudo snap install typora
cd ~/Downloads
git clone https://github.com/dhh/ia_typora
mkdir -p ~/.local/share/fonts
cp ia_typora/fonts/iAWriterMonoS-* ~/.local/share/fonts/
fc-cache
mkdir -p ~/snap/typora/current/.config/Typora/themes/
cp ia_typora/ia_typora*.css ~/snap/typora/current/.config/Typora/themes/
2024-05-26 18:09:34 -05:00
cd -
fi