gnome-hide-activities_0.00~git20131024.1.6574986/0000755000175000017500000000000012232152325020605 5ustar jonathanjonathangnome-hide-activities_0.00~git20131024.1.6574986/Hide_Activities@shay.shayel.org/0000755000175000017500000000000012232152325026701 5ustar jonathanjonathangnome-hide-activities_0.00~git20131024.1.6574986/Hide_Activities@shay.shayel.org/extension.js0000644000175000017500000000164312232152325031257 0ustar jonathanjonathan/** * GNOME Shell extenstion to hide the Activities button from the status bar. * * Created by Shay Elkin * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR * OTHER DEALINGS IN THE SOFTWARE. * **/ const Main = imports.ui.main; function enable() { let indicator = Main.panel.statusArea['activities']; if(indicator != null) { indicator.container.hide(); } } function disable() { let indicator = Main.panel.statusArea['activities']; if(indicator != null) { indicator.container.show(); } } gnome-hide-activities_0.00~git20131024.1.6574986/Hide_Activities@shay.shayel.org/stylesheet.css0000644000175000017500000000001412232152325031577 0ustar jonathanjonathan/* Empty */ gnome-hide-activities_0.00~git20131024.1.6574986/Hide_Activities@shay.shayel.org/metadata.json0000644000175000017500000000027412232152325031357 0ustar jonathanjonathan{ "shell-version": ["3.8"], "uuid": "Hide_Activities@shay.shayel.org", "name": "Hide Activities Button", "description": "Hides the Activities button from the status bar" } gnome-hide-activities_0.00~git20131024.1.6574986/README.md0000644000175000017500000000125212232152325022064 0ustar jonathanjonathanHide Activities Button ====================== A simple GNOME Shell extenstion to hide the Activities button from the status bar. ## Installation instructions It's best to install it from [GNOME's extensions website](https://extensions.gnome.org/extension/744/hide-activities-button/). But if you want to do it manually, you can: 0. Clone this project into your machine. 1. Move the Hide_Activities@shay.shayel.org directory into ~/.local/share/gnome-shell/extenstions/ 2. Press Alt+F2, and in the window that opens, type 'r' and enter to restart GNOME shell. 3. Enable the extension by using gnome-tweak-tool, or from the [web interface](https://extensions.gnome.org/local/) gnome-hide-activities_0.00~git20131024.1.6574986/LICENSE0000644000175000017500000000227312232152325021616 0ustar jonathanjonathanThis is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to