Updated Getting started (markdown)
parent
a54583ef83
commit
75c29039aa
1 changed files with 24 additions and 25 deletions
|
@ -1,28 +1,27 @@
|
||||||
❯ git diff
|
## Installation
|
||||||
diff --git a/pyprland/plugins/scratchpads.py b/pyprland/plugins/scratchpads.py
|
|
||||||
index 9118f18..36aaa34 100644
|
|
||||||
--- a/pyprland/plugins/scratchpads.py
|
|
||||||
+++ b/pyprland/plugins/scratchpads.py
|
|
||||||
@@ -152,7 +152,7 @@ class Extension(Plugin):
|
|
||||||
|
|
||||||
# not known yet
|
Use the python package manager:
|
||||||
for name in new_scratches:
|
|
||||||
- if not self.scratches[name].conf.get("lazy", False):
|
|
||||||
+ if not self.scratches[name].conf.get("lazy", True):
|
|
||||||
self.start_scratch_command(name)
|
|
||||||
|
|
||||||
def start_scratch_command(self, name: str) -> None:
|
```
|
||||||
❯ git commit .
|
pip install pyprland
|
||||||
❯ tig
|
```
|
||||||
❯ git diff
|
|
||||||
diff --git a/pyprland/plugins/scratchpads.py b/pyprland/plugins/scratchpads.py
|
|
||||||
index 9118f18..36aaa34 100644
|
|
||||||
--- a/pyprland/plugins/scratchpads.py
|
|
||||||
+++ b/pyprland/plugins/scratchpads.py
|
|
||||||
@@ -152,7 +152,7 @@ class Extension(Plugin):
|
|
||||||
|
|
||||||
# not known yet
|
If you run archlinux, you can also find it on AUR: `yay -S pyprland`
|
||||||
for name in new_scratches:
|
|
||||||
|
Don't forget to start the process with hyprland, adding to `hyprland.conf`:
|
||||||
|
|
||||||
|
```
|
||||||
|
exec-once = pypr
|
||||||
|
```
|
||||||
|
|
||||||
|
## Getting started
|
||||||
|
|
||||||
|
Create a configuration file in `~/.config/hypr/pyprland.json` enabling a list of plugins, each plugin may have its own configuration needs, eg:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"pyprland": {
|
||||||
|
"plugins": [
|
||||||
"scratchpads",
|
"scratchpads",
|
||||||
"monitors",
|
"monitors",
|
||||||
"workspaces_follow_focus"
|
"workspaces_follow_focus"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue