Skip to content

Commit

Permalink
pull custom.just from @b-/bluefin/patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
b- committed Oct 13, 2023
1 parent a4ffc72 commit 65a7f5f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions just/custom.just
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,8 @@ distrobox-universal:

# Switch to the fish shell
fish:
chsh -s /usr/bin/fish
sudo usermod $USER --shell /usr/bin/fish
printf "${USER}'s shell is now %s." "$(cat /etc/passwd | grep ":$UID:" | cut '-d:' '-f7')"

# Install recommended GNOME extensions
gnome-extensions:
Expand Down Expand Up @@ -155,7 +156,8 @@ nix-devbox-global:
podmansh:
sudo mkdir -p /etc/containers/systemd/users/${UID}
sudo cp /usr/share/ublue-os/quadlets/podmansh.container /etc/containers/systemd/users/${UID}/podmansh.container
sudo lchsh $USER /usr/bin/podmansh
sudo usermod $USER --shell /usr/bin/podmansh
printf "${USER}'s shell is now %s." "$(cat /etc/passwd | grep ":$UID:" | cut '-d:' '-f7')"
podman pull ghcr.io/ublue-os/ubuntu-toolbox:latest

systemctl --user daemon-reload
Expand Down Expand Up @@ -215,9 +217,10 @@ yafti:

# Switch to the zsh shell
zsh:
chsh -s /usr/bin/zsh
sudo usermod $USER --shell /usr/bin/zsh
printf "${USER}'s shell is now %s." "$(cat /etc/passwd | grep ":$UID:" | cut '-d:' '-f7')"

docker:
sudo systemctl enable --now docker
sudo usermod -aG docker $USER
newgrp docker
newgrp docker

0 comments on commit 65a7f5f

Please sign in to comment.