repaired cursor
This commit is contained in:
parent
df94405cef
commit
42df7f684a
16 changed files with 162 additions and 108 deletions
|
|
@ -27,10 +27,13 @@ hl.bind("CTRL + SUPER + H", hl.dsp.window.move({ direction = "left" }))
|
|||
hl.bind("CTRL + SUPER + K", hl.dsp.window.move({ direction = "up" }))
|
||||
hl.bind("CTRL + SUPER + J", hl.dsp.window.move({ direction = "down" }))
|
||||
-- move to monitor
|
||||
hl.bind("SUPER + A", hl.dsp.focus({ monitor = monitorA }))
|
||||
hl.bind("SUPER + B", hl.dsp.focus({ monitor = monitorB }))
|
||||
hl.bind("ALT + A", hl.dsp.focus({ monitor = monitorA }))
|
||||
hl.bind("ALT + B", hl.dsp.focus({ monitor = monitorB }))
|
||||
hl.bind("ALT + B", hl.dsp.focus({ monitor = monitorC }))
|
||||
hl.bind("CTRL + SUPER + A", hl.dsp.window.move({ monitor = monitorA }))
|
||||
hl.bind("CTRL + SUPER + B", hl.dsp.window.move({ monitor = monitorB }))
|
||||
hl.bind("CTRL + SUPER + B", hl.dsp.window.move({ monitor = monitorC }))
|
||||
|
||||
-- change workspace
|
||||
hl.bind("SUPER + L", hl.dsp.focus({ workspace = "r+1" }))
|
||||
hl.bind("SUPER + H", hl.dsp.focus({ workspace = "r-1" }))
|
||||
|
|
|
|||
|
|
@ -7,3 +7,7 @@ hl.env("NVD_BACKEND", "direct")
|
|||
hl.env("ELECTRON_OZONE_PLATFORM_HINT", "auto")
|
||||
hl.env("SCREENSHOT_DIR", "$home/Screenshots")
|
||||
hl.env("GDK_SCALE", 1)
|
||||
hl.env("XCURSOR_THEME", "Bibata-Modern-Ice")
|
||||
hl.env("XCURSOR_SIZE", 24)
|
||||
hl.env("HYPRCURSOR_THEME", "Bibata-Modern-Ice")
|
||||
hl.env("HYPRCURSOR_SIZE", 24)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,14 @@
|
|||
hl.misc({
|
||||
force_default_wallpaper = 0,
|
||||
disable_hyprland_logo = true,
|
||||
disable_splash_rendering = true,
|
||||
vrr = 1,
|
||||
hl.config({
|
||||
misc = {
|
||||
force_default_wallpaper = 0,
|
||||
disable_hyprland_logo = true,
|
||||
disable_splash_rendering = true,
|
||||
vrr = 1,
|
||||
},
|
||||
})
|
||||
hl.config({
|
||||
cursor = {
|
||||
enable_hyprcursor = false,
|
||||
no_hardware_cursors = true,
|
||||
},
|
||||
})
|
||||
|
|
|
|||
|
|
@ -4,7 +4,6 @@ hl.on("hyprland.start", function()
|
|||
hl.exec_cmd("wl-paste --type image --watch cliphist store")
|
||||
hl.exec_cmd("systemctl --user start hyprpolkitagent")
|
||||
hl.exec_cmd("hyprctl setcursor Bibata-Modern-Ice 24")
|
||||
hl.exec_cmd("./~/nixos-config/dotfiles/hypr/unlockbridge.sh")
|
||||
-- hl.exec_cmd("noctalia-shell")
|
||||
-- hl.exec_cmd("hyprpanel")
|
||||
-- hl.exec_cmd("hyprsunset")
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ hl.config({
|
|||
master = {
|
||||
new_status = "slave",
|
||||
orientation = "left",
|
||||
mfact = "0.7",
|
||||
mfact = "0.6",
|
||||
},
|
||||
scrolling = {
|
||||
fullscreen_on_one_column = true,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue