From 41ac17b88b96ce3c01e60904437f9978d295e469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Mon, 13 Nov 2023 09:47:41 +0100 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8F=20refactor(hypr):=20changed?= =?UTF-8?q?=20pyprland.json=20to=20pyprland.toml=20due=20to=20recent=20upd?= =?UTF-8?q?ate?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/hypr/pyprland.json | 43 -------------------------------------- .config/hypr/pyprland.toml | 37 ++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 43 deletions(-) delete mode 100644 .config/hypr/pyprland.json create mode 100644 .config/hypr/pyprland.toml diff --git a/.config/hypr/pyprland.json b/.config/hypr/pyprland.json deleted file mode 100644 index 4f1b90f3..00000000 --- a/.config/hypr/pyprland.json +++ /dev/null @@ -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 - } - } -} diff --git a/.config/hypr/pyprland.toml b/.config/hypr/pyprland.toml new file mode 100644 index 00000000..c3afaa71 --- /dev/null +++ b/.config/hypr/pyprland.toml @@ -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