Skip to content

Commit

Permalink
feat(deck): Add just commands to disable bios updates & controller fi…
Browse files Browse the repository at this point in the history
…rmware updates if desired
  • Loading branch information
KyleGospo committed Aug 18, 2023
1 parent a19ae1f commit 30905ea
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,8 @@ RUN rm /usr/share/applications/winetricks.desktop && \
systemctl enable jupiter-fan-control.service && \
systemctl enable duperemove-weekly@$(systemd-escape /run/media/mmcblk0p1).timer && \
systemctl enable vpower.service && \
systemctl enable jupiter-biosupdate.service && \
systemctl enable jupiter-controller-update.service && \
systemctl enable ds-inhibit.service && \
systemctl --global enable sdgyrodsu.service && \
systemctl disable input-remapper.service && \
Expand Down
10 changes: 10 additions & 0 deletions system_files/deck/shared/usr/share/ublue-os/just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,16 @@ disable-deck-services:
#!/usr/bin/env bash
sudo systemctl disable jupiter-fan-control.service
sudo systemctl disable vpower.service
sudo systemctl disable jupiter-biosupdate.service
sudo systemctl disable jupiter-controller-update.service
disable-bios-updates:
#!/usr/bin/env bash
sudo systemctl disable jupiter-biosupdate.service
disable-firmware-updates:
#!/usr/bin/env bash
sudo systemctl disable jupiter-controller-update.service
_toggle_wayland:
#!/usr/bin/env bash
Expand Down

0 comments on commit 30905ea

Please sign in to comment.