Compare commits

..

3 Commits

Author SHA1 Message Date
b45ba4f751 loads of stuff but still not done yet 2026-05-12 20:06:37 +01:00
c93ddf3818 some nonsense 2026-05-12 11:47:52 +01:00
f3be814bca everything is gone 2026-05-12 10:53:40 +01:00
23 changed files with 594 additions and 574 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.session

10
.luarc.json Normal file
View File

@@ -0,0 +1,10 @@
{
"workspace": {
"library": [
"/nix/store/k1jc5h9ls6j600hcpjciqn0s29whas63-hyprland-0.55.0+date=2026-05-11_5e441ca/share/hypr/stubs/hl.meta.lua"
]
},
"diagnostics": {
"globals": ["hl"]
}
}

View File

@@ -1,19 +0,0 @@
animations {
enabled = true
bezier = heavyOvershoot, 0.53, 0.51, 0.3, 1.22
bezier = lightOvershoot, 0.33, 0.61, 0.63, 1.19
bezier = smoothSnap, 0.32, 0.51, 0.44, 1
bezier = smoothIn, 0.25, 1, 0.5, 1
bezier = smoothOutOvershoot, 0.46, -0.25, 0.81, 0.51
animation = workspaces, 1, 2.5, heavyOvershoot, slidefade 30%
animation = specialWorkspace, 1, 2, smoothIn, slidefadevert -80%
animation = specialWorkspaceOut, 1, 1.7, smoothOutOvershoot, slidefadevert -80%
animation = windows, 1, 2, smoothIn, slide right
animation = windowsMove, 1, 2, smoothSnap
animation = windowsOut, 1, 4, heavyOvershoot, popin 30%
animation = fade, 1, 2, smoothIn
}

21
autoload.lua Normal file
View File

@@ -0,0 +1,21 @@
-- ~/.config/hypr/autoload.lua
local modules = os.getenv("HOME") .. "/.config/hypr/modules"
local p = io.popen('find -L "' .. modules .. '" -name "*.lua" -type f | sort')
if not p then
return
end
for path in p:lines() do
local ok, err = pcall(dofile, path)
if not ok then
hl.notification.create({
text = "autoload: " .. path .. "\n" .. tostring(err),
timeout = 8000,
icon = "warning",
})
end
end
p:close()

View File

@@ -1,58 +0,0 @@
# Script Path
$scrPath = ~/.config/scripts
# Assign apps
$term = kitty
$file = nemo
$browser = firefox
$launcher = $scrPath/otter-launch.sh
# Window/Session actions
bind = $mainMod, backspace, exec, $scrPath/dontkillsteam.sh # close focused window
bind = $mainMod, d, exec, $launcher
# Super key to drag windows
binds {
drag_threshold = 10
scroll_event_delay = 0
}
bindm = $submod, mouse:272, movewindow
bindr = $submod, mouse:272, layoutmsg, promote
bindc = $submod, mouse:272, togglefloating
# Resize floating window with scrollwheels
bind = $submod, mouse_down, resizeactive, 0 -30
bind = $submod, mouse_up, resizeactive, 0 30
bind = $submod, mouse_left, resizeactive, 30 0
bind = $submod, mouse_right, resizeactive, -30 0
bind = $submod, space, togglefloating, # toggle the window between focus and float
# Screenshot/Screencapture
bind = Super+SHIFT, S, exec, grimblast copy area
# Move/Change window focus
bind = $mainMod, h, layoutmsg, focus l
bind = $mainMod, l, layoutmsg, focus r
bind = $mainMod, k, movefocus, u
bind = $mainMod, j, movefocus, d
# Resize floating windows with keyboard
bind = $submod ctrl, h, resizeactive, -50 0
bind = $submod ctrl, l, resizeactive, 50 0
bind = $submod ctrl, k, resizeactive, 0 50
bind = $submod ctrl, j, resizeactive, 0 -50
# Change window positions with keyboard
bind = $mainMod SHIFT, H, swapwindow, l
bind = $mainMod SHIFT, L, swapwindow, r
bind = $mainMod SHIFT, K, swapwindow, u
bind = $mainMod SHIFT, J, swapwindow, d
# Move/Switch to special workspace (scratchpad)
bind = $mainMod, MINUS, togglespecialworkspace, scratch
bind = $mainMod SHIFT, MINUS, movetoworkspacesilent, special:scratch
# Music workspace
bind = $mainMod, m, togglespecialworkspace, music
source = ~/.config/hypr/binds-local.conf

BIN
cat.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.5 KiB

View File

