mirror of
https://github.com/gosticks/PaperWM.git
synced 2026-02-23 17:22:50 +00:00
17 lines
347 B
JavaScript
17 lines
347 B
JavaScript
// -*- mode: gnome-shell -*-
|
|
|
|
var Extension;
|
|
function init() {
|
|
// Runs _only_ once on startup
|
|
Extension = imports.misc.extensionUtils.getCurrentExtension();
|
|
}
|
|
|
|
function enable() {
|
|
// Runs on extension reloads, eg. when unlocking the session
|
|
}
|
|
|
|
function disable() {
|
|
// Runs on extension reloads eg. when locking the session (`<super>L).
|
|
}
|
|
|