mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-06-08 04:09:15 -04:00
8eb23bcc29
- Bring up Mango to parity with niri/hyprland via a native JSON-IPC w/Native MangoServic., replaces the legacy dwl/`mmsg` path and recent breaking changes - Dankinstall: mango supported installer, config/binds templates, and packaging (Arch AUR, Fedora Terra auto-enable, Gentoo GURU) - Window rules: Go provider + CLI + Settings GUI editor - Keybinds + config reload on edit (mmsg dispatch reload_config) - Misc new supported options in DMS settings
16 lines
290 B
Go
16 lines
290 B
Go
package config
|
|
|
|
import _ "embed"
|
|
|
|
//go:embed embedded/mango.conf
|
|
var MangoConfig string
|
|
|
|
//go:embed embedded/mango-colors.conf
|
|
var MangoColorsConfig string
|
|
|
|
//go:embed embedded/mango-layout.conf
|
|
var MangoLayoutConfig string
|
|
|
|
//go:embed embedded/mango-binds.conf
|
|
var MangoBindsConfig string
|