README.SBO 1.5 KB

123456789101112131415161718192021222324252627282930313233343536
  1. =================
  2. ibus auto-startup
  3. =================
  4. The ibus package has an ibus.desktop file in /etc/xdg/autostart/, so if your
  5. desktop environment is xdg compatible and the $XDG_CONFIG_DIRS is not set, ibus
  6. will be automatically launched during startup of the your DE after you have
  7. logged in. If you don't want to remove ibus package and want use other input
  8. method programs (like SCIM), you can place an ibus.desktop file in your personal
  9. autostart directory (most likely ~/.config/autostart/) which contains the key
  10. Hidden=true. You'll also want to make the ibus profile scripts non-executable:
  11. chmod -x /etc/profile.d/ibus.{csh,sh}
  12. If your DE is not xdg compatible (what a pity..), you can add the following
  13. to your shell init files (~/.profile, ~/.bash_profile, ~/.zprofile, etcetera):
  14. if [ -x /usr/bin/ibus-daemon ]; then
  15. /usr/bin/ibus-daemon --xim &
  16. fi
  17. =============================
  18. environment variable settings
  19. =============================
  20. chmod +x /etc/profile.d/ibus.{sh,csh} will enable environment variable settings
  21. at login, but if you have ibus-qt installed, you may also prefer to run
  22. qtconfig and set "Default Input Method" to ibus.
  23. =====================
  24. integration with KDE4
  25. =====================
  26. Add ``--panel=/usr/share/ibus/ui/kimpanel/panel.py`` parameter to ibus when you
  27. run ibus-daemon. For example, you can append it to the "Exec" entry in
  28. /etc/xdg/autostart/ibus.desktop or any .desktop file you created for launching
  29. ibus. Then add "kimpanel" plasmaiod to your panel or dashboard. Restart ibus,
  30. you will see it shining out there.