SEARCH

Enter your search query in the box above ^, or use the forum search tool.

You are not logged in.

#1 2010-05-10 10:57:26

charl
#! Member
From: Cape Town, South Africa
Registered: 2010-05-02
Posts: 55

Samsung N110 Statler To-Do List and Progress

Here is my to-do list for my N110 and Statler.

Will keep a log of the progress and supply code where I can for anyone having similar queries. This will be a work in progress so give it some time.
And I hope other people will gain something from this.

Will be building on this post covering the Samsung NC10. http://crunchbanglinux.org/forums/topic … sung-nc10/ And I will edit the post after seeing which items from the post are still relevant in Statler.

Samsung N110 #!Statler Project(work in progress)

1. Fn-Keys

  • Identify all the keys - done

  • Check current bindings done, but with queries

  • Fix missing key bindings

2. Power Management

  • Suspend/Hibernate issue

  • AC Power/Battery profiles

  • Test battery performance

  • Optimise battery performance

1. Fn-Keys

Key: Fn+Esc
Original WinXP: Sleep
Current Statler: none
xev binding: XF86Sleep
(only when num lock is on)

Key: Fn+F2
Original WinXP: Battery Guage
Current Statler: none
xev binding: XF86Battery

Key: Fn+F3
Original WinXP: Euro sign
Current Statler: none
xev binding: Alt_L

Key: Fn+F4
Original WinXP: LCD/CRT
Current Statler: none
xev binding: XF86Display

Key: Fn+F5
Original WinXP: Backlight
Current Statler: none
xev binding: XF86Launch1

Key: Fn+F6 WORKING
Original WinXP: Mute/Unmute
Current Statler: Mute/Unmute
xev binding: XF86AudioMute

Key: Fn+F7
Original WinXP: Samsung Support Centre
Current Statler: none
xev binding: XF86Launch2

Key: Fn+F8
Original WinXP: Easy SpeedUp manager
Current Statler: none
xev binding: XF86Launch3

Key: Fn+F9
Original WinXP: WLAN on/off
Current Statler: none
xev binding: XF86WLAN

Key: Fn+F10 WORKING
Original WinXP: Touchpad on/off
Current Statler: Touchpad on/off
xev binding: XF86TouchpadToggle

Key: Fn+F11 WORKING
Original WinXP: Num Lock
Current Statler: Num Lock
xev binding: Num_Lock

Key: Fn+F12
Original WinXP: Scroll Lock
Current Statler: none
xev binding: Scroll_Lock

Key: Fn+up arrow
Original WinXP: Brightness Up
Current Statler: none
xev binding: XF86BrightnessUp
(only when num lock is on)

Key: Fn+down arrow
Original WinXP: Brightness Down
Current Statler: none
xev binding: XFBrightnessDown
(only when num lock is on)

Key: Fn+left arrow WORKING
Original WinXP: Volume Down
Current Statler: Volume Down
xev binding: XF86AudioLowerVolume

Key: Fn+right arrow WORKING
Original WinXP: Volume Up
Current Statler: Volume Up
xev binding: XF86AudioRaiseVolume

Last edited by charl (2010-05-10 12:43:22)


Registered Linux User #402686 | Never underestimate the power of stupid people in large groups...
facebook | identi.ca | last.fm

Offline

Be excellent to each other!

#2 2010-05-10 12:13:51

charl
#! Member
From: Cape Town, South Africa
Registered: 2010-05-02
Posts: 55

Re: Samsung N110 Statler To-Do List and Progress

Fn_Key for Volume up/down resolved using the NC10 guide

Added the following code into the rc.xml file

<keybind key="XF86AudioLowerVolume">
    <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    <action name="Execute">
        <execute>amixer -c 0 set Master 2dB-</execute>
    </action>
    </keybind>
<keybind key="XF86AudioRaiseVolume">
    <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    <action name="Execute">
        <execute>amixer -c 0 set Master 2dB+</execute>
    </action>
    </keybind>

