Skip to content

Commit f46dc9b

Browse files
committed
chore: update flags descriptions
1 parent 24ff2e9 commit f46dc9b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Options:
2727
--swap swap windows
2828

2929
Commands:
30-
r focus into window in right side
31-
l focus into window in left side
30+
r Focus on the next window. If the current window is already at the edge, focus on the next workspace.
31+
l Focus on the previous window. If the current window is already at the edge, focus on the previous workspace.
3232
```
3333

3434
## Example in hyprland.conf

src/cli.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ pub enum Command {
1414
Prev(CommandPrev),
1515
}
1616

17-
/// focus into window in right side
17+
/// Focus on the next window. If the current window is already at the edge, focus on the next workspace.
1818
#[derive(FromArgs, PartialEq, Debug)]
1919
#[argh(subcommand, name = "r")]
2020
pub struct CommandNext {
2121
#[argh(switch, description = "swap window")]
2222
pub swap: bool,
2323
}
2424

25-
/// focus into window in left side
25+
/// Focus on the previous window. If the current window is already at the edge, focus on the previous workspace.
2626
#[derive(FromArgs, PartialEq, Debug)]
2727
#[argh(subcommand, name = "l")]
2828
pub struct CommandPrev {

0 commit comments

Comments
 (0)