mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 03:14:55 +02:00
13 lines
222 B
Bash
Executable file
13 lines
222 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ICON=fedora
|
|
TMPDIR=~/.qogir-theme-install
|
|
|
|
mkdir -p $TMPDIR
|
|
git clone https://github.com/vinceliuice/Qogir-theme.git $TMPDIR
|
|
|
|
pushd $TMPDIR
|
|
sudo ./install.sh -i $ICON -d /usr/share/themes
|
|
popd
|
|
|
|
rm -fr $TMPDIR
|