File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ Options:
27
27
--swap swap windows
28
28
29
29
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.
32
32
```
33
33
34
34
## Example in hyprland.conf
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ pub enum Command {
14
14
Prev ( CommandPrev ) ,
15
15
}
16
16
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.
18
18
#[ derive( FromArgs , PartialEq , Debug ) ]
19
19
#[ argh( subcommand, name = "r" ) ]
20
20
pub struct CommandNext {
21
21
#[ argh( switch, description = "swap window" ) ]
22
22
pub swap : bool ,
23
23
}
24
24
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.
26
26
#[ derive( FromArgs , PartialEq , Debug ) ]
27
27
#[ argh( subcommand, name = "l" ) ]
28
28
pub struct CommandPrev {
You can’t perform that action at this time.
0 commit comments