blob: 1ab8bdbf0b2624d3b40171f4c45a1da4e8ccf2ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
=======
hyprctl
=======
----------------------------------------------------------------
Utility for controlling parts of Hyprland from a CLI or a script
----------------------------------------------------------------
:Date: 15 Jul 2022
:Copyright: Copyright (c) 2022, vaxerski
:Version: 0.7.1beta
:Manual section: 1
:Manual group: hyprctl
SYNOPSIS
========
``hyprctl`` [(opt)flags] [command] [(opt)args]
DESCRIPTION
===========
``hyprctl`` is a utility for controlling some parts of the compositor from a CLI or a script.
If you install with make install, or any package, it should automatically be installed.
COMMANDS
========
Control
``dispatch``
Call a dispatcher with an argument.
An argument must be present.
For dispatchers without parameters it can be anything.
Returns: `ok` on success, and an error message on failure.
Examples:
``hyprctl`` `dispatch exec kitty`
``hyprctl`` `dispatch pseudo x`
``keyword``
Set a config keyword dynamically.
Returns: `ok` on success, and an error message on failure.
Examples:
``hyprctl`` `keyword bind SUPER,0,pseudo`
``hyprctl`` `keyword general:border_size 10`
``reload``
Force a reload of the config file.
``kill``
Enter kill mode, where you can kill an app by clicking on it.
You can exit by pressing ESCAPE.
Info
``version``
Prints the Hyprland version, flags, commit and branch of build.
``monitors``
Lists all the outputs with their properties.
``workspaces``
Lists all workspaces with their properties.
``clients``
Lists all windows with their properties.
``devices``
Lists all connected input devices.
``activewindow``
Returns the active window name.
``layers``
Lists all the layers.
``splash``
Returns the current random splash.
OPTIONS
=======
--batch
Specify a batch of commands to execute.
Example:
``hyprctl`` `--batch "keyword general:border_size 2 ; keyword general:gaps_out 20"`
`;` separates the commands.
-j
Outputs information in JSON.
BUGS
====
Submit bug reports and feature requests online at:
<`https://github.com/hyprwm/hyprctl/issues`>
SEE ALSO
========
Sources at: <`https://github.com/hyprwm/hyprctl`>
AUTHORS
=======
Vaxerski <`https://github.com/vaxerski`>
|