Compare commits

...

3 Commits

Author SHA1 Message Date
45b402c320 Merge branch 'main' into rotom 2026-01-09 19:46:37 +01:00
55e80b537e CUPS Printing Support 2026-01-09 19:46:25 +01:00
856bd58e6e CUPS Printing Support 2026-01-09 19:46:10 +01:00

View File

@@ -61,7 +61,8 @@ mapfile -t tools < <(
"Terminal Emulator" \
"Gaming" \
"VR Gaming" \
"Hamr Sticker Picker"
"Hamr Sticker Picker" \
"CUPS Printing Support"
)
mapfile -t extratools < <(
@@ -215,6 +216,13 @@ for choice in "${tools[@]}"; do
systemctl --user add-wants niri.service hamr.service
systemctl --user start hamr.service
;;
"CUPS Printing Support")
sudo -v || exit 1
yay -S --needed --noconfirm \
cups
sudo systemctl enable cups
;;
esac
done