aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2025-02-07 17:12:16 +0200
committersrdusr <trevorgray@srdusr.com>2025-02-07 17:12:16 +0200
commit8cc723341c7e9c028988accabc773a70f94b6adb (patch)
tree8572358b0f884be86bc379dea39894d0c3fe39de
parentdd839880c52321fa3ebd99662bd5b843f2724908 (diff)
downloaddotfiles-8cc723341c7e9c028988accabc773a70f94b6adb.tar.gz
dotfiles-8cc723341c7e9c028988accabc773a70f94b6adb.zip
Auto formatting/linting
-rw-r--r--.config/ags/lib/init.ts32
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);
+ }
}