Skip to content

Commit

Permalink
update, rebase to sericea
Browse files Browse the repository at this point in the history
  • Loading branch information
gerblesh committed Jul 26, 2023
1 parent a7f390e commit 5484b1d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 11 deletions.
5 changes: 4 additions & 1 deletion recipe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: usway

# The native container image to build on top of.
# Warning: Non-uBlue images might not work properly, due to missing components.
base-image: quay.io/fedora-ostree-desktops/base
base-image: quay.io/fedora-ostree-desktops/sericea

# What Fedora version to use. Use an explicit version or `latest`.
# If you use `latest`, you will be automatically updated to the next major
Expand Down Expand Up @@ -135,6 +135,9 @@ rpm:
# - fontawesome5-free-fonts
# replaced with distrobox
- toolbox
- sway-config-fedora
- dunst
- rofi-wayland

# Configuration for the "first boot" experience, which is available after login.
firstboot:
Expand Down
1 change: 1 addition & 0 deletions scripts/post/setup-systemd-services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ echo "Setup systemd units"
systemctl enable getty@tty1
systemctl disable rpm-ostree-countme.service
systemctl enable power-profiles-daemon

2 changes: 1 addition & 1 deletion usr/bin/emoji-menu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ filter='.[] | (.emoji + " " + .description + " (" + (.aliases | join(", ")) + ")
sel="$(jq -r "$filter" <"$data_file" | fuzzel --dmenu --prompt " Select Emoji: " | cut -d ' ' -f 1 | tr -d '\n')"
if [ -n "$sel" ]; then
wl-copy "$sel"
wtype "$sel"
sleep 0.2 && wtype "$sel"
fi
9 changes: 0 additions & 9 deletions usr/share/ublue-os/firstboot/launcher/login-profile.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Only process users with home directories, but skip the "root" user.
if [ "$(id -u)" != "0" ] && [ ! -z "$HOME" ] && [ -d "$HOME" ]; then

if [ ! -f "$HOME"/.config/ublue-firstboot ]; then
echo "Starting First Time Setup, Please wait..."
# copy config files
Expand All @@ -10,14 +9,6 @@ if [ "$(id -u)" != "0" ] && [ ! -z "$HOME" ] && [ -d "$HOME" ]; then
echo "Setting up just"
mkdir -p "$HOME"/.config/just
cp -r /usr/share/ublue-os/just/custom.just "$HOME"/.config/just/justfile

fi

if [[ -z $DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
echo "Starting Sway"
source "$HOME"/.profile
sway > /dev/null
fi

fi

0 comments on commit 5484b1d

Please sign in to comment.