diff options
Diffstat (limited to '.config/ags/lib')
| -rw-r--r-- | .config/ags/lib/init.ts | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/.config/ags/lib/init.ts b/.config/ags/lib/init.ts index aa03300..e9e396c 100644 --- a/.config/ags/lib/init.ts +++ b/.config/ags/lib/init.ts @@ -1,19 +1,19 @@ -import matugen from "./matugen" -import hyprland from "./hyprland" -import tmux from "./tmux" -import gtk from "./gtk" -import lowBattery from "./battery" -import notifications from "./notifications" +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) - } + try { + gtk(); + tmux(); + matugen(); + lowBattery(); + notifications(); + hyprland(); + } catch (error) { + logError(error); + } } |
