윈도우7에서는 각 탭에 열려져있는 것을 밑에 섬네일 이미지로 미리보기를 할수있는데 파이어폭스 3.6에서는 기본적으로 지원이 안됩니다만 다음과 같은 설정을 하면 지원되게 할 수 있습니다

주소표시줄에 about:config 라고 입력한 뒤

필터에서 browser.taskbar.previews.enable 항목을 찾아서 true로 바꿔줍니다. 더블클릭하면 바뀜...

그러면 이제부터 탭의 섬네일 이미지가 나타나기 시작합니다.
Posted by The케이아스
,
한글로 검색해보면 전혀 나오지 않는 이것.

그냥 원론적인 운영체제 우선순위에 대한 얘기밖엔 검색되지 않더군요

프로그램을 낮으 우선순위로 실행시키고 싶다면 이렇게 하면 된다고 합니다.

먼저 실행시키고 싶은 프로그램의 바로가기를 만들고 그 명령줄 처음에 다음을 추가합니다

C:\Windows\System32\cmd.exe /c START /low

결과적으로는 예를 들면 이렇게 되겠죠

C:\Windows\System32\cmd.exe /c START /low D:\starcraft\starcraft.exe

근데 이렇게 실행한 프로세스를 작업관리자로 열어보면 그냥 Normal로 맞춰져 있습니다.... 그래서 실효성에 의심이 가긴 하는데....영문 사이트에는 이런 팁이 대부분이더군요...

윈 2000은 조금 다르던데.....XP, vista, 7은 공통인듯 합니다
Posted by The케이아스
,
출처는 http://exifeedi.tistory.com/243


요점은

/etc/fonts/conf.avail/29-language-selector-ko-kr.conf 파일에서

<!-- Turn off antialias and autohint for Korean fonts depending on pixelsize -->
<match target="font">
        <test name="lang" compare="contains">
                <string>ko</string>
        </test>
        <test name="pixelsize" compare="more">
                <int>10</int>
        </test>
        <test name="pixelsize" compare="less">
                <int>22</int>
        </test>
        <edit name="antialias" mode="assign">
                <bool>false</bool>
        </edit>
        <edit name="autohint" mode="assign">
                <bool>false</bool>
        </edit>
        <edit name="hintstyle" mode="assign">
                <const>hintmedium</const>
        </edit>
</match>



이 부분에서 붉은 부분을 true로 바꿔주는것이 포인트
Posted by The케이아스
,