I still have not figured out how to create a button for lowering the screen brightness beyond the normal low setting that's possible using the following command from the xterminal as root. Can anyone step it out or make it work with DCEW? echo 2 > /sys/class/backlight/acx565akm/brightness
echo "echo 2 > /sys/class/backlight/acx565akm/brightness" | sudo gainroot
--- desktop-cmd-exec-1.01.orig/desktop-cmd-exec.c+++ desktop-cmd-exec-1.01/desktop-cmd-exec.c@@ -1096,6 +1096,12 @@ gtk_size_group_add_widget (group, commandLabel); GtkWidget *commandEntry = hildon_entry_new (HILDON_SIZE_AUTO_WIDTH | HILDON_SIZE_FINGER_HEIGHT);+ //Disable automatic capitalisation + HildonGtkInputMode input_mode = hildon_gtk_entry_get_input_mode (GTK_ENTRY (commandEntry));+ input_mode &= ~HILDON_GTK_INPUT_MODE_AUTOCAP;+ //input_mode &= ~(HILDON_GTK_INPUT_MODE_AUTOCAP | HILDON_GTK_INPUT_MODE_DICTIONARY);+ hildon_gtk_entry_set_input_mode (GTK_ENTRY (commandEntry), input_mode);+ //END: Disable automatic capitalisation gtk_box_pack_start (GTK_BOX (commandBox), commandLabel, FALSE, FALSE, 0); gtk_box_pack_start (GTK_BOX (commandBox), commandEntry, TRUE, TRUE, 0); if(!new)