Endless Paradigm

Full Version: Post your desktop! *56K warning*
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
go for it if you want
Joomla12 Wrote: [ -> ]
trademark91 Wrote: [ -> ]i think that people should actually have to DO something to their desktop to post in this thread. just an idea.

Should I show off all the JavaScript and CSS patches I had to write to fix the horrible work GNOME devs puked up? GNOME Shell uses JS and CSS for its visual effects and I pretty much dumped everything the devs did and re-wrote the style scripts.

wow really? that's rather amusing. at least it gives way to a pretty customizable interface. how deep does the JS and CSS go?

Code:
const St = imports.gi.St;
const Main = imports.ui.main;
const Panel = imports.ui.panel;

const Gettext = imports.gettext.domain('gnome-shell');
const _ = Gettext.gettext;


function main() {
    
   let hotCornerButton = Main.panel.button;

   let box = new St.BoxLayout({ style_class: 'activities_box'});

   // change the text string if you want to display different text
   // for the activities button
   let label = new St.Label({ text: _(""),
                              style_class: 'activities_text' });

   // change the icon_name if you want to display a different icon
   // the icon must exist in the appropriate directory
   let logo = new St.Icon({ icon_type: St.IconType.FULLCOLOR, 
                            icon_size: hotCornerButton.height, 
                            icon_name: 'soothe' });

   // comment out this line if you do not want an icon displayed
   box.add_actor(logo);

   // comment out this line if you do not want the label displayed
   box.add_actor(label);

   Main.panel.button.set_child(box);
}


This script allows you to change the text and icon of the Activities button. It takes a lot to customize GNOME 3. Theming it is easy (sorta) since it's just images. You have to write a script that'll interpret 3rd party styles though and use them.

Really quite verbose. Nice to see for Linux.
Also I just realized that I misunderstood what TM was talking about. -_-
;p
trademark91 Wrote: [ -> ]
asurabp Wrote: [ -> ][Image: unledovt.png]


i think that people should actually have to DO something to their desktop to post it in this thread. just an idea.

I haven't touched that since 2 months. Because I always forgot to reinstall MBR? for windows 7 so that I could again dual boot with XP. And yah that's what I left that...lol wrong grammar
asurabp Wrote: [ -> ]I haven't touched that since 2 months. Because I always forgot to reinstall MBR? for windows 7 so that I could again dual boot with XP. And yah that's what I left that...lol wrong grammar


Has anyone really been far even as decided to use even go want to do look more like?
[Image: r2ASy.png]
trademark91 Wrote: [ -> ]
asurabp Wrote: [ -> ]I haven't touched that since 2 months. Because I always forgot to reinstall MBR? for windows 7 so that I could again dual boot with XP. And yah that's what I left that...lol wrong grammar


Has anyone really been far even as decided to use even go want to do look more like?

maybe some.. :P I'll give my 7 a nice look if I had time
Reference URL's