forked from sh-edraft.de/sh_linux_installation_scripts
9 lines
174 B
Bash
9 lines
174 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
install_vimix_cursors() {
|
||
|
git clone https://github.com/vinceliuice/Vimix-cursors
|
||
|
cd Vimix-cursors
|
||
|
./install.sh
|
||
|
cd ..
|
||
|
sudo rm -r Vimix-cursors
|
||
|
}
|