aboutsummaryrefslogtreecommitdiff
path: root/linux/home/.config/ags/lib/init.ts
blob: e9e396c9a94cb898889afab93306d372e3c1653b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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';

export default function init() {
  try {
    gtk();
    tmux();
    matugen();
    lowBattery();
    notifications();
    hyprland();
  } catch (error) {
    logError(error);
  }
}