[ SOLVED ] Volume control icon for Openbox ?

Hello, everybody
Can anybody recommend or simply suggest some kind of volume control which can be added to tray ( i.e., clickable icon with a pop-up volume bar ) ?
I have been looking for this all over the net ( Google ) with no success.
Thanks in advance!
Last edited by Sample (2012-02-22 18:11:59)

I use the mouse wheel to adjust volume.  If you have alsa-utils installed, there is no need to install any other packages. Just edit your rc.xml file to include the following:
<mouse>
<context name="Desktop">
<mousebind button="Left" action="Click">
<action name="Execute">
<command>amixer sset Master toggle</command>
</action>
</mousebind>
<mousebind button="S-Right" action="Click">
<action name="Execute">
<command>amixer sset Master unmute</command>
</action>
</mousebind>
<mousebind button="S-Up" action="Click">
<action name="Execute">
<command>amixer sset Master,0 1+</command>
</action>
</mousebind>
<mousebind button="S-Down" action="Click">
<action name="Execute">
<command>amixer sset Master,0 1-</command>
</action>
</mousebind>
</context>
</mouse>
To use this, just move your mouse cursor to the desktop (not on any window), press the shift key and then the mouse wheel will adjust the volume. A left button click on the desktop will toggle mute/unmute and a shift-right click will unmute.
I use the mouse wheel to change workspaces, that is why I use shift-wheel to change volume. You could use the wheel (instead of shift-wheel) to change volume by doing
<mousebind button="Up" action="Click"> ... </mousebind>
<mousebind button="Down" action="Click"> ... </mousebind>
Last edited by rockin turtle (2012-02-23 00:37:19)

