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

Commit

Permalink
feat: some theming + defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
tulilirockz committed Feb 29, 2024
1 parent 31b863f commit 2c8c91c
Show file tree
Hide file tree
Showing 21 changed files with 1,054 additions and 27 deletions.
2 changes: 2 additions & 0 deletions config/common/apps.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
- type: rpm-ostree
install:
- papirus-icon-theme
- materia-gtk-theme
- krita
- blender
- inkscape
Expand Down
3 changes: 2 additions & 1 deletion config/common/plasma-apps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,5 @@

- type: rpm-ostree
install:
- qpwgraph
- qpwgraph
- materia-kde
Empty file removed config/files/plasma/.gitkeep
Empty file.
3 changes: 3 additions & 0 deletions config/files/plasma/etc/skel/.config/korgacrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[General]
Autostart=false
Enabled=false
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[Desktop Entry]
Type=Application
Name=User folders update
TryExec=xdg-user-dirs-update
Exec=xdg-user-dirs-update
StartupNotify=false
NoDisplay=true

X-KDE-autostart-phase=1
2 changes: 2 additions & 0 deletions config/files/plasma/lib/sddm/sddm.conf.d/atomicstudio.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[General]
InputMethod=
Empty file removed config/files/shared/.gitkeep
Empty file.
33 changes: 33 additions & 0 deletions config/files/shared/bin/pwjack-config
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/sh
set -e

if [ "$1" = "" ] || [ "$1" = "-h" ]; then
echo "Usage: $0 BUFFERSIZE | enable | disable"
echo " where BUFFERSIZE is 8, 16, 32, 64, 128, 256, 512, 1024, 2048, or 4096"
exit 1
elif [ "$1" = "enable" ]; then
ln -fs /usr/share/doc/pipewire/examples/ld.so.conf.d/pipewire-jack-*-linux-gnu.conf \
/etc/ld.so.conf.d/pipewire-jack.conf
ldconfig
systemctl mask pulseaudio-enable-autospawn.service || true
echo "Reboot for changes to take effect."
exit 0
elif [ "$1" = "disable" ]; then
rm /etc/ld.so.conf.d/pipewire-jack.conf || true
ldconfig
systemctl unmask pulseaudio-enable-autospawn.service || true
echo "Reboot for changes to take effect."
exit 0
elif [ "$1" = "8" ] || [ "$1" = "16" ] || [ "$1" = "32" ] || [ "$1" = "64" ] ||\
[ "$1" = "128" ] || [ "$1" = "256" ] || [ "$1" = "512" ] || [ "$1" = "1024" ] ||\
[ "$1" = "2048" ] || [ "$1" = "4096" ]; then
writefile=$(cat << EOF
export PIPEWIRE_QUANTUM="$1/48000"
EOF
)
echo "${writefile}" > /etc/profile.d/atomic-pwjack.sh
echo "Log out and in for changes to take effect."
else
echo "Invalid Value"
exit 2
fi
Loading

0 comments on commit 2c8c91c

Please sign in to comment.