mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 03:26:13 +01:00
8 lines
274 B
Bash
Executable file
8 lines
274 B
Bash
Executable file
#!/bin/bash
|
|
|
|
wget -qO- https://git.io/papirus-icon-theme-install | sh
|
|
|
|
for theme in Papirus ePapirus Papirus-Dark Papirus-Light ; do
|
|
sudo chmod -R u+r,g+r,o+r "/usr/share/icons/${theme}"
|
|
sudo find "/usr/share/icons/${theme}" -type d -exec chmod u+x,g+x,o+x {} +
|
|
done |