Work Browser Launchers
The work launchers isolate a Google Chrome work profile and place work apps on known workspaces. They are used directly by Hypr bindings and indirectly by workspace setup/restore flows.
Bindings
Section titled “Bindings”| Binding | Action |
|---|---|
SUPER+ALT+B | Launch work browser. |
SUPER+SHIFT+S | Launch Slack. |
SUPER+D | Launch Discord. |
Work Chrome profile
Section titled “Work Chrome profile”All three launchers use google-chrome-stable with the work profile data directory:
$HOME/.config/google-chrome-workThe shared Chrome flags include:
--ozone-platform=wayland--force-device-scale-factor=0.8--profile-directory=Profile 1The work browser also sets:
--class=work-browserWork browser
Section titled “Work browser”Launch a new work browser window on workspace 3:
launch-work-browserOpen a URL in the work browser:
launch-work-browser https://example.comOpen as a tab instead of using the workspace-placement helper:
launch-work-browser --tab https://example.comWindow mode uses:
launch-on-workspace 3 '^(work-browser|google-chrome)$' '<chrome command>'Slack and Discord
Section titled “Slack and Discord”Slack launches as a Chrome app window on workspace 1:
launch-work-slackDiscord launches as a Chrome app window on workspace 1:
launch-work-discordThey match these Hyprland classes after launch:
| App | Class regex |
|---|---|
| Slack | ^chrome-app\.slack\.com__client |
| Discord | ^chrome-discord\.com__app |
Relationship to workspace recovery
Section titled “Relationship to workspace recovery”workspace-setup uses equivalent commands for the work slots. workspace-restore also knows how to relaunch Slack, Discord, and the work browser from captured client classes.
If a work app does not restore correctly, test the launcher directly before debugging restore logic.
Troubleshooting
Section titled “Troubleshooting”If a window launches but stays on the current workspace, inspect its class:
hyprctl -j clientsIf Chrome opens the wrong profile, check that no external launcher is overriding --user-data-dir and that the work profile directory exists:
ls ~/.config/google-chrome-workIf --tab opens in an unexpected existing Chrome instance, use the default window mode instead. The --tab path does not use launch-on-workspace; it asks Hyprland to execute the Chrome command directly.