Slack: Difference between revisions
imported>Patryk27 No edit summary |
m Category:Applications |
||
(5 intermediate revisions by 3 users not shown) | |||
Line 5: | Line 5: | ||
=== NixOS === | === NixOS === | ||
< | <syntaxHighlight lang="nix"> | ||
environment.systemPackages = with pkgs; [ slack ]; | environment.systemPackages = with pkgs; [ slack ]; | ||
</syntaxHighlight> | </syntaxHighlight> | ||
Line 19: | Line 13: | ||
=== Wayland === | === Wayland === | ||
You can enable native Wayland support by launching Slack as: | |||
<syntaxHighlight lang="console"> | <syntaxHighlight lang="console"> | ||
$ slack | $ NIXOS_OZONE_WL=1 slack | ||
</syntaxHighlight> | </syntaxHighlight> | ||
... or | ... or by simply specifying this option globally: | ||
<syntaxHighlight lang="nix"> | |||
environment.sessionVariables.NIXOS_OZONE_WL = "1"; | |||
</syntaxHighlight> | </syntaxHighlight> | ||
If you want to use screen-sharing, you'll have to enable <code>xdg-desktop-portal</code>, too: | |||
< | <syntaxHighlight lang="nix"> | ||
xdg = { | xdg = { | ||
portal = { | portal = { | ||
Line 60: | Line 38: | ||
}; | }; | ||
}; | }; | ||
</ | </syntaxHighlight> | ||
==== Window decorations ==== | |||
If the above configuration leaves you without window decorations you may want to enable this feature as well: | |||
<syntaxHighlight lang="console"> | |||
WaylandWindowDecorations | |||
</syntaxHighlight> | |||
[[Category:Applications]] |
Latest revision as of 12:53, 19 April 2024
Slack is a communication platform with a desktop application based on Electron.
Installation
NixOS
environment.systemPackages = with pkgs; [ slack ];
Tips
Wayland
You can enable native Wayland support by launching Slack as:
$ NIXOS_OZONE_WL=1 slack
... or by simply specifying this option globally:
environment.sessionVariables.NIXOS_OZONE_WL = "1";
If you want to use screen-sharing, you'll have to enable xdg-desktop-portal
, too:
xdg = {
portal = {
enable = true;
extraPortals = with pkgs; [
xdg-desktop-portal-wlr
xdg-desktop-portal-gtk
];
gtkUsePortal = true;
};
};
Window decorations
If the above configuration leaves you without window decorations you may want to enable this feature as well:
WaylandWindowDecorations