This repository has been archived by the owner on Sep 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72fc4c1
commit 7769e97
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Papirus-folders script done pre-setup because of how the script works that prevents it | ||
# from working within a booted immutable environment. | ||
|
||
# This is for the Catppuccin varient of the script. | ||
|
||
# builds actually ran successfully without any errors! | ||
set -oue pipefail | ||
|
||
# clone the script | ||
git clone https://github.com/catppuccin/papirus-folders.git /tmp/papirus-folders | ||
|
||
# Copy the contents to the system installed icons. because of this, we need to run | ||
# this script AFTER installing the icons to ensure nothing goes wrong. | ||
cp -r /tmp/papirus-folders/src/* /usr/share/icons/Papirus | ||
|
||
# Copy the script to /usr/bin/ so the user can change the theme themselves. | ||
cp /tmp/papirus-folders/papirus-folders /usr/bin |