| Server IP : 104.21.84.107 / Your IP : 104.23.243.197 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /etc/X11/Xsession.d/ |
Upload File : |
#!/bin/sh
# vim: set sts=4 expandtab:
# Copyright (C) 2012 Osamu Aoki <[email protected]>
# Copyright (C) 2012 Aron Xu <[email protected]>
# GNU General Public License version 2 or later.
#
# Input Method launcher hook ... see im-launch(1).
# The hook script for dbus-launch is in 75 which changes $STARTUP string.
# This shuld be befor this dbus-launch hook to ensure the working dbus
# for input method. Thus moved from 80 to 70.
IMLAUNCH=/usr/bin/im-launch
if [ "$IM_CONFIG_PHASE" = 1 ]; then
IM_CONFIG_CHECK_ENV=1
export IM_CONFIG_CHECK_ENV
fi
# If already tweaked, keep hands off :-)
# If im-config is removed but not purged, keep hands off :-)
if [ -z "$XMODIFIERS" ] && \
[ -z "$GTK_IM_MODULE" ] && \
[ -z "$QT_IM_MODULE" ] && \
[ -z "$CLUTTER_IM_MODULE" ] && \
[ -z "$SDL_IM_MODULE" ] && \
[ -r /usr/share/im-config/xinputrc.common ]; then
IM_CONFIG_PHASE=1
export IM_CONFIG_PHASE
# initialize all im-config common functions and parameters
. /usr/share/im-config/xinputrc.common
unset TEXTDOMAIN
unset TEXTDOMAINDIR
# source the first found configuration file
if [ -r "$IM_CONFIG_XINPUTRC_USR" ]; then
. $IM_CONFIG_XINPUTRC_USR
elif [ -r "$IM_CONFIG_XINPUTRC_SYS" ]; then
. $IM_CONFIG_XINPUTRC_SYS
fi
# always export variables even for manual configuration.
export XMODIFIERS
export GTK_IM_MODULE
export QT_IM_MODULE
export CLUTTER_IM_MODULE
export SDL_IM_MODULE
fi
# Change $STARTUP string to im-launch while keeping the old $STARTUP string
# as its arguments
if [ "$XDG_SESSION_TYPE" != "wayland" ] && [ -x "$IMLAUNCH" ]; then
STARTUP="$IMLAUNCH $STARTUP"
fi