/usr/share/gnome-shell/extensions/hidetopbar@mathieu.bidon.ca/extension.js is in gnome-shell-extension-autohidetopbar 20161203-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | //
// Hides the Gnome "top bar" except in overview mode.
// https://extensions.gnome.org/extension/545/hide-top-bar/
// https://github.com/mlutfy/hidetopbar
//
// See README for more information.
//
const Me = imports.misc.extensionUtils.getCurrentExtension();
const Convenience = Me.imports.convenience;
const PanelVisibilityManager = Me.imports.panelVisibilityManager;
const DEBUG = Convenience.DEBUG;
let mSettings = null;
let mPVManager = null;
function init() { }
function enable() {
DEBUG("enable()");
mSettings = Convenience.getSettings();
mPVManager = new PanelVisibilityManager.PanelVisibilityManager(mSettings);
}
function disable() {
DEBUG("disable()");
mPVManager.destroy();
mSettings.run_dispose();
mPVManager = null;
mSettings = null;
}
|