web-dev-qa-db-ja.com

iMacの明るさのガジェット/ウィジェットはありますか?

そのため、PowerPCアーキテクチャを搭載したiMacG5でUbuntu12.04.1を実行しています。画面の明るさを調整できるfblevelというものがあることは知っていますが、使い方がよくわからないので、一日中端末から始めるのは本当に嫌です。

このために取り付けることができるスライダーはありますか?

ありがとう!

1
user89004

Ubuntu 11.10oneiricを実行しているiMac27 "の明るさを調整する簡単なスクリプトを作成しました。スクリプトはUbuntuの正確な12.10でも利用できるgsd-backlight-helperを使用しているため、これは12.10でも機能すると思います。(お知らせください)

私の解決策は、gnomeパネルに2つの明るさアイコンを追加することです。 1つは明るさを上げるためのもので、もう1つは明るさを下げるためのものです。 (スクリーンショットを参照)enter image description here

スクリプトiMac-brightness.shを/ home/USER /ディレクトリにコピーします

#!/bin/bash

# get the brightness as it is now
BRIGHTNESS=$(pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --get-brightness)

# Get the maximum possible brightness to set
MAXBRIGHTNESS=$(pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --get-max-brightness )

# If the user want to set the brightness higher than now the
# script is calles with the argument --up 
# ./iMac_brightness.sh --up 
if [ $1 == "--up" ];
   then
    # Check if we got more brightness steps left to raise the brightness
    if [ $BRIGHTNESS -lt $MAXBRIGHTNESS ] ;
        then    
        pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --set-brightness $(($BRIGHTNESS + 1 ));
    fi  
fi

# If the user want to set the brightness lower than now the
# script is calles with the argument --down 
# ./iMac_brightness.sh --down 
if [ $1 == "--down" ]
   then
    # Check if the brightness is't  as low as 1.
    # We won't go lower than 1
    if [ $BRIGHTNESS -gt 1 ] ;
        then    
       pkexec /usr/lib/gnome-settings-daemon/gsd-backlight-helper --set-brightness $(($BRIGHTNESS - 1 ));
    fi
fi

スクリプトを実行可能にする

chmod 755 ./iMac-brightness.sh

ホームディレクトリの明るさアイコンをコピーします(または、どこに置くかがわかっている場合は、好きな場所に)

Brightness up iconBrightness-down icon

次に、アイコンをgnomeパネルに追加します(gnomeパネルのマウスポインターを押して、左Altキー+右マウスボタンを押します)

明るさダウンの場合

  • パネルに追加
  • カスタムアプリケーションランチャー
  • 名前:ブライトネスダウン
  • コマンド:/home/USER/iMac_brightness.sh --down
  • 明るさダウンアイコンを選択します

明るさUPの場合

  • パネルに追加
  • カスタムアプリケーションランチャー
  • 名前:ブライトネスアップ
  • コマンド:/home/USER/iMac_brightness.sh --up
  • BrightnessUpアイコンを選択します

--upと--downの二重の「-」(マイナス記号)に注意してください

これで、gnomeパネルに2つのアイコンが表示されます。上または下をクリックするだけで明るさを調整できます。

1
Rob Groen