Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update rollinglog info #691

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
13 changes: 12 additions & 1 deletion pages/Configuring/Using-hyprctl.md
Original file line number Diff line number Diff line change
Expand Up @@ -280,6 +280,18 @@ hyprctl dismissnotify 2 # dismiss the oldest 2 notifications
hyprctl dismissnotify -1 # dismiss all notifications (same as no arguments)
```

### rollinglog

Prints the tail of the log. You can print the log out continuously by adding `--follow` or `-f`.
By default, this will update 20 times per second, but you can also specify a number to change the rate,
if you prefer.

```sh
hyprctl rollinglog # prints the log normally
hyprctl rollinglog --follow # follows the log
hyprctl rollinglog --follow 120 # follows the log, updating 120 times per second
```

## Info

```plain
Expand All @@ -301,7 +313,6 @@ animations - gets the currently configured info about animations and beziers
instances - lists all running instances of Hyprland with their info
layouts - lists all layouts available (including from plugins)
configerrors - lists all current config parsing errors
rollinglog - prints tail of the log. Also supports -f/--follow option
locked - prints whether the current session is locked.
```

Expand Down