@@ -1,8 +0,0 @@
source = ~/.config/hypr/rules.conf
source = ~/.config/hypr/local.conf
source = ~/.config/hypr/binds.conf
source = ~/.config/hypr/style.conf
source = ~/.config/hypr/animations.conf
source = ~/.config/hypr/input.conf
source = ~/.config/hypr/windows.conf
source = ~/.config/hypr/startup.conf

287
hyprland.lua Normal file
View File

@@ -0,0 +1,287 @@
local handle = io.popen("hostname")
Hostname = "unknown" -- Default fallback
if handle then
local result = handle:read("*l") -- Read the first line
handle:close()
if result then
Hostname = result:gsub("%s+", "") -- Remove whitespace/newlines
end
end
if Hostname == "HACKSTATION" then
hl.bind("SUPER + c", hl.dsp.exec_cmd("dunstify " .. tostring(Hostname)))
end
require("autoload")
-- This is an example Hyprland Lua config file.
-- Refer to the wiki for more information.
-- https://wiki.hypr.land/Configuring/Start/
-- Please note not all available settings / options are set here.
-- For a full list, see the wiki
-- You can (and should!!) split this configuration into multiple files
-- Create your files separately and then require them like this:
-- require("myColors")
------------------
---- MONITORS ----
------------------
-- See https://wiki.hypr.land/Configuring/Basics/Monitors/
hl.monitor({
output = "",
mode = "preferred",
position = "auto",
scale = "auto",
})
---------------------
---- MY PROGRAMS ----
---------------------
-- Set programs that you use
local terminal = "kitty"
local fileManager = "dolphin"
local menu = "hyprlauncher"
-------------------
---- AUTOSTART ----
-------------------
-- See https://wiki.hypr.land/Configuring/Basics/Autostart/
-- Autostart necessary processes (like notifications daemons, status bars, etc.)
-- Or execute your favorite apps at launch like this:
--
-- hl.on("hyprland.start", function ()
-- hl.exec_cmd(terminal)
-- hl.exec_cmd("nm-applet")
-- hl.exec_cmd("waybar & hyprpaper & firefox")
-- end)
-------------------------------
---- ENVIRONMENT VARIABLES ----
-------------------------------
-- See https://wiki.hypr.land/Configuring/Advanced-and-Cool/Environment-variables/
hl.env("XCURSOR_SIZE", "24")
hl.env("HYPRCURSOR_SIZE", "24")
-----------------------
----- PERMISSIONS -----
-----------------------
-- See https://wiki.hypr.land/Configuring/Advanced-and-Cool/Permissions/
-- Please note permission changes here require a Hyprland restart and are not applied on-the-fly
-- for security reasons
-- hl.config({
-- ecosystem = {
-- enforce_permissions = true,
-- },
-- })
-- hl.permission("/usr/(bin|local/bin)/grim", "screencopy", "allow")
-- hl.permission("/usr/(lib|libexec|lib64)/xdg-desktop-portal-hyprland", "screencopy", "allow")
-- hl.permission("/usr/(bin|local/bin)/hyprpm", "plugin", "allow")
-----------------------
---- LOOK AND FEEL ----
-----------------------
-- Refer to https://wiki.hypr.land/Configuring/Basics/Variables/
-- Default curves and animations, see https://wiki.hypr.land/Configuring/Advanced-and-Cool/Animations/
hl.curve("easeOutQuint", { type = "bezier", points = { { 0.23, 1 }, { 0.32, 1 } } })
hl.curve("easeInOutCubic", { type = "bezier", points = { { 0.65, 0.05 }, { 0.36, 1 } } })
hl.curve("linear", { type = "bezier", points = { { 0, 0 }, { 1, 1 } } })
hl.curve("almostLinear", { type = "bezier", points = { { 0.5, 0.5 }, { 0.75, 1 } } })
hl.curve("quick", { type = "bezier", points = { { 0.15, 0 }, { 0.1, 1 } } })
-- Default springs
hl.curve("easy", { type = "spring", mass = 1, stiffness = 71.2633, dampening = 15.8273644 })
hl.animation({ leaf = "global", enabled = true, speed = 10, bezier = "default" })
hl.animation({ leaf = "border", enabled = true, speed = 5.39, bezier = "easeOutQuint" })
hl.animation({ leaf = "windows", enabled = true, speed = 4.79, spring = "easy" })
hl.animation({ leaf = "windowsIn", enabled = true, speed = 4.1, spring = "easy", style = "popin 87%" })
hl.animation({ leaf = "windowsOut", enabled = true, speed = 1.49, bezier = "linear", style = "popin 87%" })
hl.animation({ leaf = "fadeIn", enabled = true, speed = 1.73, bezier = "almostLinear" })
hl.animation({ leaf = "fadeOut", enabled = true, speed = 1.46, bezier = "almostLinear" })
hl.animation({ leaf = "fade", enabled = true, speed = 3.03, bezier = "quick" })
hl.animation({ leaf = "layers", enabled = true, speed = 3.81, bezier = "easeOutQuint" })
hl.animation({ leaf = "layersIn", enabled = true, speed = 4, bezier = "easeOutQuint", style = "fade" })
hl.animation({ leaf = "layersOut", enabled = true, speed = 1.5, bezier = "linear", style = "fade" })
hl.animation({ leaf = "fadeLayersIn", enabled = true, speed = 1.79, bezier = "almostLinear" })
hl.animation({ leaf = "fadeLayersOut", enabled = true, speed = 1.39, bezier = "almostLinear" })
hl.animation({ leaf = "workspaces", enabled = true, speed = 1.94, bezier = "almostLinear", style = "fade" })
hl.animation({ leaf = "workspacesIn", enabled = true, speed = 1.21, bezier = "almostLinear", style = "fade" })
hl.animation({ leaf = "workspacesOut", enabled = true, speed = 1.94, bezier = "almostLinear", style = "fade" })
hl.animation({ leaf = "zoomFactor", enabled = true, speed = 7, bezier = "quick" })
-- Ref https://wiki.hypr.land/Configuring/Basics/Workspace-Rules/
-- "Smart gaps" / "No gaps when only"
-- uncomment all if you wish to use that.
-- hl.workspace_rule({ workspace = "w[tv1]", gaps_out = 0, gaps_in = 0 })
-- hl.workspace_rule({ workspace = "f[1]", gaps_out = 0, gaps_in = 0 })
-- hl.window_rule({
-- name = "no-gaps-wtv1",
-- match = { float = false, workspace = "w[tv1]" },
-- border_size = 0,
-- rounding = 0,
-- })
-- hl.window_rule({
-- name = "no-gaps-f1",
-- match = { float = false, workspace = "f[1]" },
-- border_size = 0,
-- rounding = 0,
-- })
-- See https://wiki.hypr.land/Configuring/Layouts/Dwindle-Layout/ for more
hl.config({
dwindle = {
preserve_split = true, -- You probably want this
},
})
-- See https://wiki.hypr.land/Configuring/Layouts/Master-Layout/ for more
hl.config({
master = {
new_status = "master",
},
})
-- See https://wiki.hypr.land/Configuring/Layouts/Scrolling-Layout/ for more
hl.config({
scrolling = {
fullscreen_on_one_column = true,
},
})
----------------
---- MISC ----
----------------
hl.config({
misc = {
force_default_wallpaper = -1, -- Set to 0 or 1 to disable the anime mascot wallpapers
disable_hyprland_logo = false, -- If true disables the random hyprland logo / anime girl background. :(
},
})
---------------------
---- KEYBINDINGS ----
---------------------
local mainMod = "SUPER" -- Sets "Windows" key as main modifier
-- Example binds, see https://wiki.hypr.land/Configuring/Basics/Binds/ for more
-- Move focus with mainMod + arrow keys
hl.bind(mainMod .. " + h", hl.dsp.focus({ direction = "left" }))
hl.bind(mainMod .. " + l", hl.dsp.focus({ direction = "right" }))
hl.bind(mainMod .. " + k", hl.dsp.focus({ direction = "up" }))
hl.bind(mainMod .. " + j", hl.dsp.focus({ direction = "down" }))
-- Switch workspaces with mainMod + [0-9]
-- Move active window to a workspace with mainMod + SHIFT + [0-9]
for i = 1, 10 do
local key = i % 10 -- 10 maps to key 0
hl.bind(mainMod .. " + " .. key, hl.dsp.focus({ workspace = i }))
hl.bind(mainMod .. " + SHIFT + " .. key, hl.dsp.window.move({ workspace = i }))
end
-- Example special workspace (scratchpad)
hl.bind(mainMod .. " + S", hl.dsp.workspace.toggle_special("magic"))
hl.bind(mainMod .. " + SHIFT + S", hl.dsp.window.move({ workspace = "special:magic" }))
-- Scroll through existing workspaces with mainMod + scroll
hl.bind(mainMod .. " + mouse_down", hl.dsp.focus({ workspace = "e+1" }))
hl.bind(mainMod .. " + mouse_up", hl.dsp.focus({ workspace = "e-1" }))
-- Move/resize windows with mainMod + LMB/RMB and dragging
hl.bind(mainMod .. " + mouse:272", hl.dsp.window.drag(), { mouse = true })
hl.bind(mainMod .. " + mouse:273", hl.dsp.window.resize(), { mouse = true })
-- Laptop multimedia keys for volume and LCD brightness
hl.bind(
"XF86AudioRaiseVolume",
hl.dsp.exec_cmd("wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+"),
{ locked = true, repeating = true }
)
hl.bind(
"XF86AudioLowerVolume",
hl.dsp.exec_cmd("wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%-"),
{ locked = true, repeating = true }
)
hl.bind(
"XF86AudioMute",
hl.dsp.exec_cmd("wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle"),
{ 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 -e4 -n2 set 5%+"), { locked = true, repeating = true })
hl.bind("XF86MonBrightnessDown", hl.dsp.exec_cmd("brightnessctl -e4 -n2 set 5%-"), { locked = true, repeating = true })
-- Requires playerctl
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 })
--------------------------------
---- WINDOWS AND WORKSPACES ----
--------------------------------
-- See https://wiki.hypr.land/Configuring/Basics/Window-Rules/
-- and https://wiki.hypr.land/Configuring/Basics/Workspace-Rules/
-- Example window rules that are useful
local suppressMaximizeRule = hl.window_rule({
-- Ignore maximize requests from all apps. You'll probably like this.
name = "suppress-maximize-events",
match = { class = ".*" },
suppress_event = "maximize",
})
-- suppressMaximizeRule:set_enabled(false)
hl.window_rule({
-- Fix some dragging issues with XWayland
name = "fix-xwayland-drags",
match = {
class = "^$",
title = "^$",
xwayland = true,
float = true,
fullscreen = false,
pin = false,
},
no_focus = true,
})
-- Layer rules also return a handle.
-- local overlayLayerRule = hl.layer_rule({
-- name = "no-anim-overlay",
-- match = { namespace = "^my-overlay$" },
-- no_anim = true,
-- })
-- overlayLayerRule:set_enabled(false)
-- Hyprland-run windowrule
hl.window_rule({
name = "move-hyprland-run",
match = { class = "hyprland-run" },
move = "20 monitor_h-120",
float = true,
})

View File

@@ -1,109 +0,0 @@
source = $HOME/.config/hypr/mocha.conf
$accent = $mauve
$accentAlpha = $mauveAlpha
$font = JetBrainsMono Nerd Font
# GENERAL
general {
hide_cursor = true
}
# BACKGROUND
background {
monitor =
path = $HOME/.config/background
blur_passes = 0
color = $base
}
# LAYOUT
label {
monitor =
text = Layout: $LAYOUT
color = $text
font_size = 25
font_family = $font
position = 30, -30
halign = left
valign = top
}
# TIME
label {
monitor =
text = $TIME
color = $text
font_size = 90
font_family = $font
position = -30, 0
halign = right
valign = top
}
# DATE
label {
monitor =
text = cmd[update:43200000] date +"%A, %d %B %Y"
color = $text
font_size = 25
font_family = $font
position = -30, -150
halign = right
valign = top
}
# FINGERPRINT
{
monitor = "";
text = "$FPRINTPROMPT";
color = "$text";
font_size = 14;
font_family = $font;
position = "0, -107";
halign = "center";
valign = "center";
}
image {
path = $HOME/.config/hypr/cat.png
size = 240
border_color = transparent
rounding = 0
position = 0, 7px
}
# USER AVATAR
image {
monitor =
path = $HOME/.face
size = 100
border_color = $accent
position = 0, 75
halign = center
valign = center
}
# INPUT FIELD
input-field {
monitor =
size = 300, 60
outline_thickness = 4
dots_size = 0.2
dots_spacing = 0.2
dots_center = true
outer_color = $accent
inner_color = $surface0
font_color = $text
fade_on_empty = false
placeholder_text = <span foreground="##$textAlpha"><i>󰌾 Logged in as </i><span foreground="##$accentAlpha">$USER</span></span>
hide_input = false
check_color = $accent
fail_color = $red
fail_text = <i>$FAIL <b>($ATTEMPTS)</b></i>
capslock_color = $yellow
position = 0, -47
halign = center
valign = center
}

View File

@@ -1,38 +0,0 @@
input {
kb_layout = gb
follow_mouse = 1
touchpad {
natural_scroll = true
disable_while_typing = true
}
sensitivity = -0.3
force_no_accel = false
tablet {
left_handed = true
output = current
}
}
cursor {
inactive_timeout = 2
warp_on_change_workspace = 1
hide_on_key_press = true
warp_on_toggle_special = 1
}
device {
name = 2.4g-wireless-optical-mouse--mouse
sensitivity = -0.65
accel_profile = adaptive
}
device {
name = wacom-bamboo-16fg-4x5-finger
flip_x = true
flip_y = true
natural_scroll = false
sensitivity = 0.3
accel_profile = adaptive
}

View File

@@ -1,78 +0,0 @@
$rosewater = rgb(f5e0dc)
$rosewaterAlpha = f5e0dc
$flamingo = rgb(f2cdcd)
$flamingoAlpha = f2cdcd
$pink = rgb(f5c2e7)
$pinkAlpha = f5c2e7
$mauve = rgb(cba6f7)
$mauveAlpha = cba6f7
$red = rgb(f38ba8)
$redAlpha = f38ba8
$maroon = rgb(eba0ac)
$maroonAlpha = eba0ac
$peach = rgb(fab387)
$peachAlpha = fab387
$yellow = rgb(f9e2af)
$yellowAlpha = f9e2af
$green = rgb(a6e3a1)
$greenAlpha = a6e3a1
$teal = rgb(94e2d5)
$tealAlpha = 94e2d5
$sky = rgb(89dceb)
$skyAlpha = 89dceb
$sapphire = rgb(74c7ec)
$sapphireAlpha = 74c7ec
$blue = rgb(89b4fa)
$blueAlpha = 89b4fa
$lavender = rgb(b4befe)
$lavenderAlpha = b4befe
$text = rgb(cdd6f4)
$textAlpha = cdd6f4
$subtext1 = rgb(bac2de)
$subtext1Alpha = bac2de
$subtext0 = rgb(a6adc8)
$subtext0Alpha = a6adc8
$overlay2 = rgb(9399b2)
$overlay2Alpha = 9399b2
$overlay1 = rgb(7f849c)
$overlay1Alpha = 7f849c
$overlay0 = rgb(6c7086)
$overlay0Alpha = 6c7086
$surface2 = rgb(585b70)
$surface2Alpha = 585b70
$surface1 = rgb(45475a)
$surface1Alpha = 45475a
$surface0 = rgb(313244)
$surface0Alpha = 313244
$base = rgb(1e1e2e)
$baseAlpha = 1e1e2e
$mantle = rgb(181825)
$mantleAlpha = 181825
$crust = rgb(11111b)
$crustAlpha = 11111b

37
modules/binds.lua Normal file
View File

@@ -0,0 +1,37 @@
local mainMod = "SUPER + "
local subMod = mainMod
local keyboardString = "qwertyuiop"
if Hostname == "mobile02" then
mainMod = "ALT + "
subMod = "SUPER + "
keyboardString = "1234567890"
end
-- Delete windows
hl.bind(mainMod .. " + backspace", hl.dsp.window.close())
-- Open windows
local globalAppBinds = {
{ key = "RETURN", dispatch = "kitty" },
{ key = "f", dispatch = "firefox" },
{ key = "s", dispatch = "nemo" },
}
for _, bind in ipairs(globalAppBinds) do
hl.bind(mainMod .. bind.key, hl.dsp.exec_cmd(bind.dispatch))
end
-- Workspace functions
local keyboardSplit = {}
for char in keyboardString:gmatch(".") do
table.insert(keyboardSplit, char)
end
for index, bind in ipairs(keyboardSplit) do
hl.bind(mainMod .. bind, hl.dsp.focus({ workspace = index }))
hl.bind(mainMod .. "SHIFT + " .. bind, hl.dsp.window.move({ workspace = index, follow = false }))
end
-- Move windows with hjkl

133
modules/mocha.lua Normal file
View File

@@ -0,0 +1,133 @@
return {
name = "mocha",
rosewater = {
hex = "#f5e0dc",
rgb = { 245, 224, 220 },
hsl = { 10, 0.56, 0.91 },
},
flamingo = {
hex = "#f2cdcd",
rgb = { 242, 205, 205 },
hsl = { 0, 0.59, 0.88 },
},
pink = {
hex = "#f5c2e7",
rgb = { 245, 194, 231 },
hsl = { 316, 0.72, 0.86 },
},
mauve = {
hex = "#cba6f7",
rgb = { 203, 166, 247 },
hsl = { 267, 0.84, 0.81 },
},
red = {
hex = "#f38ba8",
rgb = { 243, 139, 168 },
hsl = { 343, 0.81, 0.75 },
},
maroon = {
hex = "#eba0ac",
rgb = { 235, 160, 172 },
hsl = { 350, 0.65, 0.77 },
},
peach = {
hex = "#fab387",
rgb = { 250, 179, 135 },
hsl = { 23, 0.92, 0.75 },
},
yellow = {
hex = "#f9e2af",
rgb = { 249, 226, 175 },
hsl = { 41, 0.86, 0.83 },
},
green = {
hex = "#a6e3a1",
rgb = { 166, 227, 161 },
hsl = { 115, 0.54, 0.76 },
},
teal = {
hex = "#94e2d5",
rgb = { 148, 226, 213 },
hsl = { 170, 0.57, 0.73 },
},
sky = {
hex = "#89dceb",
rgb = { 137, 220, 235 },
hsl = { 189, 0.71, 0.73 },
},
sapphire = {
hex = "#74c7ec",
rgb = { 116, 199, 236 },
hsl = { 199, 0.76, 0.69 },
},
blue = {
hex = "#89b4fa",
rgb = { 137, 180, 250 },
hsl = { 217, 0.92, 0.76 },
},
lavender = {
hex = "#b4befe",
rgb = { 180, 190, 254 },
hsl = { 232, 0.97, 0.85 },
},
text = {
hex = "#cdd6f4",
rgb = { 205, 214, 244 },
hsl = { 226, 0.64, 0.88 },
},
subtext1 = {
hex = "#bac2de",
rgb = { 186, 194, 222 },
hsl = { 227, 0.35, 0.80 },
},
subtext0 = {
hex = "#a6adc8",
rgb = { 166, 173, 200 },
hsl = { 228, 0.24, 0.72 },
},
overlay2 = {
hex = "#9399b2",
rgb = { 147, 153, 178 },
hsl = { 228, 0.17, 0.64 },
},
overlay1 = {
hex = "#7f849c",
rgb = { 127, 132, 156 },
hsl = { 230, 0.13, 0.55 },
},
overlay0 = {
hex = "#6c7086",
rgb = { 108, 112, 134 },
hsl = { 231, 0.11, 0.47 },
},
surface2 = {
hex = "#585b70",
rgb = { 88, 91, 112 },
hsl = { 233, 0.12, 0.39 },
},
surface1 = {
hex = "#45475a",
rgb = { 69, 71, 90 },
hsl = { 234, 0.13, 0.31 },
},
surface0 = {
hex = "#313244",
rgb = { 49, 50, 68 },
hsl = { 237, 0.16, 0.23 },
},
base = {
hex = "#1e1e2e",
rgb = { 30, 30, 46 },
hsl = { 240, 0.21, 0.15 },
},
mantle = {
hex = "#181825",
rgb = { 24, 24, 37 },
hsl = { 240, 0.21, 0.12 },
},
crust = {
hex = "#11111b",
rgb = { 17, 17, 27 },
hsl = { 240, 0.23, 0.09 },
},
}

28
modules/monitors.lua Normal file
View File

@@ -0,0 +1,28 @@
if Hostname == "HACKSTATION" then
hl.monitor({
output = "DP-1",
position = "0x0",
mode = "1920x1080@60",
scale = "1",
})
hl.monitor({
output = "DP-2",
position = "1920x0",
mode = "1920x1080@60",
scale = "1",
})
hl.monitor({
output = "HDMI-A-1",
position = "-1920x0",
mode = "1920x1080@60",
scale = "1",
})
hl.workspace_rule({ workspace = "1", monitor = "DP-1" })
hl.workspace_rule({ workspace = "2", monitor = "HDMI-A-1" })
hl.workspace_rule({ workspace = "3", monitor = "DP-2" })
else
hl.monitor({ output = "", mode = "preferred", position = "auto", scale = "1.2" })
end

0
modules/settings.lua Normal file
View File

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,24 @@
hl.config({
input = {
kb_layout = "gb",
follow_mouse = 1,
touchpad = {
natural_scroll = true,
disable_while_typing = true,
},
sensitivity = -0.3,
force_no_accel = false,
tablet = {
left_handed = true,
output = "current",
},
},
cursor = {
inactive_timeout = 2,
warp_on_change_workspace = 1,
hide_on_key_press = true,
warp_on_toggle_special = 1,
},
})

View File

@@ -0,0 +1,37 @@
local ctp = require("modules.mocha")
hl.config({
general = {
gaps_in = 3,
resize_on_border = true,
gaps_out = { top = 5, right = 6, bottom = 6, left = 6 },
border_size = 3,
layout = "scrolling",
col = {
active_border = {
colors = { "rgba(" .. ctp.mauve.hex:sub(2) .. "cc)", "rgba(" .. ctp.red.hex:sub(2) .. "cc)" },
angle = 45,
},
inactive_border = {
colors = { "rgba(" .. ctp.surface1.hex:sub(2) .. "cc)", "rgba(" .. ctp.lavender.hex:sub(2) .. "cc)" },
angle = 45,
},
},
},
decoration = {
rounding = 10,
rounding_power = 2,
-- Change transparency of focused and unfocused windows
active_opacity = 1.0,
inactive_opacity = 0.8,
dim_inactive = true,
dim_strength = 0.2,
blur = {
enabled = true,
size = 2,
passes = 3,
vibrancy = 0.5,
},
},
})

15
modules/startup.lua Normal file
View File

@@ -0,0 +1,15 @@
local appList = {
"waybar",
"dunst",
"wpaperd -d",
"wayvnc 0.0.0.0 --output=DP-1",
"syncthing -home=/home/user01/.config/syncthing -no-browser",
"gotify-desktop",
"sleep 10 && curl -X POST -H 'Content-Type: application/json' -d '{'ref':'$(git -C ~/.dotfiles rev-parse HEAD)', 'status':'$(git -C ~/.dotfiles diff --quiet && echo 'clean' || echo 'dirty')'}' https://n8n.voidarc.co.uk/webhook/config-checker",
}
hl.on("hyprland.start", function()
for _, command in ipairs(appList) do
hl.exec_cmd(command)
end
end)

View File

@@ -1,155 +0,0 @@
windowrule {
name = nodim-youtube
no_dim = on
opaque = on
match:class = ^(firefox|Firefox)$
match:title = ^(.*YouTube.*)$
}
windowrule {
name = nodim-delfin
no_dim = on
opaque = on
match:class = ^(cafe.avery.Delfin)$
}
windowrule {
name = float-firefoxDialogue
float = on
match:title = ^(About Mozilla Firefox)$
}
windowrule {
name = file-browser
float = on
size = 800 500
animation = popin
match:class = ^(xdg-desktop-portal-gtk)$
}
windowrule {
name = firefox-pip
float = on
match:class = ^(firefox)$
match:title = ^(Picture-in-Picture)$
}
windowrule {
name = float-history
float = on
match:class = ^(firefox)$
match:title = ^(Library)$
}
windowrule {
name = nwg-look
float = on
match:class = ^(nwg-look)$
}
windowrule {
name = volume-control
float = on
match:class = ^(org.pulseaudio.pavucontrol)$
}
windowrule {
name = blueman-size
float = on
size = 600 400
animation = popin
match:class = ^(.blueman-manager-wrapped)$
}
windowrule {
name = float-nm
float = on
match:class = ^(nm-applet)$
}
windowrule {
name = float-nm
float = on
match:class = ^(nm-connection-editor)$
}
windowrule {
name = float-auth-agent
float = on
match:class = ^(org.kde.polkit-kde-authentication-agent-1)$
}
windowrule {
name = firefox-popups
size = 800 500
animation = popin
match:class = ^(firefox)$
match:title = ^(.*Save.*)
}
windowrule {
name = otter-launcher-initial
size = 425 220
float = on
opaque = on
animation = popin 50%
match:class = ^(otter)$
}
windowrule {
name = jellyfin tui
animation = slide top
match:class = ^(jf-tui)$
}
windowrule {
name = nodim-fullscreen
match:fullscreen = 1
no_dim = on
}
windowrule {
name = nodim-kitty
match:class = ^(kitty)$
opaque = on
xray = on
}
layerrule {
name = layerrule-1
blur = on
ignore_alpha = 0
match:namespace = notifications
}
layerrule {
name = something to do with wlogout
blur = on
match:namespace = logout_dialog
}
layerrule {
name = layerrule-3
blur = on
ignore_alpha = 0
match:namespace = waybar
}
layerrule {
name = layerrule-4
ignore_alpha = 0
blur = on
animation = popin 70%
match:namespace = otter-panel
}
layerrule {
name = layerrule-5
animation = slide right
blur = on
ignore_alpha = 0
match:namespace = swaync-control-center
}
workspace = special:music, gapsout:5 400 400 400
workspace = special:scratch, gapsout:20 20 20 20

View File

@@ -1,15 +0,0 @@
exec-once = $scrPath/resetxdgportal.sh # reset XDPH for screenshare
exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH
exec-once = dbus-update-activation-environment --systemd --all # for XDPH
exec-once = dconf write /org/gnome/desktop/interface/color-scheme '"prefer-dark"'
exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # for XDPH
exec-once = $scrPath/polkitkdeauth.sh # authentication dialogue for GUI apps
exec-once = waybar # System bar
exec-once = sleep 10 && curl -X POST -H "Content-Type: application/json" -d "{\"ref\":\"$(git -C ~/.dotfiles rev-parse HEAD)\", \"status\":\"$(git -C ~/.dotfiles diff --quiet && echo "clean" || echo "dirty")\"}" https://n8n.voidarc.co.uk/webhook/config-checker # check if config is up to date
exec-once = elephant # Data for Walker
exec-once = walker --gapplication-service # make walker faster
exec-once = dunst # Notifications
exec-once = ~/.config/scripts/.venv/bin/python ~/.config/scripts/notify.py # Android notification forwarding
exec-once = wayvnc 0.0.0.0 --output=DP-1 # runs vnc server on all interfaces
exec-once = syncthing -home=/home/user01/.config/syncthing -no-browser # starts syncthing in background
exec-once = gotify-desktop # gotify daemon for service notifications

View File

@@ -1,93 +0,0 @@
# Environment
env = PATH,$PATH:$scrPath
env = XDG_CURRENT_DESKTOP,Hyprland
env = XDG_SESSION_TYPE,wayland
env = XDG_SESSION_DESKTOP,Hyprland
env = QT_QPA_PLATFORM,wayland;xcb
env = QT_QPA_PLATFORMTHEME,qt6ct
env = QT_WAYLAND_DISABLE_WINDOWDECORATION,1
env = QT_AUTO_SCREEN_SCALE_FACTOR,1
env = MOZ_ENABLE_WAYLAND,1
env = GDK_SCALE,1
# Misc
misc {
vrr = 0
animate_manual_resizes = true
disable_hyprland_logo = true
disable_splash_rendering = true
force_default_wallpaper = 0
}
xwayland {
force_zero_scaling = false
}
# Layout
dwindle {
pseudotile = true # Master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below
preserve_split = true # You probably want this
permanent_direction_override = true
}
scrolling {
column_width = 0.8
follow_min_visible = 0.1
focus_fit_method = 1
}
# GTK shennanigans
exec = gsettings set org.gnome.desktop.interface icon-theme 'BeautyDream'
exec = gsettings set org.gnome.desktop.interface gtk-theme 'Catppuccin-Mocha'
exec = gsettings set org.gnome.desktop.interface color-scheme 'prefer-dark'
# Make things look nice
general {
gaps_in = 3
gaps_out = 5, 6, 6, 6
border_size = 3
col.active_border = rgba(ca9ee6cc) rgba(f38ba8cc) 45deg
col.inactive_border = rgba(45475aaa) rgba(b4befeaa) 45deg
layout = scrolling
resize_on_border = true
}
ecosystem {
no_update_news = true
no_donation_nag = true
}
group {
col.border_active = rgba(ca9ee6cc) rgba(f2d5cfcc) 45deg
col.border_inactive = rgba(bac2decc) rgba(bac2decc) 45deg
col.border_locked_active = rgba(ca9ee6ff) rgba(f2d5cfff) 45deg
col.border_locked_inactive = rgba(b4befecc) rgba(6c7086cc) 45deg
}
decoration {
rounding = 10
active_opacity = 1.0
inactive_opacity = 0.8
dim_inactive = true
dim_strength = 0.2
blur {
enabled = true
size = 2
passes = 3
vibrancy = 0.5
}
}
# Fonts and Cursors
exec = hyprctl setcursor Bibata-Modern-Ice 20
exec = gsettings set org.gnome.desktop.interface cursor-theme 'Bibata-Modern-Ice'
exec = gsettings set org.gnome.desktop.interface cursor-size 20
exec = gsettings set org.gnome.desktop.interface font-name 'FiraMono Nerd Font'
exec = gsettings set org.gnome.desktop.interface document-font-name 'Cantarell 10'
exec = gsettings set org.gnome.desktop.interface monospace-font-name 'CaskaydiaCove Nerd Font Mono 9'
exec = gsettings set org.gnome.desktop.interface font-antialiasing 'rgba'
exec = gsettings set org.gnome.desktop.interface font-hinting 'full'
env XCURSOR_SIZE = 20

View File

@@ -1 +0,0 @@
monitor = , preferred, auto, 1.2