# This script is meant to be sourced. # It's not for directly running. function prepare_systemd_user_service(){ if [[ ! -e "/usr/lib/systemd/user/ydotool.service" ]]; then x sudo ln -s /usr/lib/systemd/{system,user}/ydotool.service fi } function setup_user_group(){ if [[ -z $(getent group i2c) ]] && [[ "$OS_GROUP_ID" != "fedora" ]]; then # On Fedora this is not needed. Tested with desktop computer with NVIDIA video card. x sudo groupadd i2c fi if [[ "$OS_GROUP_ID" == "fedora" ]]; then x sudo usermod -aG video,input "$(whoami)" else x sudo usermod -aG video,i2c,input "$(whoami)" fi } ##################################################################################### # These python packages are installed using uv into the venv (virtual environment). Once the folder of the venv gets deleted, they are all gone cleanly. So it's considered as setups, not dependencies. showfun install-python-packages v install-python-packages showfun setup_user_group v setup_user_group if [[ ! -z $(systemctl --version) ]]; then # For Fedora, uinput is required for the virtual keyboard to function, and udev rules enable input group users to utilize it. if [[ "$OS_GROUP_ID" == "fedora" ]]; then v bash -c "echo uinput | sudo tee /etc/modules-load.d/uinput.conf" v bash -c 'echo SUBSYSTEM==\"misc\", KERNEL==\"uinput\", MODE=\"0660\", GROUP=\"input\" | sudo tee /etc/udev/rules.d/99-uinput.rules' else v bash -c "echo i2c-dev | sudo tee /etc/modules-load.d/i2c-dev.conf" fi # TODO: find a proper way for enable Nix installed ydotool. When running `systemctl --user enable ydotool, it errors "Failed to enable unit: Unit ydotool.service does not exist". if [[ ! "${INSTALL_VIA_NIX}" == true ]]; then if [[ "$OS_GROUP_ID" == "fedora" ]]; then v prepare_systemd_user_service fi # When $DBUS_SESSION_BUS_ADDRESS and $XDG_RUNTIME_DIR are empty, it commonly means that the current user has been logged in with `su - user` or `ssh user@hostname`. In such case `systemctl --user enable ` is not usable. It should be `sudo systemctl --machine=$(whoami)@.host --user enable ` instead. if [[ ! -z "${DBUS_SESSION_BUS_ADDRESS}" ]]; then v systemctl --user enable ydotool --now else v sudo systemctl --machine=$(whoami)@.host --user enable ydotool --now fi fi v sudo systemctl enable bluetooth --now elif [[ ! -z $(openrc --version) ]]; then v bash -c "echo 'modules=i2c-dev' | sudo tee -a /etc/conf.d/modules" v sudo rc-update add modules boot v sudo rc-update add ydotool default v sudo rc-update add bluetooth default x sudo rc-service ydotool start x sudo rc-service bluetooth start else printf "${STY_RED}" printf "====================INIT SYSTEM NOT FOUND====================\n" printf "${STY_RST}" pause fi if [[ "$OS_GROUP_ID" == "gentoo" ]]; then v sudo chown -R $(whoami):$(whoami) ~/.local/ fi v gsettings set org.gnome.desktop.interface font-name 'Rubik 11' v gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark' v kwriteconfig6 --file kdeglobals --group KDE --key widgetStyle Darkly