Compare commits

...

2 commits

Author SHA1 Message Date
5503a6d3c1
Use special workspaces for ipython and btop 2026-05-29 17:38:06 +03:00
c22af8b1cd
Hyprland config formatting 2026-05-29 00:05:00 +03:00

View file

@ -64,9 +64,9 @@ end)
-- Environment variables stored in ~/.config/uwsm/env and ~/.config/uwsm/env-hyprland
---------------------
--- LOOK AND FEEL ---
---------------------
----------------
--- SETTINGS ---
----------------
-- Refer to https://wiki.hypr.land/Configuring/Basics/Variables
@ -180,6 +180,10 @@ hl.config({
}
})
---------------
--- DEVICES ---
---------------
-- https://wiki.hypr.land/Configuring/Basics/Variables/#per-device-input-config
hl.device({
@ -259,7 +263,7 @@ hl.permission({ binary = "/usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland",
-- https://wiki.hypr.land/Configuring/Advanced-and-Cool/Uncommon-tips-and-tricks/#per-layout-bindings
local function layout_bind(bind_table)
return function ()
return function()
local workspace = hl.get_active_special_workspace() or hl.get_active_workspace()
if not workspace then
return
@ -271,7 +275,30 @@ local function layout_bind(bind_table)
end
end
---@param workspace_name string
---@param window_cmd string
---@param window_rules table
local function scratchpad(workspace_name, window_cmd, window_rules)
if window_rules["workspace"] then
window_rules["workspace"] = "special:" .. workspace_name
end
return function()
hl.dispatch(hl.dsp.workspace.toggle_special(workspace_name))
local activeSpecialWorkspace = hl.get_active_special_workspace()
if activeSpecialWorkspace ~= nil and activeSpecialWorkspace.name == "special:" .. workspace_name then
if activeSpecialWorkspace.is_empty then
hl.dispatch(hl.dsp.exec_cmd(window_cmd, window_rules))
end
end
end
end
hl.bind("SUPER + RETURN", hl.dsp.exec_cmd(terminal))
hl.bind("SUPER + ALT + C",
scratchpad("calculator", "kitty calculator ipython --no-banner",
{ float = true, size = { "(monitor_w*0.3)", "(monitor_h*0.4)" }, center = true }))
hl.bind("SUPER + ALT + V", scratchpad("btop", "kitty btop btop", {}))
hl.bind("SUPER + Q", hl.dsp.exec_cmd(browser))
hl.bind("SUPER + W", hl.dsp.window.close())
hl.bind("SUPER + SHIFT + ALT + Q", hl.dsp.exit())
@ -283,13 +310,16 @@ hl.bind("SUPER + SHIFT + F", hl.dsp.window.fullscreen({ mode = "fullscreen" }))
-- Hyprlock
hl.bind("SUPER + CTRL + ALT + L", hl.dsp.exec_cmd(hyprlock))
-- Cliphist
hl.bind("SUPER + V", hl.dsp.exec_cmd("pkill fuzzel || cliphist list | uwsm-app -- fuzzel -d -w 75 --select-index 1 | cliphist decode | wl-copy"))
hl.bind("SUPER + V",
hl.dsp.exec_cmd(
"pkill fuzzel || cliphist list | uwsm-app -- fuzzel -d -w 75 --select-index 1 | cliphist decode | wl-copy"))
-- Hyprshot
hl.bind("SUPER + SHIFT + S", hl.dsp.exec_cmd(hyprshot .. "-m region --clipboard-only"))
hl.bind("SUPER + SHIFT + CTRL + S", hl.dsp.exec_cmd(hyprshot .. "-m window --clipboard-only"))
hl.bind("SUPER + SHIFT + ALT + S", hl.dsp.exec_cmd(hyprshot .. "-m output --clipboard-only"))
hl.bind("SUPER + SHIFT + B",
hl.dsp.exec_cmd("pkill fuzzel || bluetoothctl -- connect \"$(bluetoothctl -- devices Paired | cut -f2- -d ' ' | uwsm-app -- fuzzel -d -l 8 | cut -f1 -d ' ')\""))
hl.dsp.exec_cmd(
"pkill fuzzel || bluetoothctl -- connect \"$(bluetoothctl -- devices Paired | cut -f2- -d ' ' | uwsm-app -- fuzzel -d -l 8 | cut -f1 -d ' ')\""))
hl.bind("SUPER + SHIFT + A", hl.dsp.exec_cmd("sh ~/scripts/select-audio-sink.sh"))
-- Move focus
@ -331,24 +361,30 @@ end
hl.bind("SUPER + SHIFT + CTRL + TAB", hl.dsp.workspace.move({ monitor = "+1" }))
-- Laptop multimedia keys for volume and LCD brightness
hl.bind("XF86AudioRaiseVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%+ && ~/scripts/volume-control.sh"), { locked = true, repeating = true })
hl.bind("XF86AudioLowerVolume", hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%- && ~/scripts/volume-control.sh"), { locked = true, repeating = true })
hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle && ~/scripts/volume-control.sh"), { locked = true, repeating = true })
hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"), { locked = true, repeating = true })
hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl s 5%+"), { locked = true, repeating = true })
hl.bind("XF86MonBrightnessDown",hl.dsp.exec_cmd("brightnessctl s 5%-"), { locked = true, repeating = true })
hl.bind("XF86AudioRaiseVolume",
hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%+ && ~/scripts/volume-control.sh"),
{ locked = true, repeating = true })
hl.bind("XF86AudioLowerVolume",
hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%- && ~/scripts/volume-control.sh"),
{ locked = true, repeating = true })
hl.bind("XF86AudioMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle && ~/scripts/volume-control.sh"),
{ locked = true, repeating = true })
hl.bind("XF86AudioMicMute", hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SOURCE@ toggle"),
{ locked = true, repeating = true })
hl.bind("XF86MonBrightnessUp", hl.dsp.exec_cmd("brightnessctl s 5%+"), { locked = true, repeating = true })
hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd("brightnessctl s 5%-"), { locked = true, repeating = true })
-- Requires playerctl
hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
hl.bind("XF86AudioNext", hl.dsp.exec_cmd("playerctl next"), { locked = true })
hl.bind("XF86AudioPause", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
hl.bind("XF86AudioPlay", hl.dsp.exec_cmd("playerctl play-pause"), { locked = true })
hl.bind("XF86AudioPrev", hl.dsp.exec_cmd("playerctl previous"), { locked = true })
{{- if eq .chezmoi.hostname "wkz-lapdog" }}
-- Stylus
hl.bind("SUPER + F20", hl.dsp.send_shortcut({mods = "CTRL", key = "Z"})) -- Single-click
hl.bind("SUPER + F19", hl.dsp.send_shortcut({mods = "CTRL + SHIFT", key = "Z"})) -- Double-click
hl.bind("SUPER + F20", hl.dsp.send_shortcut({ mods = "CTRL", key = "Z" })) -- Single-click
hl.bind("SUPER + F19", hl.dsp.send_shortcut({ mods = "CTRL + SHIFT", key = "Z" })) -- Double-click
hl.bind("SUPER + F18", hl.dsp.exec_cmd("pkill wvkbd-deskintl || uwsm-app -- wvkbd-deskintl")) -- Press & hold
{{- end }}
@ -363,9 +399,8 @@ hl.bind("SUPER + F18", hl.dsp.exec_cmd("pkill wvkbd-deskintl || uwsm-app -- wvkb
hl.window_rule({
name = "no-border-single-window",
match = {
workspace = "w[1]",
class = "negative:^(steam)$",
title = "negative:Steam"
workspace = "w[1]s[false]",
class = "negative:^(steam)$"
},
border_size = 0
@ -375,7 +410,7 @@ hl.window_rule({
hl.window_rule({
name = "no-border-fullscreen",
match = {
workspace = "f[1-2]",
workspace = "f[1-2]s[false]"
},
border_size = 0
@ -385,44 +420,44 @@ hl.window_rule({
name = "pavucontrol-float",
match = {
class = "^(org.pulseaudio.pavucontrol)$",
title = "^(Volume Control)$",
title = "^(Volume Control)$"
},
float = 1,
center = 1,
size = {
"0.35*monitor_w",
"0.4*monitor_h",
},
"0.4*monitor_h"
}
})
hl.window_rule({
name = "showmethekey-float",
match = {
class = "^(showmethekey-gtk)$",
class = "^(showmethekey-gtk)$"
},
float = 1,
border_size = 0,
border_size = 0
})
hl.window_rule({
name = "steam-popup-float",
match = {
class = "^(steam)$",
title = "negative:Steam",
title = "negative:Steam"
},
float = 1,
float = 1
})
hl.window_rule({
name = "gaming",
match = {
class = "^(steam_app_\\d+|cs2)$",
class = "^(steam_app_\\d+|cs2)$"
},
workspace = 10,
immediate = 1,
fullscreen = 1,
fullscreen = 1
})