diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-09-08 13:19:48 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-09-08 13:19:48 +0900 |
| commit | 83af555c9775e91990a87aff6a7afda8970b60f1 (patch) | |
| tree | b4b2cf5cfc1bc7704951fb00f1a759a8fb248a28 /internal/state/register.go | |
| parent | 60e48465423ded979dfe8cbb09b5635d6ee2802b (diff) | |
state/print: collect and output state information of all users
The -state flag now outputs state of all users. The old behaviour can be accessed via the -state-current flag, user is selected via -u.
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'internal/state/register.go')
| -rw-r--r-- | internal/state/register.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/internal/state/register.go b/internal/state/register.go index 25c22894..ac502ae8 100644 --- a/internal/state/register.go +++ b/internal/state/register.go @@ -1,5 +1,11 @@ package state +var ( + cleanupCandidate []string + enablements *Enablements + xcbActionComplete bool +) + func RegisterRevertPath(p string) { cleanupCandidate = append(cleanupCandidate, p) } |
