Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/app/quickstart/hyprland/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,18 @@ bind = $mainMod, P, exec, vicinae vicinae://extensions/vicinae/clipboard/history
```

You can do a lot with this: [learn more about deeplinks](/deeplinks).

## Focus window on activation
You may want to focus an application window after vicinae triggers an action related to it.

*For example : using a shortcut action in vicinae that opens a browser tab → Instantly focus the window where the action happened*

You can have this behavior by adding this to your config:

```ini
# ~/.config/hypr/hyprland.conf

misc {
focus_on_activate = true
}
```
17 changes: 17 additions & 0 deletions src/app/quickstart/niri/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,20 @@ You can do a lot with this: [learn more about deeplinks](/deeplinks).
Niri [doesn't currently support blur](https://github.com/YaLTeR/niri/issues/54).

A [patch](https://github.com/YaLTeR/niri/pull/1634) is available, but it remains buggy and doesn't seem to work with layer surfaces.

## Focus window on activation
You may want to focus an application window after vicinae triggers an action related to it.

*For example : using a shortcut action in vicnae that opens a browser tab → Instantly focus the window where the action happened*

You can have this behavior by adding this to your config:

```kdl
// ~/.config/niri/config.kdl

debug {

honor-xdg-activation-with-invalid-serial

}
```