PCLinuxOS-Forums
News: ...FLASH!!! ...New PCLinuxOS Testing board now open. Register today! Be an active contributor to the PCLinuxOS future! ... Read all about it now, on THIS forum!!!..
 
*
Welcome, Guest. Please login or register. May 26, 2012, 07:26:01 PM


Login with username, password and session length


Pages: 1 2 3 4 5 6 [7] 8   Go Down
  Print  
Author Topic: zenity script  (Read 5160 times)
uncleV
Guest
« Reply #90 on: July 14, 2010, 04:26:44 AM »

It great to see some neighbors here Smiley
Just install poedit from synaptic and you can easily translate the po file.
Leiche offer to add it. Wink

Unfortunately there isn't much effort in translating pclos Sad I would like to see it more
Zdravo, slax!
It's good to me too.

Thank you for the poedit hint, I didn't know about it.
Logged
uncleV
Guest
« Reply #91 on: July 14, 2010, 04:41:56 AM »

add your language file in the attachment, and i rebuild the package (add it) Wink
You need the pot file (attached), remove .txt.
How to translate see here
http://www.pclinuxos.com/forum/index.php/topic,59145.0.html
Hope it's help Wink

Downloaded the attachment and translated it using for the first time poedit.

Attached here but I'm not sure everything got right because get this message while saving the translation:
Quote
/home/uncleV/Desktop/ezswitch_bg.pot:7: some header fields still have the initial default value

Bookmark 7 is translated and the original and translated lines look the same except the translated words.
Logged
Leiche
Global Moderator
Hero Member
*****
Offline Offline

Posts: 2702


God knows, i'm not an Angel!


WWW
« Reply #92 on: July 14, 2010, 10:55:11 AM »

@uncleV
to see if it works install new package link removed
thanks...
Logged

musonio
Guest
« Reply #93 on: July 14, 2010, 04:03:20 PM »

Neal:
First of all: great script.
However, we are kind of in the dark when we change themes. We only have a name, and a reboot is needed in order to see what it loks like.
Couldn't there be a post (sticky) where one could take a look at the available themes?
Thanks again.
Logged
Neal ManBear
Administrator
Super Villain
*****
Offline Offline

Posts: 15198


LXDE! Coffee, Bacon and Cheesecake!


« Reply #94 on: July 14, 2010, 05:52:26 PM »

Neal:
First of all: great script.
However, we are kind of in the dark when we change themes. We only have a name, and a reboot is needed in order to see what it loks like.
Couldn't there be a post (sticky) where one could take a look at the available themes?
Thanks again.

 Cheesy I have been thinking on that. Were you reading my mind? Grin
Logged

musonio
Guest
« Reply #95 on: July 14, 2010, 08:14:12 PM »

Neal:
First of all: great script.
However, we are kind of in the dark when we change themes. We only have a name, and a reboot is needed in order to see what it loks like.
Couldn't there be a post (sticky) where one could take a look at the available themes?
Thanks again.

 Cheesy I have been thinking on that. Were you reading my mind? Grin

Since plymotuh themes are animated, I think it would be relatively easy to embed video in a post linking to the demos I've seen around the web for some themes.
Where there isn't any video, a simple still image could be made.
Besides, those images could be included in the package and your script could be modified with a preview button.
On top of that, you could solve the problem in Iraq.
Logged
Neal ManBear
Administrator
Super Villain
*****
Offline Offline

Posts: 15198


LXDE! Coffee, Bacon and Cheesecake!


« Reply #96 on: July 14, 2010, 08:19:42 PM »

Neal:
First of all: great script.
However, we are kind of in the dark when we change themes. We only have a name, and a reboot is needed in order to see what it loks like.
Couldn't there be a post (sticky) where one could take a look at the available themes?
Thanks again.

 Cheesy I have been thinking on that. Were you reading my mind? Grin

Since plymotuh themes are animated, I think it would be relatively easy to embed video in a post linking to the demos I've seen around the web for some themes.
Where there isn't any video, a simple still image could be made.
Besides, those images could be included in the package and your script could be modified with a preview button.
On top of that, you could solve the problem in Iraq.

Coffeetime posted a video in the thread on the Radically Simple theme.
Bet you want it all yesterday. Grin

 Shocked Shocked Shocked Iraq!?!?? Shocked Shocked Hmm...... no ideas that I can post here. Wink Grin
Logged

travisN000
Global Moderator
Hero Member
*****
Offline Offline

Posts: 1755


« Reply #97 on: July 15, 2010, 01:22:12 AM »

Neal:
First of all: great script.
However, we are kind of in the dark when we change themes. We only have a name, and a reboot is needed in order to see what it loks like.
Couldn't there be a post (sticky) where one could take a look at the available themes?
Thanks again.


