win8的平板屏幕太亮,跪求能让屏幕再暗一点的东东

晚上用的时候刺瞎眼啊,已经最低亮度了还是…
希望有个像安卓上有的一款在桌面上直接半透明效果的软件,谢谢了

试试:护眼啦,开启:护眼滤光镜模式后,能将屏幕光线色调调节到一个比较柔和的灯光效果,过滤掉屏幕过强的光线能起到一定的缓解视觉疲劳的作用!

很多人说贴膜…

@ak360 额…我下载下来以后打开说windows smartscreen不让打开…怎么破

@leigh1625 应该可以关闭的

试试这个软件

f.lux

f.lux

@ak360 @艰苦奋斗_书剑_520c @xuxiabb @8geBug 谢谢大家的帮助,大家推荐的软件我都试了smartscreen也的确是可以关闭的,不过大家推荐的基本都是改变屏幕的色温来达到使屏幕变暗的效果,但是,但是看视频不能忍啊,细节根本看不到好吗…我以前安卓上用过一款软件,他相当于在全屏幕上覆盖了一张半透明的黑色壁纸,从而达到使屏幕更暗的效果,但完全不影响系统的使用…windows上没有吗…

@leigh1625 LS那些除了flux都是盖了一层半透明窗口的效果啊。类似还有一个叫做FadeTop的,试试看。
不过也没准是安卓的手机屏幕比较艳丽所以你感觉不出来画质的降低。。。

楼主 ,f.lux比其它都要好, 相信我.

其实一堆推荐flux的我反而我太想推荐~

@艰苦奋斗_书剑_520c 我现在就在用楼主的,很好用呐

@leigh1625 你不就是楼主么。。。

@theoractice 对哦

用 BrightnessControl 或 AHK 脚本

#SingleInstance,Ignore
SetTimer, Dim, off
Hotkey, *PGDN Up, , off
Hotkey, *PGUP Up, , off
DetectHiddenWindows, on
step = 5
DimLVL = 40
dim = 0
 
*Pause Up::
{
    if dim = 1
    {
        Hotkey, *Pause Up, , off
        Hotkey, *PGDN Up, , off
        Hotkey, *PGUP Up, , off
        SetTimer, tt, off
        SetTimer, aot, off
        dim = 0
        Gui,Destroy
        sleep 500
        ToolTip,
        Hotkey, *Pause Up, , on
        return
    }
    if dim = 0
    {
        Hotkey, *Pause Up, , off
        SetTimer, Dim, on
        SetTimer, aot, 1000
        dim = 1
        Hotkey, *Pause Up, , on
        Hotkey, *PGDN Up, , on
        Hotkey, *PGUP Up, , on
        return
    }
    return
}
 
*PGUP Up::
{
    DimLVL += %step%
    SetTimer, tt, off
    ttt = 50
    SetTimer, tt, 10
    SetTimer, edit, on
    return
}
*PGDN Up::
{
    DimLVL -= %step%
    SetTimer, tt, off
    ttt = 50
    SetTimer, tt, 10
    SetTimer, edit, on
    return
}
 
Dim:
{
    if DimLVL > 100
        DimLVL = 100
    Tempspeed = %DimLVL%
    Tempspeed *= 2.55
    editspeed = %Tempspeed%
    if editspeed > 255
        editspeed = 255
    Gui,Destroy
    Gui,color,000000
    Gui, -Caption +AlwaysOnTop +E0x20 +owner
    Gui,show, x0 y0 w%A_ScreenWidth% h%A_ScreenHeight%,AHKLBGUIFSOVERLAY
    WinSet, Transparent, %editspeed%, AHKLBGUIFSOVERLAY
    SetTimer, Dim, off
    return
}
 
edit:
{
    Hotkey, *Pause Up, , off
    Hotkey, *PGDN Up, , off
    Hotkey, *PGUP Up, , off
    SetTimer, trans, on
    SetTimer, edit, off
    Hotkey, *Pause Up, , on
    Hotkey, *PGDN Up, , on
    Hotkey, *PGUP Up, , on
    return
}
 
trans:
{
    if DimLVL < 1
    {
        DimLVL = 0
    }
    if DimLVL > 100
        DimLVL = 100
    Tempspeed = %DimLVL%
    Tempspeed *= 2.55
    editspeed = %Tempspeed%
    if editspeed > 255
        editspeed = 255
    WinSet, Transparent, %editspeed%, AHKLBGUIFSOVERLAY
    SetTimer, trans, off
    return
}
tt:
{
    if DimLVL < 1
        DimLVL = 0
    if DimLVL > 100
        DimLVL = 100
    if ttt > 150
    {
        ToolTip,
        SetTimer, tt, off
        return
    }
    ttt += 1
    ToolTip, Current Brightness`:`n%DimLVL%`%
    return
}
 
aot:
{
    WinSet, AlwaysOnTop, on, AHKLBGUIFSOVERLAY
    return
}

这是挖坟么

挖坟啦~~~