Review of "Simple Dock" version 7

Details Page Preview

Bottom dock Featuring: - Minimize focused application. - Minimize to dock icon. - Drag and drop favorites. - Cycle windows with scroll. - Application menus - Applications button (Optional). - Adjust icon sizes (Optional) - Adjust background opacity (Optional) - Intelligent auto hide (Optional).

Extension Homepage
https://github.com/optimisme/gnome-shell-simple-dock

No comments.

Diff Against

Files

Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.

All Versions

Previous Reviews on this Version

fmuellner active
Copying huge amounts of code is usually a bad idea, as you will likely miss bug fixes that we make upstream. So for the dash replacement, have you consider something like this: const AtomDash = new Lang.Class({ Name: 'AtomDash', Extends: Dash.Dash, _init: function() { this.parent(); this._container.remove_actor(this._box); this._container.remove_actor(this._showAppsIcon); this._container.destroy(); this._container = new AtomDashActor(); this._box.layout_manager.orientation = Clutter.Orientation.HORIZONTAL; this._container.add_actor(this._box); this._container.add_actor(this._showAppsIcon); this.actor.set_child(this._container); }, _createAppItem: function(app) { // use AtomAppIcon instead of AppIcon } }); Anyway, the extension itself is OK, so approving.