Skip to content
This repository has been archived by the owner on Sep 6, 2024. It is now read-only.

Commit

Permalink
feat(mazurek): add papirus-folders
Browse files Browse the repository at this point in the history
  • Loading branch information
sneexy-boi committed Mar 4, 2024
1 parent 72fc4c1 commit 7769e97
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions config/recipes/sneexy/mazurek.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ modules:
- type: script
scripts:
- system-mazurek.sh
- papirus-folders.sh

# put some files in the image
- from-file: common/sneexy/mazurek/files.yml
Expand Down
19 changes: 19 additions & 0 deletions config/scripts/papirus-folders.sh
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

0 comments on commit 7769e97

Please sign in to comment.