mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 04:09:23 +00:00

* Working concept with SDDM * Working concept without SDDM dep * Working concept w/o SDDM and w/ UWSM * Cleanup and UWSM tweaks * Cleanup * Remove call to seamless-login.sh * Don't allow the progress to go backwards * Add refresh to migration
19 lines
668 B
Bash
19 lines
668 B
Bash
echo "Update to use UWSM and seamless login"
|
|
sudo rm /etc/systemd/system/getty@tty1.service.d/override.conf
|
|
sudo rmdir /etc/systemd/system/getty@tty1.service.d/ 2>/dev/null || true
|
|
|
|
if [ -f "$HOME/.bash_profile" ]; then
|
|
# Remove the specific line
|
|
sed -i '/^\[\[ -z \$DISPLAY && \$(tty) == \/dev\/tty1 \]\] && exec Hyprland$/d' "$HOME/.bash_profile"
|
|
echo "Cleaned up .bash_profile"
|
|
fi
|
|
|
|
if [ -f "$HOME/.config/environment.d/fcitx.conf" ]; then
|
|
echo "Removing GTK_IM_MODULE from fcitx config for Wayland..."
|
|
sed -i 's/^GTK_IM_MODULE=fcitx$//' "$HOME/.config/environment.d/fcitx.conf"
|
|
fi
|
|
|
|
omarchy-refresh-plymouth
|
|
|
|
source ~/.local/share/omarchy/install/login.sh
|