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.
XMB? What aboud XWD?

[Image: 214wej6.jpg]
[Image: WR9tz.jpg]

Just got a new laptop, plain desktop is plain atm
damn you guys and your two-monitor setups Erk
[Image: unledwm.png]

Read the "To Do", also I forgot something in the screenshot that is present today :/
i see your using a windows 8 theme ;p

all you need  is taskbar transparancy
may i just take this time to say Miranda IM is abysmal
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.

Joomla12 Wrote: [ -> ]

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.


holy dumb fudge, GNOME3 is far stupider than I thought. Erk
Meh. I'll take looks over ease of customization. It's like web designing.
But web designing is for the web (hence the name), not DE/WM customization.

It's fudgeing retarded if you ask me.
I said like, not is. :P It uses CSS and JavaScript. A lot of OSs are starting to do that actually.
Reference URL's