mirror of
https://github.imc.re/void-land/hyprland-void-dots
synced 2025-09-25 22:15:03 +02:00
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import matugen from "./matugen"
|
|
import hyprland from "./hyprland"
|
|
import tmux from "./tmux"
|
|
import gtk from "./gtk"
|
|
import lowBattery from "./battery"
|
|
import notifications from "./notifications"
|
|
|
|
export default function init() {
|
|
try {
|
|
gtk()
|
|
tmux()
|
|
matugen()
|
|
lowBattery()
|
|
notifications()
|
|
hyprland()
|
|
} catch (error) {
|
|
logError(error)
|
|
}
|
|
}
|