diff options
| -rw-r--r-- | raveos-hyprland-theme/PKGBUILD | 2 | ||||
| -rw-r--r-- | raveos-hyprland-theme/theme-data/hypr/config/keybinds.lua | 9 | ||||
| -rw-r--r-- | raveos-hyprland-theme/theme-data/hypr/hyprland.lua | 1 |
3 files changed, 5 insertions, 7 deletions
diff --git a/raveos-hyprland-theme/PKGBUILD b/raveos-hyprland-theme/PKGBUILD index 61551af..648e311 100644 --- a/raveos-hyprland-theme/PKGBUILD +++ b/raveos-hyprland-theme/PKGBUILD @@ -1,6 +1,6 @@ pkgname=raveos-hyprland-theme pkgver=0.0.0 -pkgrel=36 +pkgrel=37 pkgdesc="RaveOS Hyprland theme payload and installer (includes DankMaterialShell)" arch=('any') url="https://raveos.local" diff --git a/raveos-hyprland-theme/theme-data/hypr/config/keybinds.lua b/raveos-hyprland-theme/theme-data/hypr/config/keybinds.lua index c86f87f..4cf94d2 100644 --- a/raveos-hyprland-theme/theme-data/hypr/config/keybinds.lua +++ b/raveos-hyprland-theme/theme-data/hypr/config/keybinds.lua @@ -13,9 +13,6 @@ for i = 1, 10 do hl.bind(mainMod .. " + SHIFT + " .. key, hl.dsp.window.move({ workspace = i })) end --- HyprShell -hl.bind(mainMod .. " + Tab", hl.dsp.exec_cmd("hyprshell switch")) - -- Shell Binds hl.bind("SUPER", hl.dsp.exec_cmd("dms ipc call spotlight toggle")) hl.bind(mainMod .. " + P", hl.dsp.exec_cmd("dms ipc call clipboard toggle")) @@ -37,8 +34,10 @@ hl.bind("CTRL + SUPER + Home", hl.dsp.exec_cmd("reboot")) hl.bind("CTRL + SUPER + End", hl.dsp.exec_cmd("poweroff")) -- Window management -hl.bind(mainMod .. " + Q", hl.dsp.window.kill()) -hl.bind(mainMod .. " + V", hl.dsp.window.float()) +hl.bind(mainMod .. " + Q", hl.dsp.window.kill()) +hl.bind(mainMod .. " + V", hl.dsp.window.float()) +hl.bind(mainMod .. " + Tab", hl.dsp.exec_cmd([[hyprshell socat '{"OpenSwitch":{"reverse":false}}']])) +hl.bind(mainMod .. " + SHIFT + Tab", hl.dsp.exec_cmd([[hyprshell socat '{"OpenSwitch":{"reverse":true}}']]]) -- Move focus with mainMod + arrow keys hl.bind(mainMod .. " + left", hl.dsp.focus({ direction = "left" })) diff --git a/raveos-hyprland-theme/theme-data/hypr/hyprland.lua b/raveos-hyprland-theme/theme-data/hypr/hyprland.lua index fdea1a9..45bed39 100644 --- a/raveos-hyprland-theme/theme-data/hypr/hyprland.lua +++ b/raveos-hyprland-theme/theme-data/hypr/hyprland.lua @@ -24,7 +24,6 @@ hl.on("hyprland.start", function() hl.exec_cmd("dbus-update-activation-environment --systemd --all") hl.exec_cmd("systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP") hl.exec_cmd("/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1") - hl.exec_cmd("hyprswitch init --show-title --size-factor 6 --workspaces-per-row 5 &") hl.exec_cmd("gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'") hl.exec_cmd("bash -c 'wl-paste --watch cliphist store &'") hl.exec_cmd("hyprpaper") |