hyprland-void-dots/hypr-configs/hyprland/ags/lib/init.ts
2024-07-20 20:42:38 +03:30

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)
}
}