This repository has been archived by the owner on Dec 25, 2024. It is now read-only.
generated from blue-build/template
-
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
31b863f
commit 2c8c91c
Showing
21 changed files
with
1,054 additions
and
27 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
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 | ||
|
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ | |
|
||
- type: rpm-ostree | ||
install: | ||
- qpwgraph | ||
- qpwgraph | ||
- materia-kde |
Empty file.
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,3 @@ | ||
[General] | ||
Autostart=false | ||
Enabled=false |
9 changes: 9 additions & 0 deletions
9
config/files/plasma/etc/xdg/autostart/xdg-user-dirs-kde.desktop
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,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 |
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,2 @@ | ||
[General] | ||
InputMethod= |
Empty file.
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,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 |
Oops, something went wrong.