mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
17 lines
316 B
Bash
Executable file
17 lines
316 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ICON=fedora
|
|
TMPDIR=~/.qogir-icon-install
|
|
|
|
mkdir -p $TMPDIR
|
|
git clone https://github.com/vinceliuice/Qogir-icon-theme $TMPDIR
|
|
|
|
pushd $TMPDIR
|
|
sudo ./install.sh -t default -c dark -d /usr/share/icons
|
|
popd
|
|
|
|
pushd $TMPDIR/src/cursors
|
|
sudo cp -r dist/ /usr/share/icons/Qogir-cursors
|
|
popd
|
|
|
|
sudo rm -fr $TMPDIR
|