Post Reply 
Post your desktop! *56K warning*
Author Message
trademark91
Unique?
Fractal Insanity

Posts: 4,719.9300
Threads: 269
Joined: 4th Jan 2008
Reputation: -6.15982
E-Pigs: 105.8691
Offline
Post: #2061
RE: Post your desktop! *56K warning*
go for it if you want

[Image: 531115][Image: 76561198014212040.png]
windows Proud
07/08/2011 12:18 PM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2289
Offline
Post: #2062
RE: Post your desktop! *56K warning*
(07/08/2011 11:41 AM)Joom Wrote:  
(07/08/2011 11:38 AM)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?
07/08/2011 12:23 PM
Find all posts by this user Quote this message in a reply
Joom
WOOP
Worlds End

Posts: 4,206.7320
Threads: 417
Joined: 20th Mar 2009
Reputation: 5.41709
E-Pigs: 134.1772
Offline
Post: #2063
RE: Post your desktop! *56K warning*

Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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.


[Image: ROVBdMh.png]
3DS Friend Code: 5000-6045-4964
07/08/2011 01:14 PM
Find all posts by this user Quote this message in a reply
S7*
Sweet Dreams

Posts: 16,689.4373
Threads: 1,056
Joined: 3rd Apr 2007
Reputation: 14.29926
E-Pigs: 383.2289
Offline
Post: #2064
RE: Post your desktop! *56K warning*
Really quite verbose. Nice to see for Linux.
07/08/2011 02:20 PM
Find all posts by this user Quote this message in a reply
Joom
WOOP
Worlds End

Posts: 4,206.7320
Threads: 417
Joined: 20th Mar 2009
Reputation: 5.41709
E-Pigs: 134.1772
Offline
Post: #2065
RE: Post your desktop! *56K warning*
Also I just realized that I misunderstood what TM was talking about. -_-

[Image: ROVBdMh.png]
3DS Friend Code: 5000-6045-4964
07/08/2011 02:35 PM
Find all posts by this user Quote this message in a reply
squee666
Grand Warlock

Posts: 3,567.1000
Threads: 351
Joined: 4th May 2007
Reputation: 12.17831
E-Pigs: 555.9025
Offline
Post: #2066
RE: Post your desktop! *56K warning*
;p

[Image: IuZelj2.png]
Spoiler for anime watched:
[Image: squee666.jpg]
07/08/2011 02:40 PM
Find all posts by this user Quote this message in a reply
asurabp
Paradoxical Absurdity

Posts: 730.2789
Threads: 34
Joined: 7th Nov 2008
Reputation: 3.706
E-Pigs: 25.4912
Offline
Post: #2067
RE: Post your desktop! *56K warning*
(07/08/2011 11:38 AM)trademark91 Wrote:  
(05/08/2011 09:14 AM)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

[Image: Shinigameh16.png]
07/08/2011 03:40 PM
Find all posts by this user Quote this message in a reply
trademark91
Unique?
Fractal Insanity

Posts: 4,719.9300
Threads: 269
Joined: 4th Jan 2008
Reputation: -6.15982
E-Pigs: 105.8691
Offline
Post: #2068
RE: Post your desktop! *56K warning*
(07/08/2011 03:40 PM)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: 531115][Image: 76561198014212040.png]
windows Proud
07/08/2011 04:55 PM
Find all posts by this user Quote this message in a reply
Joom
WOOP
Worlds End

Posts: 4,206.7320
Threads: 417
Joined: 20th Mar 2009
Reputation: 5.41709
E-Pigs: 134.1772
Offline
Post: #2069
RE: Post your desktop! *56K warning*
[Image: r2ASy.png]

[Image: ROVBdMh.png]
3DS Friend Code: 5000-6045-4964
(This post was last modified: 07/08/2011 05:25 PM by Joom.)
07/08/2011 05:25 PM
Find all posts by this user Quote this message in a reply
asurabp
Paradoxical Absurdity

Posts: 730.2789
Threads: 34
Joined: 7th Nov 2008
Reputation: 3.706
E-Pigs: 25.4912
Offline
Post: #2070
RE: Post your desktop! *56K warning*
(07/08/2011 04:55 PM)trademark91 Wrote:  
(07/08/2011 03:40 PM)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

[Image: Shinigameh16.png]
08/08/2011 02:07 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 9 Guest(s)

 Quick Theme: