Skip to content

Commit

Permalink
fix: add as optional just command
Browse files Browse the repository at this point in the history
  • Loading branch information
apoordev committed Dec 18, 2024
1 parent 584bfb1 commit fcc0c26
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
8 changes: 0 additions & 8 deletions build_files/base/05-override-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,6 @@ rpm-ostree override replace \

rm /etc/yum.repos.d/_copr_sentry-switcheroo-control_discrete.repo

# Validity fingerprint sensor driver
rpm-ostree override remove fprintd fprintd-pam \
--experimental \
--from repo=copr:copr.fedorainfracloud.org:sneexy:python-validity \
--install open-fprintd --install fprintd-clients --install fprintd-clients-pam --install python3-validity

rm /etc/yum.repos.d/_copr_sneexy-python-validity.repo

# Starship Shell Prompt
curl --retry 3 -Lo /tmp/starship.tar.gz "https://github.com/starship/starship/releases/latest/download/starship-x86_64-unknown-linux-gnu.tar.gz"
tar -xzf /tmp/starship.tar.gz -C /tmp
Expand Down
12 changes: 10 additions & 2 deletions just/bluefin-system.just
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ ptyxis-transparency opacity="0.95":
printf "Value must be greater than 0 and less than or equal to 1: %s.\n" "{{ opacity }}"
fi
# Configure docker,incus-admin,lxd,libvirt container manager permissions
# Configure incus-admin,lxd,libvirt container manager permissions
[group('System')]
dx-group:
#!/usr/bin/env bash
Expand All @@ -105,7 +105,7 @@ dx-group:
pkexec usermod -aG $GROUP_ADD $USER
done
echo "Reboot system and log back in to use docker, incus-admin, lxd, libvirt."
echo "Reboot system and log back in to use incus-admin, lxd, libvirt."
# alias for configure-vfio
[group('System')]
Expand Down Expand Up @@ -238,6 +238,14 @@ install-nix:
echo "THIS IS EXPERIMENTAL WITH SELINUX"
HOME="/var/home/$USER" curl --proto '=https' --tlsv1.2 -sSf -L https://install.determinate.systems/nix | sh -s -- install
install-validity:
echo "This will install the validity fingerprint driver for the T480s/T480"
sudo wget -P /etc/yum.repos.d/ https://copr.fedorainfracloud.org/coprs/sneexy/python-validity/repo/fedora-$(rpm -E %fedora)/sneexy-python-validity-fedora-$(rpm -E %fedora).repo
rpm-ostree override remove fprintd fprintd-pam --experimental --from repo=copr:copr.fedorainfracloud.org:sneexy:python-validity --install open-fprintd --install fprintd-clients --install fprintd-clients-pam --install python3-validity
sudo systemctl start python3-validity.service
sudo systemctl start open-fprintd.service
sudo systemctl enable open-fprintd-resume.service open-fprintd-suspend.service open-fprintd.service python3-validity.service
# Toggle tailscale
[group('System')]
toggle-tailscale:
Expand Down

0 comments on commit fcc0c26

Please sign in to comment.