- Add Lua equivalents for hyprland, autostart, keybindings, programs, windowrule - Add per-host Lua configs (Chester, Rutherford, example) with hostname detection - Rename old host 'William' to 'Chester'; fix 2x scaling on the 2880x1800 panel - Update .gitignore to track *.lua host files instead of example-host.conf
14 lines
490 B
Lua
14 lines
490 B
Lua
-- Shared program variables (converted from programs.conf)
|
|
-- Returned as a table so other modules can require() it.
|
|
-- NOTE: inner quotes in `terminal` are significant (preserved from the original).
|
|
|
|
local P = {
|
|
mainMod = "SUPER",
|
|
terminal = 'kitty -e zsh -c "fastfetch; exec zsh"',
|
|
fileManager = "nautilus",
|
|
app_menu = "~/.config/hypr/scripts/launch-tofi.sh",
|
|
menu = "~/.config/hypr/scripts/launch-menu.sh",
|
|
browser = "librewolf",
|
|
}
|
|
|
|
return P
|