♻️ refactor(hypr): changed pyprland.json to pyprland.toml due to recent update

This commit is contained in:
Sergio Laín 2023-11-13 09:47:41 +01:00
parent 7f94e780cc
commit 41ac17b88b
No known key found for this signature in database
GPG key ID: 14C9B8080681777B
2 changed files with 37 additions and 43 deletions

View file

@ -1,43 +0,0 @@
{
"pyprland": {
"plugins": [
"scratchpads",
"expose",
"magnify"
]
},
"scratchpads": {
"volume": {
"command": "pavucontrol",
"unfocus": "hide",
"animation": "fromLeft",
"margin": 20,
"lazy": true
},
"terminal": {
"command": "kitty --class scratchpad"
},
"yazi": {
"command": "kitty --class scratchpad yazi"
},
"gpt": {
"command": "kitty --class scratchpad tgpt -i",
"lazy": true
},
"dots": {
"command": "kitty --class scratchpad yadm enter lazygit",
"lazy": true
},
"btop": {
"command": "kitty --class scratchpad btop",
"lazy": true
},
"bluetooth": {
"command": "blueman-manager",
"animation": "fromRight",
"unfocus": "hide",
"margin": 20,
"lazy": true
}
}
}

View file

@ -0,0 +1,37 @@
[pyprland]
plugins = ["scratchpads", "expose", "magnify"]
[scratchpads.volume]
command = "pavucontrol"
unfocus = "hide"
animation = "fromLeft"
margin = 20
lazy = true
[scratchpads.terminal]
command = "kitty --class scratchpad"
excludes = ["dots"]
[scratchpads.yazi]
command = "kitty --class scratchpad yazi"
lazy = true
[scratchpads.gpt]
command = "kitty --class scratchpad tgpt -i"
lazy = true
[scratchpads.dots]
command = "kitty --class scratchpad yadm enter lazygit"
excludes = ["terminal"]
lazy = true
[scratchpads.btop]
command = "kitty --class scratchpad btop"
lazy = true
[scratchpads.bluetooth]
command = "blueman-manager"
animation = "fromRight"
unfocus = "hide"
margin = 20
lazy = true