File tree Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Expand file tree Collapse file tree 2 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,9 @@ apt install "${APT_PACKAGES[@]}"
42
42
43
43
echo " Installing Snap packages."
44
44
snap install pycharm-professional --classic
45
- snap install telegram-desktop
45
+ # Telegram snap does not work on Kubuntu 25.04
46
+ # https://github.com/telegramdesktop/tdesktop/issues/29437#issuecomment-3131627645
47
+ # snap install telegram-desktop
46
48
47
49
echo " Installing Flatpak packages."
48
50
flatpak install flathub \
@@ -61,6 +63,7 @@ flatpak install flathub \
61
63
org.blender.Blender \
62
64
org.chromium.Chromium \
63
65
org.ferdium.Ferdium \
66
+ org.telegram.desktop \
64
67
org.zotero.Zotero \
65
68
tv.plex.PlexDesktop
66
69
Original file line number Diff line number Diff line change @@ -54,19 +54,23 @@ if command -v flatpak >/dev/null 2>&1; then
54
54
flatpak run com.mattermost.Desktop --hidden &
55
55
echo " Starting Slack"
56
56
flatpak run com.slack.Slack --startup &
57
+ echo " Starting Telegram"
58
+ flatpak run org.telegram.desktop -startintray &
57
59
fi
58
60
59
61
if command -v signal-desktop > /dev/null 2>&1 ; then
60
62
echo " Starting Signal"
61
63
signal-desktop --start-in-tray &
62
64
fi
63
65
64
- if command -v telegram-desktop > /dev/null 2>&1 ; then
65
- echo " Starting Telegram"
66
- # The environment variable fixes compatibility with Kubuntu 25.04
67
- # https://github.com/telegramdesktop/tdesktop/issues/29437#issuecomment-2981043225
68
- QT_QPA_PLATFORM=xcb telegram-desktop -startintray &
69
- fi
66
+ # Telegram snap does not work on Kubuntu 25.04
67
+ # https://github.com/telegramdesktop/tdesktop/issues/29437#issuecomment-3131627645
68
+ # if command -v telegram-desktop >/dev/null 2>&1; then
69
+ # echo "Starting Telegram"
70
+ # # The environment variable fixes compatibility with Kubuntu 25.04
71
+ # # https://github.com/telegramdesktop/tdesktop/issues/29437#issuecomment-2981043225
72
+ # QT_QPA_PLATFORM=xcb telegram-desktop -startintray &
73
+ # fi
70
74
71
75
if [ " $( hostname) " = " agx-z2e-kubuntu" ]; then
72
76
echo " Starting Discord"
You can’t perform that action at this time.
0 commit comments