Giter Club home page Giter Club logo

Comments (7)

newyorkthink avatar newyorkthink commented on July 30, 2024 1

Hi @newyorkthink, thanks for reporting.

Can you use the template and try with another packaging system? This is to ease finding the problem and solution (if there is any).

I suspect it's related to electron/electron#33662 and that would mean we are fairly blocked.

I try to change AppRun
image
image
Peek 2024-07-14 16-45

and it work , but the appimage always show loss the ibus , please merge full library file for the team appimage

is my test, please fixed and review it , i just simple operate.

from teams-for-linux.

newyorkthink avatar newyorkthink commented on July 30, 2024

and you need
export QT_IM_MODULE=fcitx
export GTK_IM_MODULE=fcitx

add appimage apprun

from teams-for-linux.

IsmaelMartinez avatar IsmaelMartinez commented on July 30, 2024

Hi @newyorkthink, thanks for reporting.

Can you use the template and try with another packaging system? This is to ease finding the problem and solution (if there is any).

I suspect it's related to electron/electron#33662 and that would mean we are fairly blocked.

from teams-for-linux.

newyorkthink avatar newyorkthink commented on July 30, 2024

Hi @newyorkthink, thanks for reporting.

Can you use the template and try with another packaging system? This is to ease finding the problem and solution (if there is any).

I suspect it's related to electron/electron#33662 and that would mean we are fairly blocked.

you need add this

Detect input method framework

if pgrep -x "fcitx5" > /dev/null; then
export QT_IM_MODULE=fcitx
export GTK_IM_MODULE=fcitx
echo "Using fcitx5"
elif pgrep -x "fcitx" > /dev/null; then
export QT_IM_MODULE=fcitx
export GTK_IM_MODULE=fcitx
echo "Using fcitx"
elif pgrep -x "ibus-daemon" > /dev/null; then
export QT_IM_MODULE=ibus
export GTK_IM_MODULE=ibus
echo "Using ibus"
else
echo "No fcitx, fcitx5, or ibus detected, falling back to default"
fi

from teams-for-linux.

newyorkthink avatar newyorkthink commented on July 30, 2024
# Detect input method framework
if pgrep -x "fcitx5" > /dev/null; then
    export QT_IM_MODULE=fcitx
    export GTK_IM_MODULE=fcitx
    echo "Using fcitx5"
elif pgrep -x "fcitx" > /dev/null; then
    export QT_IM_MODULE=fcitx
    export GTK_IM_MODULE=fcitx
    echo "Using fcitx"
elif pgrep -x "ibus-daemon" > /dev/null; then
    export QT_IM_MODULE=ibus
    export GTK_IM_MODULE=ibus
    echo "Using ibus"
else
    echo "No fcitx, fcitx5, or ibus detected, falling back to default"
fi

from teams-for-linux.

newyorkthink avatar newyorkthink commented on July 30, 2024

in you AppRun

from teams-for-linux.

IsmaelMartinez avatar IsmaelMartinez commented on July 30, 2024

Thanks for the info! I got a few changes on the go, and holidays will slow things down for a bit, but I will try to add it at some point.

If anyone needs it faster, I would appreciate a PR.

I mark it as a 'workaround available'. Thanks for reporting and providing a workaround!

from teams-for-linux.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.