Live data from Hacker News

Unofficial Microsoft Teams client for Linux

github.com

141–150 of 256 posts

Re: Unofficial Microsoft Teams client for Linux

#141
post #84

Please don't, now I can no longer say that I cannot use teams. If you want to use it so bad, go back to Windows...

You can still dodge the bullet by saying this is an “unofficial” client using which may violate an unknown amount of compliance bullet points.

Re: Unofficial Microsoft Teams client for Linux

#142
post #100

Earlier quoted context omitted.

Teams is literally the worst program I have ever used. Whoever designed that interface should be publicly shamed.

As bad as teams is, there is absolutely no comparison to the crap that is slack. Just a number of things I regularly encounter: 1. Slack selecting speakers instead of headphones for call, even though I've used the headphones just before. 2. Calls ringing on my mobile that has been quietly sitting on the desk, instead of on the desktop that I've been typing on. 3. Mobile and desktop client being completely out of sync…

The most amazing ball that was dropped during the pandemic was everyone making video call software better .. except slack, which made it worse.

How the heck do you screw this up so badly?

Re: Unofficial Microsoft Teams client for Linux

#143

The official client is absolutely terrible. But, I've found a much better solution: I tell all my customers Microsoft Teams doesn't work for us and they'll have to pick something else. Kudos for at least trying to address this, MS should hang their head in shame, this is not the hardest problem to solve these days. If we could do it in 1995 they should be able to do it 30 years later.

I use Teams every day (for work, the company basically runs on it) for chat and meetings, and I'm one of those strange people who never really have much problem with it. I can think of one occasion in perhaps the last six months when it crashed and I had to kill and restart it. Otherwise it just sits there on my laptop and does its thing. Same with Outlook etc. So, what am I doing wrong? How do I get the authentic Te…

mIRC and many other clients just sat there and did their thing. 30 years ago. Countless projects have been coordinated via IRC. This isn't a high bar for chat software.

Teams fails every day at its basic purpose. Chats are confusing, the threaded ones being utterly useless. Constantly have to use the mouse to do basic stuff like address people or change channel. Stuff randomly breaks all the time, syntax highlighting seems to break in some new way every other week. It's complete garbage software and a massive regression for those of us who remember proper, simple chat software from decades ago.

Re: Unofficial Microsoft Teams client for Linux

#144
post #76

The official client is absolutely terrible. But, I've found a much better solution: I tell all my customers Microsoft Teams doesn't work for us and they'll have to pick something else. Kudos for at least trying to address this, MS should hang their head in shame, this is not the hardest problem to solve these days. If we could do it in 1995 they should be able to do it 30 years later.

The saddest part is that they copy and pasted Skype, which was a decent program at the time. If you open pamixer and look at applications using audio it still shows up as Skype there. At least as of a few years ago.

In the Microsoft world, before Teams they had Skype for Business, aka MS Lync with a slapped on Skype logo. Complete dumpsterfire.

The regular Skype was much better and also ran on Linux, but I've come to think Microsoft was only ever interested in buying the name.

Re: Unofficial Microsoft Teams client for Linux

#145

Earlier quoted context omitted.

After a cursory glance at commit messages, looks like most of it. Like all AI co-authored code it’s a matter of time before this becomes unmaintainable and abandoned.

I'm deeply fascinated that people can make this work at all. Just yesterday I had a fight with an AI regarding some Python code, the stupid thing wouldn't admit it didn't know how to use something and just kept spitting out the same lines of broken code. Then here is someone writing an entire functional Teams client with Claude.

> Then here is someone writing an entire functional Teams client with Claude.

According to the README it’s just a wrapper of the web version, with some additional stuff on top.

Re: Unofficial Microsoft Teams client for Linux

#146
post #127
post #94

Earlier quoted context omitted.

True! I've been doing this for years on Linux. I use a dedicated Chromium instance in app mode: /usr/bin/chromium --ozone-platform=wayland --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer --user-data-dir=/home/myuser/.config/chromium-ilri --app=https://teams.microsoft.com Works incredibly well (put this in a `.desktop` file with `Exec=` and you can launch it via your desktop's launch…

Would be great if it was also possible to have it open the Team URIs in that App Mode instance instead of the browser itself — I assume it does not.

What kind of URLs does it use? If it's anything with a unique prefix (like Telegram's tg://), you can add it to the desktop file:

  MimeType=x-scheme-handler/foobar;
and run `update-mime-database`.

If not, I would write a shell wrapper and set it as the default browser; something to the effect of:

  #!/usr/bin/bash
  set -eu
  for arg in "$@"; do
    if [[ $arg == *whatever-url-teams-uses.com* ]]; then
      exec gtk-launch teams "$@"
    fi
  done
  exec gtk-launch firefox "$@"
(gtk-launch uses flags from the .desktop file so you don't have to repeat them)

Re: Unofficial Microsoft Teams client for Linux

#147
post #86

Earlier quoted context omitted.

> What good has Microsoft done for the world other than digital pain and suffering? Minesweeper was kinda fun.

growing up as a Mac user in the 80s and 90s I always found it a really dumb game.

I was damning with faint praise.

Re: Unofficial Microsoft Teams client for Linux

#148

Earlier quoted context omitted.

I use Teams every day (for work, the company basically runs on it) for chat and meetings, and I'm one of those strange people who never really have much problem with it. I can think of one occasion in perhaps the last six months when it crashed and I had to kill and restart it. Otherwise it just sits there on my laptop and does its thing. Same with Outlook etc. So, what am I doing wrong? How do I get the authentic Te…

mIRC and many other clients just sat there and did their thing. 30 years ago. Countless projects have been coordinated via IRC. This isn't a high bar for chat software. Teams fails every day at its basic purpose. Chats are confusing, the threaded ones being utterly useless. Constantly have to use the mouse to do basic stuff like address people or change channel. Stuff randomly breaks all the time, syntax highlighting…

mIRC fails at video conferencing, though.

You're comparing apples to oranges.

Re: Unofficial Microsoft Teams client for Linux

#149

Earlier quoted context omitted.

I use Teams every day (for work, the company basically runs on it) for chat and meetings, and I'm one of those strange people who never really have much problem with it. I can think of one occasion in perhaps the last six months when it crashed and I had to kill and restart it. Otherwise it just sits there on my laptop and does its thing. Same with Outlook etc. So, what am I doing wrong? How do I get the authentic Te…

Same for me, it works and allows me to do what I need to do. It does it neither gracefully or efficiently, but I think that's down to it trying to be everything at once, and the UI suffers as a result. The main thing that trips me up is that I often confuse my Outlook calendar for me Teams calendar - because they look almost the same but work completely differently.

I think it might still be a toggleable option but the “new calendar” experience in teams is exactly the same as the outlook web calendar.
Post reply on HN