Laptop Mode (切换到内部或外部的显示屏幕)
Clone Mode (多个屏幕显示相同的内容)
Big Desktop (把一个桌面拉伸到两个屏幕)
Dual Head (在不同的屏幕运行不用的X)
char *abc (void)
{
char s[12]="Hello";
char *b=(char *)malloc(sizeof(char)*12);
strcpy(b, s);
return s;
}
int main (void)
{
char *c=NULL;
c=abc();
printf("%s\n",c);
}
----------------------------------------------------
[EeePC] 修改內建Linux在闔上螢幕時即待命的狀態
[轉貼]mobile01
用任何root的權限更改檔案 /etc/acpi/lidbtn.sh
(開啟terminal用sudo或是超級檔案管理員之類開啟kedit)
將 /etc/acpi/suspend2ram.sh 前加上 # (註解掉)
之後加上
xrandr --output LVDS --off
在 fi 和 exit 0 之間加上
if [ $LID_STATE = "open" ] ; then
xrandr --output LVDS --on
fi
這樣就會讓螢幕闔上時關閉螢幕而非待命,打開螢幕時,螢幕即啟動。
沒有留言:
張貼留言