Was curious to note that the code

<keybind key="XF86AudioMute">
      <action name="Execute">
        <execute>amixer -c 0 set Master mute</execute>
      </action>
          <action name="Execute">
        <execute>amixer -c 0 set Master unmute</execute>
    </action>
    </keybind>

didn't do anything... but only using

<keybind key="XF86AudioMute">
      <action name="Execute">
        <execute>amixer -c 0 set Master mute</execute>
      </action>
    </keybind>

works, just then using the volume controls again to increace the volume.

EDIT Mute/Umute working now, substituted the above code with

<keybind key="XF86AudioMute">
      <action name="Execute">
        <execute>amixer -c 0 set Master toggle</execute>
      </action>
    </keybind>

Last edited by charl (2010-05-10 12:42:21)


Registered Linux User #402686 | Never underestimate the power of stupid people in large groups...
facebook | identi.ca | last.fm

Offline

#3 2010-05-10 12:26:32

charl
#! Member
From: Cape Town, South Africa
Registered: 2010-05-02
Posts: 55

Re: Samsung N110 Statler To-Do List and Progress

Fn_Key for Brightness guidelines from the NC10 guide not working for the N110 in Statler.

Installed xbacklight, but running it in terminal only gives

charl@ev0k:~$ xbacklight
No outputs have backlight property

Does xbacklight work in Statler? If not are there alternatives?

Last edited by charl (2010-05-10 12:26:47)


Registered Linux User #402686 | Never underestimate the power of stupid people in large groups...
facebook | identi.ca | last.fm

Offline

#4 2010-05-10 20:32:59

rizzo
#! wanderer
From: ~/
Registered: 2008-11-25
Posts: 5,109

Re: Samsung N110 Statler To-Do List and Progress

Move to the Devel: CrunchBang 10 "Statler" forum smile

Offline

#5 2010-05-11 14:57:24

charl
#! Member
From: Cape Town, South Africa
Registered: 2010-05-02
Posts: 55

Re: Samsung N110 Statler To-Do List and Progress

No problem there, hope other people can find this useful.

I'm not going to be updating this week again, going away with my girlfriend for a well deserved long weekend in the middle of nowhere. smile

But once I am back I'll jump in with this little project of mine.


Registered Linux User #402686 | Never underestimate the power of stupid people in large groups...
facebook | identi.ca | last.fm

Offline

#6 2010-06-10 14:53:45

charl
#! Member
From: Cape Town, South Africa
Registered: 2010-05-02
Posts: 55

Re: Samsung N110 Statler To-Do List and Progress

So yes I know that this has been a little dormant, and for that I apologise smile
Finally have time again to sit and tinker.

I have noticed something interesting, I reinstalled #! but this time using XFCE instead of Openbox, and now none of the Fn keys are working.
xev is picking up the command, but no response from the command.

Any suggestions?
But I will be digging too.


Registered Linux User #402686 | Never underestimate the power of stupid people in large groups...
facebook | identi.ca | last.fm

Offline

#7 2010-06-10 17:30:54

rizzo
#! wanderer
From: ~/
Registered: 2008-11-25
Posts: 5,109

Re: Samsung N110 Statler To-Do List and Progress

^ Go into Settings-->Keyboard-->Layout, uncheck Use system defaults and set the keyboard layout manually.

Offline

#8 2010-06-17 05:32:39

charl
#! Member
From: Cape Town, South Africa
Registered: 2010-05-02
Posts: 55

Re: Samsung N110 Statler To-Do List and Progress

Tried all the generic layouts but still no repsonse from the Fn keys like in Openbox, might need to go back to it then. Very odd.


Registered Linux User #402686 | Never underestimate the power of stupid people in large groups...
facebook | identi.ca | last.fm

Offline

Board footer

Powered by FluxBB

Copyright © 2012 CrunchBang Linux.
Proudly powered by Debian. Hosted by Linode.
Debian is a registered trademark of Software in the Public Interest, Inc.

Debian Logo