Similar Messages

  • Have Audigy2 in Vista, why are there two volume control icons in system tr

    Hi,
    I'm running an Audigy2 on a Windows Vista system. There are two volume control icons in the system tray. One is the Soundblaster control, the other is the Windows control.
    Are these two programs supposed to be running at the same time? Do they conflict with one another?
    Thanks for your time,
    Big Al Mintaka

    Hi pgaastra.  I don't know why there are two items in the task bar, but you have identified the
    recommended fix.  The why never bothered me enough to investigate, so maybe we will both
    find out now.
    Matt
    Message Edited by Matthew Williams on 04-16-2008 08:49 PM

  • Messed up volume control icon

    so i messed w/ the volume control icon loacated at:
    /System/Library/CoreServices/Menu Extras/Volume.menu
    and now i cant fix it and for some reason my friend doesnt even have the file on his mac. any suggestions? or could some1 send me a copy of the file via e-mail?

    Sent
    Tom

  • The volume control icon has disappered from the task bar.

     A few days ago I turned on my pc and found the volume control icon that is normally showing on the bottom task bar, had dissappeared?  I have explored every option (hidden icons etc.) but the icon does not exist anywhere.  Can you help?
    This question was solved.
    View Solution.

    Go to the link below.Enter your Product Number as listed on Service Tag attached to bottom of notebook (may be under battery). You can also get the Product Number by pressing Fn + Esc key. After entering PN, click Next ,then choose Software & Drivers.On the next page use the dropdown to select your OS (probably Windows 7 64bit). A list will populate with drivers. Download & Intall the latest Audio driver. Restart the laptop and check results.
    http://h10025.www1.hp.com/ewfrf/wc/siteHome?cc=us&lc=en
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • THE VOLUME CONTROL ICON DISAPPEARE​D. HOW DO I GET IT BACK?

    Volume control icon at the bottom of my screen has disappeared.  How do I get it back?

    Volume control icon at the bottom of my screen has disappeared.  How do I get it back?

  • After restarting my MacBook the volume control icon disappeared

    Where did the volume control icon go? Yes I can manually do it on my keyboard
    but after restarting my laptop yesterday, the icon is no longer there.

    Welcome to Apple Support Communities
    Try adding the volume control icon to menu bar. Open System Preferences > Sound, and mark "Show volume in menu bar"

  • Need volume control switch for Satellite U200

    Where can I obtain a new volume control switch for a PLUA1E-00700JEN?
    I do not want the complete board only the switch.

    Contact nearest authorized service provider. Make a call and ask if they can order this small part for you.
    Do you want to exchange it alone?
    Have you already disassembled your notebook?

  • [solved] Volume control in amarok doesn't work anymore

    Hi,
    since today in amarok (2.4.1) the volume control doesn't work anymore. I can change the level on the switch on the top right but it doesn't change the actual volume.
    The volume control in my KDE tray works as usual.
    Last edited by Barghest (2011-07-05 18:01:07)

    Just came back from suspend and it works again.
    Sorry for the noise.

  • Creating a Volume Control Bar for multiple audio files

    I'm fairly new to Flash and am developing a project with a
    series of frames that contain unique movie clips. Each of these
    frames are accessible through a chapter based menu as well as being
    viewable straight through as a regular movie. I've just added the
    audio for each "chapter" / frame that are all unique from one
    another. I'm having a problem with creating a volume control bar
    that will affect all audio throughout all frames from the single
    control bar on the general skin/interface that these chapters work
    out of. (Using Flash 8)
    I developed a sliding control bar, which works but does not
    affect the volume in any way. Is there something wrong with the
    following coding that I'm using? (The control bar is made up of a
    button nested in a movie clip and the action is being applied to
    the mc. The bar/line to follow is 60px long and the control is to
    move horizontally while the increase corresponds to increase in
    volume. The original code was for a 100px line from a macromedia
    tutorial that I adjusted to be 60px) Any advice on best practice
    for creating a volume control bar would be greatly appreciated! (I
    currently have all of my corresponding audio files on separate
    layers, should I be placing these within a mc rather than just
    having them on the main timeline?) Thank You!!!!

    Answering my own question.....
    Each individual swf has the code...
    var my_sound:Sound = new Sound();
    my_sound.loadSound("someSound.mp3", true);
    my_sound.setVolume(50);
    Code on Shell/main slide....
    //SOUND OBJECT
    var soundtrack:Sound = new Sound;
    soundtrack.setVolume(50);
    //END OF SOUND OBJECT
    //GLOBAL VOLUME CONTROL
    var nVolCheck:Number;
    volSlider.volBall.onPress = function():Void {
    this.startDrag (false, 0, 0, 75, 0);
    nVolCheck = setInterval(updateVolume, 150);
    volSlider.volBall.onRelease = function():Void {
    this.stopDrag ();
    clearInterval(nVolCheck);
    function updateVolume():Void {
    var vol:Number = (volSlider.volBall._x)*2;
    soundtrack.setVolume(vol);
    //END OF GLOBAL VOLUME CONTROL
    my bar is 75 pixels in width and the volume is being
    increased by 1.5 at its maximum.

  • Is there a volume control specific for Facetime?

    I'm wondering if there is a way to control the volume of Facetime without using the main volume control (like how you can control the volume of Skype within the application itself). Some kind of separate application or tweek?
    Thank you.

    No, there is no audio volume control specifically designed for the Facetime application.  I'm using Snow Leopard 10.6.8 here but I'm sure this info also applies to your osx.  You'll find that Facetime is not nearly as sophisticated as skype, at this point in time.
    Wuz

  • [Solved] Volume Control only works on root (Xfce)

    I just installed Xfce and everything has been going great. The only problem I have run into so far is a permissions error with the volume control as well as a problem streaming music from Pandora using Pithos. When ever I try to use the Mixer applet on a normal user account I get this error:
    GStreamer was unable to detect any sound devices. Some sound system specific GStreamer packages may be missing. It may also be a permissions problem.
    I also get this error (only on non-root accounts when trying to use Pithos to stream music from Pandora):
    GStreamer error: state change failed and some element failed to post a proper error message with the reason for the failure.
    I believe that both are permission errors, but how would I fix it?
    Last edited by biohazard35 (2011-05-18 15:30:27)

    Thanks for the help, I hope I get used to all this stuff soon!
    Last edited by biohazard35 (2011-05-18 01:57:39)

  • Volume control disabled for some tracks?

    trying to set the volume of specific tracks (i find soundcheck to be helpful but doesn't solve all problems). i select a track, click "get info", "options" and then adjust the volume. problem is, for some tracks the volume adjustment slider is greyed out and therefore i can't use it.
    why is this??
    thanks!

    I use the mouse wheel to adjust volume.  If you have alsa-utils installed, there is no need to install any other packages. Just edit your rc.xml file to include the following:
    <mouse>
    <context name="Desktop">
    <mousebind button="Left" action="Click">
    <action name="Execute">
    <command>amixer sset Master toggle</command>
    </action>
    </mousebind>
    <mousebind button="S-Right" action="Click">
    <action name="Execute">
    <command>amixer sset Master unmute</command>
    </action>
    </mousebind>
    <mousebind button="S-Up" action="Click">
    <action name="Execute">
    <command>amixer sset Master,0 1+</command>
    </action>
    </mousebind>
    <mousebind button="S-Down" action="Click">
    <action name="Execute">
    <command>amixer sset Master,0 1-</command>
    </action>
    </mousebind>
    </context>
    </mouse>
    To use this, just move your mouse cursor to the desktop (not on any window), press the shift key and then the mouse wheel will adjust the volume. A left button click on the desktop will toggle mute/unmute and a shift-right click will unmute.
    I use the mouse wheel to change workspaces, that is why I use shift-wheel to change volume. You could use the wheel (instead of shift-wheel) to change volume by doing
    <mousebind button="Up" action="Click"> ... </mousebind>
    <mousebind button="Down" action="Click"> ... </mousebind>
    Last edited by rockin turtle (2012-02-23 00:37:19)

  • Volume Control Icon

    I have a volume icon on the lower tool bar and I used to be able to click it and raise or lower volume-now nothing happens when I right click it.  Not sure of any other way to adjust volume--Pavillion notebook, Windows 7

    Thanks for your speedy response to my request for help.  Problem solved just by restarting the computer.  I am very grateful for the advice.  Kind regards.

  • I am having problems with an older ipod running 1.1.2 firmware trying to use earbuds with volume controls made for ipod. any suggestions?

    I am problems with an older Ipod classic running 1.1.2pc using earbuds with Ipod inline remote. The earbuds work fine with my new Ipod but not the older one. Any suggestions?

    1) This is because of software version 1.1. See this
    thread for some options as to how to go back to 1.0,
    which will correct the problem...
    http://discussions.apple.com/thread.jspa?threadID=3754
    59&tstart=0
    2) This tends to happen after videos. Give the iPod a
    minute or two to readjust. It should now be more
    accurate.
    3) This?
    iPod shows a folder icon with exclamation
    point
    4) Restore the iPod
    5) Try these...
    iPod Only Shows An Apple Logo and Will Not Start
    Up
    iPod Only Shows An Apple Logo
    I think 3,4, and 5 are related. Try the options I
    posted for each one.
    btabz
    I just noticed that one of the restore methods you posted was to put it into Disk Mode First rather than just use the resstore straight off, I Have tried that and seems to have solved the problem, If it has thank you. previously I have only tried just restoring it skipping this extra step. Hope my iPod stays healthy, if it doesnt its a warrenty job me thinks any way thanks again

  • Volume control help for OS X

    So, I have a Macbook Pro. I'm not sure what's happened, but I'm no longer able to control or mute my volume by the F10, 11, & 12 keys. I have to manually go to my system settings to control the volume. I'm also not seeing this red light others say they see when it happens to them. I'm shut the computer down, run my headphones in and out a number of times, etc, and I'm just at a loss for what else to do. Any ideas?

    Try a smc reset
    http://support.apple.com/kb/HT3964
    You can also try a pram reset: power off, power on holding the following keys: option command,P,R(no commas), continue to hold these keys till you hear the start chime 2 times. Release and rebot.
    Hope some help.

Maybe you are looking for

  • Layout designing

    hi   whenever a business partner interacts with CSR <call center representative> he may not be able to identify automatically & therefore the CSR would have to search for business partner with the details that he has been provided with.   For this pu

  • Pros / Cons of Running APEX on separate server

    Seeking feedback/thoughts on this general question. I am maintaining an APEX application that utilizes multiple schemas all residing in the same database as APEX. I am wondering what might be the pros / cons of putting APEX in a separate database and

  • MM Change Value String from new Movement Type. (URGENT)

    Dear friends , We have copied moviment type 501 and we need to change the value string to this movement. So after copy to 933 and creates value string ZA01 copied from WA01 , which tables should I change to value string of movment type use it ? We ar

  • Sorting elements in the X axis in BAM

    Hi all, Is there a way to sort how elements are shown in the X axis? For example, I have an Order graphic showing quantity of orders grouped by state of the order but I'd like the states to be in the order they appear in the business process. Thanks,

  • Syncing other calendars from my iPhone

    Currently I have my iPhone set up to sync with my work calendar (from Outlook). I can also see my iCloud/Mac Book Calendars on the phone, and when I set up an appointment in iCal - it will sync to the iphone through the icloud. The question is, is it