hyprcrux/.config/ags/old/lib/init.js
2024-04-11 00:21:35 -04:00

19 lines
339 B
JavaScript

// import hyprland from "./hyprland.js"
// import tmux from "./tmux"
// import gtk from "./gtk"
import lowBattery from "./battery.js"
// import swww from "./swww"
export async function init() {
try {
// gtk()
// tmux()
lowBattery()
// hyprland()
// css()
// swww()
} catch (error) {
logError(error)
}
}