From 8cc723341c7e9c028988accabc773a70f94b6adb Mon Sep 17 00:00:00 2001 From: srdusr Date: Fri, 7 Feb 2025 17:12:16 +0200 Subject: Auto formatting/linting --- .config/ags/lib/init.ts | 32 ++++++++++++++++---------------- 1 file 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); + } } -- cgit v1.2.3