aboutsummaryrefslogtreecommitdiffhomepage
path: root/hyprpm/hyprpm.usage
blob: 24e631c54294f45de977420191c5e84a0b1ed923 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
hyprpm [<FLAGS>]... <ARGUMENT>


<FLAGS> ::= (--notify | -n)             "Send a hyprland notification for important events (e.g. load fail)"
        |   (--help | -h)               "Show help menu"
        |   (--verbose | -v)            "Enable too much loggin"
        |   (--force | -f)              "Force an operation ignoring checks (e.g. update -f)"
        |   (--no-shallow | -s)         "Disable shallow cloning of Hyprland sources"
        ;

<ARGUMENT> ::= (add)                    "Install a new plugin repository from git"
        |   (remove <PLUGIN_REPOS>)     "Remove a plugin repository"
        |   (update)                    "Check and update all plugins if needed"
        |   (list)                      "List all installed plugins"
        |   (enable <PLUGINS>)          "Load a plugin"
        |   (disable <PLUGINS>)         "Unload a plugin"
        |   (reload)                    "Reload all plugins"
        ;

<PLUGINS> ::= {{{ hyprpm list | awk '/Plugin/{print $4}' }}};
<PLUGIN_REPOS> ::= {{{ hyprpm list | awk '/Repository/{print $4}' | sed 's/:$//' }}};