caem
36ea0b0e39
There is now a bargain bin gnome-shell quicksettings menu with basically only media controls. This also takes care of notifications now. TODO: Add the code for shutting down and restarting the computer with the buttons in the quicksettings menu.
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
import { Bar } from "./bar.js";
|
|
import { NotificationPopups } from "./vendor/notificationPopups.js";
|
|
|
|
App.addIcons(`${App.configDir}/assets`);
|
|
App.config({
|
|
style: "./style.css",
|
|
windows: [
|
|
Bar(),
|
|
NotificationPopups(),
|
|
],
|
|
});
|
|
|