WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: Change wbar Icon Size and Zoom  (Read 2319 times)

Offline mtc

  • Newbie
  • *
  • Posts: 24
Change wbar Icon Size and Zoom
« on: June 01, 2011, 12:05:02 PM »
I would like to configure the wbar icon size and zoom using a script rather than the slider bars. What file do I need to edit to make the changes? I can't seem to find it. Thank you for the help!

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: Change wbar Icon Size and Zoom
« Reply #1 on: June 01, 2011, 02:08:54 PM »
e.g.:

Code: [Select]
tc@box:~$ cat `which wbarmine.sh`
#!/bin/sh
wbar -bpress -config /usr/local/tce.wbar -pos bot-right -vbar -isize 24 -idist 0 -zoomf 2.5 -filter 1 -fc
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline mtc

  • Newbie
  • *
  • Posts: 24
Re: Change wbar Icon Size and Zoom
« Reply #2 on: June 03, 2011, 01:24:20 PM »
Thanks Tinypoodle for the commands.

Is there a script that starts with Tinycore I can put these values into? I would prefer to change the script that starts when Tinycore does rather than have my own. Thank you.

Offline tinypoodle

  • Hero Member
  • *****
  • Posts: 3857
Re: Change wbar Icon Size and Zoom
« Reply #3 on: June 03, 2011, 02:27:56 PM »
You explicitely asked about using a script!

config file is ~/.wbar
"Software gets slower faster than hardware gets faster." Niklaus Wirth - A Plea for Lean Software (1995)

Offline mtc

  • Newbie
  • *
  • Posts: 24
Re: Change wbar Icon Size and Zoom
« Reply #4 on: June 03, 2011, 03:04:14 PM »
You are correct. I did ask for a script originally and I did create a script using what you gave me. But, I realize now that I should have asked for the location of the wbar config file instead of a script. Thank you for the help.