You can test different plymouth themes from init level 3 (no X) without rebooting:

(from http://brej.org/blog/?p=158 and http://blog.fpmurphy.com/2009/09/project-plymouth.html)

First set up a script to simplify things:
(I used /usr/bin/plymouth-test-theme):
Code: (/usr/bin/plymouth-test-theme)

#!/bin/bash
#

# check that we are in an appropriate runlevel
rlevel=$(runlevel | cut -d " " -f 2)
if [[ "$rlevel" != "2"  && "$rlevel" != "3" ]]
then
    echo "ERROR: You must be at runlevel 2 or 3"
    exit 1
fi

echo "checking plymouthd status"
plymouth --ping || plymouthd
sleep 2

echo "selecting theme: $1"
plymouth-set-default-theme $1
sleep 2

echo "starting plymouth preview"
plymouth --show-splash
sleep 2

for ((I=0; I<10; I++)); do
  plymouth --update=test$I
  sleep 1
done

plymouth quit


..save in /usr/bin and make it executable



Switch to init level 3 (as root; close / save work first!)
Code:
init 3
<at prompt, log in as root again>

Get a list of installed themes:
Code:
plymouth-set-default-theme --list

Test theme (adjust name of script if you used a different name in the first step):
Code:
plymouth-test-theme  <insert name of theme>

When you have tested all your themes, return to normal session (init 5):
Code:
init 5


..and then use our fine script to switch to a new plymouth theme!
 Grin


Logged
gseaman
PCLinuxOS Tester
Hero Member
*******
Offline Offline

Posts: 2808



« Reply #98 on: July 15, 2010, 02:33:20 AM »

You guys are amazing!

Switching runlevels is not for the faint-hearted. Not that it is difficult to do, but for those who don't understand linux it can be scary if anything goes wrong. I like this idea of playing a very small theora video capture in a window as a preview of the animated theme. Would this be difficult to do?  Wink

Galen
Logged
uncleV
Guest
« Reply #99 on: July 15, 2010, 03:49:54 AM »

Since plymotuh themes are animated, I think it would be relatively easy to embed video in a post linking to the demos I've seen around the web for some themes.
Where there isn't any video, a simple still image could be made.
Besides, those images could be included in the package and your script could be modified with a preview button.
On top of that, you could solve the problem in Iraq.


Me the noob go to /usr/share/plymouth/themes/*/ and click the PNGs there. animation.png gives me the animation.

Btw, Neal, here on LXDE-Mini I have details, text, PCLXDE and PCLOS, the latter two being exactly the same by files and animation.
Logged
Neal ManBear
Administrator
Super Villain
*****
Offline Offline

Posts: 15198


LXDE! Coffee, Bacon and Cheesecake!


« Reply #100 on: July 15, 2010, 06:16:14 AM »

uncleV,
Open Synaptic > Reload > Upgrade (you know. standard stuff.) > Search for - pclinuxos-theme > mark to reinstall > Apply.
Logged

slax
Sr. Member
****
Offline Offline

Posts: 395



WWW
« Reply #101 on: July 15, 2010, 01:25:51 PM »

Neal:
First of all: great script.
However, we are kind of in the dark when we change themes. We only have a name, and a reboot is needed in order to see what it loks like.
Couldn't there be a post (sticky) where one could take a look at the available themes?
Thanks again.


You can test different plymouth themes from init level 3 (no X) without rebooting:

(from http://brej.org/blog/?p=158 and http://blog.fpmurphy.com/2009/09/project-plymouth.html)



This can probably be implemented in ezswitch?  Undecided
At least we can try...
Logged



Neal ManBear
Administrator
Super Villain
*****
Offline Offline

Posts: 15198


LXDE! Coffee, Bacon and Cheesecake!


« Reply #102 on: July 15, 2010, 01:31:10 PM »

Perhaps a different script? > EZTest?
Logged

gseaman
PCLinuxOS Tester
Hero Member
*******
Offline Offline

Posts: 2808



« Reply #103 on: July 15, 2010, 02:14:24 PM »

Perhaps a different script? > EZTest?

EZThemePreview?

Galen
Logged
Neal ManBear
Administrator
Super Villain
*****
Offline Offline

Posts: 15198


LXDE! Coffee, Bacon and Cheesecake!


« Reply #104 on: July 15, 2010, 02:28:54 PM »

Perhaps a different script? > EZTest?

EZThemePreview?

Galen

 Smiley Good name!
Logged

Pages: 1 2 3 4 5 6 [7] 8   Go Up
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.16 | SMF © 2011, Simple Machines

Valid XHTML 1.0! Valid CSS! Dilber MC Theme by HarzeM