diff options
| author | srdusr <trevorgray@srdusr.com> | 2025-02-07 17:12:16 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2025-02-07 17:12:16 +0200 |
| commit | 8cc723341c7e9c028988accabc773a70f94b6adb (patch) | |
| tree | 8572358b0f884be86bc379dea39894d0c3fe39de /.config | |
| parent | dd839880c52321fa3ebd99662bd5b843f2724908 (diff) | |
| download | dotfiles-8cc723341c7e9c028988accabc773a70f94b6adb.tar.gz dotfiles-8cc723341c7e9c028988accabc773a70f94b6adb.zip | |
Auto formatting/linting
Diffstat (limited to '.config')
| -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); + } } |
