mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
20 lines
404 B
TypeScript
20 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)
|
|
}
|
|
}
|