Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ibus package to fix keyboard setting #19

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion hooks/006-add-gdm.chroot
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ apt install --no-install-recommends -y \
gsound-tools \
gir1.2-gsound-1.0 \
libcanberra-pulse \
libsnapd-glib1
libsnapd-glib1\
ibus

# Install a basic Ubuntu session
apt install --no-install-recommends -y \
Expand Down Expand Up @@ -68,6 +69,8 @@ rm /usr/share/dbus-1/services/org.gnome.Terminal.service
rm /usr/share/dbus-1/services/org.freedesktop.impl.portal.desktop.gnome.service
rm /usr/share/dbus-1/services/org.freedesktop.impl.portal.desktop.gtk.service
rm /usr/share/dbus-1/services/org.gnome.Shell.Screencast.service
rm -f /usr/share/dbus-1/services/org.freedesktop.IBus.service
rm -f /usr/share/dbus-1/services/org.freedesktop.portal.IBus.service

# Remove systemd activation in services managed by
# ubuntu-desktop-session snap
Expand All @@ -76,6 +79,9 @@ rm -f /usr/lib/systemd/user/wireplumber*
rm -rf /etc/systemd/user/pipewire*
rm -f /etc/systemd/user/sockets.target.wants/pipewire*
rm -f /etc/systemd/user/default.target.wants/pipewire*
rm -f /usr/lib/systemd/user/org.freedesktop.IBus.session.GNOME.service
rm -f /usr/lib/systemd/user/org.freedesktop.IBus.session.generic.service
rm -f /usr/lib/systemd/user/gnome-session.target.wants/org.freedesktop.IBus.session.GNOME.service

# Disable console-conf, since it interferes with GDM taking over
# /dev/tty1. Due to the ExecStartPre/ExecStopPost commands, we can't
Expand Down