diff options
| author | Craig Jennings <c@cjennings.net> | 2026-02-14 13:11:30 -0600 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-02-14 13:11:30 -0600 |
| commit | 2dd49a1526abcc78e9d1548457ae306061ad365f (patch) | |
| tree | 36c904a81909c8e8bd3c2fa10bb5e60b3faac171 /dotfiles/hyprland | |
| parent | 7acff944b1b5eebbe06065182803dcf1ca9f11c6 (diff) | |
fix(pyprland): use correct config path, resize scratchpads
Pyprland 3.x reads ~/.config/pypr/config.toml, not
~/.config/hypr/pyprland.toml. Remove obsolete config, update
scratchpad sizes to 50%x60% in the correct file.
Diffstat (limited to 'dotfiles/hyprland')
| -rw-r--r-- | dotfiles/hyprland/.config/hypr/pyprland.toml | 55 | ||||
| -rw-r--r-- | dotfiles/hyprland/.config/pypr/config.toml | 20 |
2 files changed, 10 insertions, 65 deletions
diff --git a/dotfiles/hyprland/.config/hypr/pyprland.toml b/dotfiles/hyprland/.config/hypr/pyprland.toml deleted file mode 100644 index 64f4948..0000000 --- a/dotfiles/hyprland/.config/hypr/pyprland.toml +++ /dev/null @@ -1,55 +0,0 @@ -# Pyprland Configuration -# https://hyprland-community.github.io/pyprland/ - -[pyprland] -plugins = [ - "scratchpads", - "magnify", -] - -# ============================================================================ -# Magnify -# ============================================================================ -[magnify] -factor = 2 - -# ============================================================================ -# Scratchpads -# ============================================================================ -# Scratchpads use normal workspaces by default (not special workspaces), -# which prevents newly launched apps from being captured by the scratchpad. - -[scratchpads.term] -command = "foot --app-id foot-term tmux" -class = "foot-term" -size = "50% 60%" -position = "25% 20%" -animation = "fromBottom" - -[scratchpads.term2] -command = "foot --app-id foot-term2 tmux" -class = "foot-term2" -size = "50% 60%" -position = "25% 30%" -animation = "fromBottom" - -[scratchpads.audio] -command = "foot --app-id foot-audio pulsemixer" -class = "foot-audio" -size = "50% 60%" -position = "25% 20%" -animation = "fromBottom" - -[scratchpads.monitor] -command = "foot --app-id foot-monitor monitor-dashboard" -class = "foot-monitor" -size = "50% 60%" -position = "25% 20%" -animation = "fromBottom" - -[scratchpads.music] -command = "foot --app-id foot-music ncmpcpp" -class = "foot-music" -size = "60% 60%" -position = "20% 20%" -animation = "fromBottom" diff --git a/dotfiles/hyprland/.config/pypr/config.toml b/dotfiles/hyprland/.config/pypr/config.toml index 9db048f..b105a67 100644 --- a/dotfiles/hyprland/.config/pypr/config.toml +++ b/dotfiles/hyprland/.config/pypr/config.toml @@ -22,29 +22,29 @@ factor = 2 [scratchpads.term] command = "foot --app-id foot-term tmux" class = "foot-term" -size = "60% 60%" -position = "20% 20%" +size = "50% 60%" +position = "25% 20%" animation = "fromBottom" [scratchpads.term2] command = "foot --app-id foot-term2 tmux" class = "foot-term2" -size = "60% 60%" -position = "20% 30%" +size = "50% 60%" +position = "25% 20%" animation = "fromBottom" [scratchpads.audio] command = "foot --app-id foot-audio pulsemixer" class = "foot-audio" -size = "60% 60%" -position = "20% 20%" +size = "50% 60%" +position = "25% 20%" animation = "fromBottom" [scratchpads.monitor] command = "foot --app-id foot-monitor monitor-dashboard" class = "foot-monitor" -size = "60% 60%" -position = "20% 20%" +size = "50% 60%" +position = "25% 20%" animation = "fromBottom" [scratchpads.music] @@ -57,6 +57,6 @@ animation = "fromBottom" [scratchpads.network] command = "foot --app-id foot-network nmtui" class = "foot-network" -size = "60% 60%" -position = "20% 20%" +size = "50% 60%" +position = "25% 20%" animation = "fromBottom" |
