
Window List Extension
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
This Gnome Shell extension tries to transform the Application Menu to a window list.
Tested in Fedora 16 and GNOME Shell 3.2.1
INSTALLATION:
- Uncompress windowlist-02.tar.gz
- Copy both directories to /home/yourname/.local/share/gnome-shell/extensions/
- Restart the shell: ALT + F2, type "r" and press ENTER.
- Enable both extensions with gnome-tweak-tool.
9 years ago
v0.1 Initial Release
v0.2 GNOME Shell 3.2.1 support.
9 years ago
v0.1 Initial Release
v0.2 GNOME Shell 3.2.1 support.
tista
9 years ago
I've experienced the issues when I minimize the apps, window list kept it as "focusing"...
so I've modded extension.js:
doFocus: function() {
let tracker = Shell.WindowTracker.get_default();
let focusedApp = tracker.focus_app;
// if ( this.metaWindow.has_focus() ) {
if (this.app == focusedApp) {
this.actor.add_style_pseudo_class('focus');
}
else {
this.actor.remove_style_pseudo_class('focus');
}
},
it seems to work well on the actions of actual focusing properly... :-)
cheers.
Report
KurtRottmann
9 years ago
Report
a3dman
9 years ago
Great extension, keep it up!
Report
wsid
9 years ago
I wanna give it a try. Thanks~!
Report
bababeechums
9 years ago
Report
rruhland
9 years ago
cu Richard
Report
malys777
9 years ago
Report
KurtRottmann
9 years ago
Report
malys777
9 years ago
I mean who's bottom panel to hide I wanted to stay still see as I got used of the older version of gnome ....
com would write something like that?
Report
malys777
9 years ago
http://i140.photobucket.com/albums/r20/malys777/gggggggg.png?t=1310594617
Report
spindle
9 years ago
http://www.webupd8.org/2011/06/bottom-panel-gnome2-like-panel-gnome.html
Report
KurtRottmann
9 years ago
Report
malys777
9 years ago
Report
malys777
9 years ago
works well is enough to overwrite the version 3.1.3 in metadata.json
"shell-version": ["3.1.3"],
Thanks a lot
Report
aftermarketgirl
9 years ago
Report