Re: [e-users] Volume control - keyboard

2016-03-29 Thread Christopher Barry
On Tue, 29 Mar 2016 21:25:49 -0500
Larry Wyble  wrote:

>Where can I adjust the steps of the keyboard volume controls. I use the
>Built in XF86AudioRaiseVolume but I can't find where it calls the
>actual steps to increase volume. The way it is set, it is too course.
>Like one press of the volume up key increases the volume way too high,
>I would like to have a finer control of the volume.
>
>Thanks
>


https://www.youtube.com/watch?v=4xgx4k83zzc

:)

-- 
Regards,
Christopher

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] Volume control - keyboard

2016-03-29 Thread Larry Wyble

Where can I adjust the steps of the keyboard volume controls. I use the
Built in XF86AudioRaiseVolume but I can't find where it calls the
actual steps to increase volume. The way it is set, it is too course.
Like one press of the volume up key increases the volume way too high,
I would like to have a finer control of the volume.

Thanks

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] terminology select with doubleclick

2016-03-29 Thread Boris Faure
On 16-03-29 11:00, dabicho wrote:
> Hello.
> I am new here.
> 
> I wanted to know if this is intended behaviour and why?
> 
> If this string is presented on the terminal
> 
> ./data/dir/images
> 
> double-cklicking selects only
> 
> /data/dir/images
> 
> However, for example, right-click and copy selects complete url so
> when I paste (with keyboard shortcut)
> 
> /home/user/./data/dir/images
> 
> 
> Is it posible to have double-clicking select the first colon too?

It is already fixed in the git repository. I need to do a new release
some day :)
-- 
Boris Faure
Pointer Arithmetician
--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


[e-users] terminology select with doubleclick

2016-03-29 Thread dabicho
Hello.
I am new here.

I wanted to know if this is intended behaviour and why?

If this string is presented on the terminal

./data/dir/images

double-cklicking selects only

/data/dir/images

However, for example, right-click and copy selects complete url so
when I paste (with keyboard shortcut)

/home/user/./data/dir/images


Is it posible to have double-clicking select the first colon too?

Thank you

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] enlightenment hangs while editing firefox url bar

2016-03-29 Thread The Rasterman
On Tue, 29 Mar 2016 09:25:00 +0300 Gleb Natapov  said:

> On Tue, Mar 29, 2016 at 11:50:26AM +0900, Carsten Haitzler wrote:
> > 2 things could be at fault.
> > 
> > 1. xserver bug (or driver bug inside xserver)
> > 2. someone has the xserver grabbed.
> > 
> > it could be e has the server grabbed and your gl driver is using a SEPARATE
> > display connection other than e/gl's main one (you initialize your gl
> > context from your display connection). this can be a deadlock. this
> > generally is poor/bad design inside the driver to do this because it
> > doesn't use the display connection it is told to. i would class this as a
> > driver bug.. anyway  under e's
> > 
> > settings -> look -> compositor -> advanced -> misc
> > 
> > is "grab server during draw". this is there to try and minimize "tearing" by
> > locking out applications from drawing while the compositor is busy
> > compositing or using their pixmaps as sources. this doesn't guarantee it
> > but it's a try. is this on or off? if on - try turn it off. other than this
> > i know of no grab from e that would be held while e draws so it likely is
> > #1 above.
> > 
> The setting is off.

then ... we're down to ... #1. :( most likely. at least the breadcrumbs lead
there right now.

> > > On the other note IIRC when older version crashed they remembered
> > > windows positions and after pressing F1 desktop returned to the same
> > > state. With 0.20 it remembers a virtual desktop a windows belongs to,
> > > but it changes its placement and forget that window is maximized, so it
> > > cannot be de-maximized afterwords (or so I noticed for xterm at least).
> > 
> > i think that was a bug to do with screen reconfiguration and
> > losing/recovering a screen. it has since been fixed in git. :)
> > 
> Hope Fedora will upgrade soon. Thanks!
> 
> --
>   Gleb.
> 


-- 
- Codito, ergo sum - "I code, therefore I am" --
The Rasterman (Carsten Haitzler)ras...@rasterman.com


--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users


Re: [e-users] enlightenment hangs while editing firefox url bar

2016-03-29 Thread Gleb Natapov
On Tue, Mar 29, 2016 at 11:50:26AM +0900, Carsten Haitzler wrote:
> 2 things could be at fault.
> 
> 1. xserver bug (or driver bug inside xserver)
> 2. someone has the xserver grabbed.
> 
> it could be e has the server grabbed and your gl driver is using a SEPARATE
> display connection other than e/gl's main one (you initialize your gl context
> from your display connection). this can be a deadlock. this generally is
> poor/bad design inside the driver to do this because it doesn't use the 
> display
> connection it is told to. i would class this as a driver bug..
> anyway  under e's
> 
> settings -> look -> compositor -> advanced -> misc
> 
> is "grab server during draw". this is there to try and minimize "tearing" by
> locking out applications from drawing while the compositor is busy compositing
> or using their pixmaps as sources. this doesn't guarantee it but it's a try. 
> is
> this on or off? if on - try turn it off. other than this i know of no grab 
> from
> e that would be held while e draws so it likely is #1 above.
> 
The setting is off.

> > On the other note IIRC when older version crashed they remembered
> > windows positions and after pressing F1 desktop returned to the same
> > state. With 0.20 it remembers a virtual desktop a windows belongs to,
> > but it changes its placement and forget that window is maximized, so it
> > cannot be de-maximized afterwords (or so I noticed for xterm at least).
> 
> i think that was a bug to do with screen reconfiguration and losing/recovering
> a screen. it has since been fixed in git. :)
> 
Hope Fedora will upgrade soon. Thanks!

--
Gleb.

--
Transform Data into Opportunity.
Accelerate data analysis in your applications with
Intel Data Analytics Acceleration Library.
Click to learn more.
http://pubads.g.doubleclick.net/gampad/clk?id=278785471=/4140
___
enlightenment-users mailing list
enlightenment-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-users