강좌 / 팁

소프트웨어 레인미터로 아이콘배경색 모양 변경하기

2019.07.23 22:29

갑파니 조회:1590 추천:5

레인미터로 아이콘배경색이나 모양을 쉽게 만들 수 있습니다.

 

ba.jpg

 

예제로 첨부한 스킨은 위와 같습니다. 모양은 원 육각형등 다양하게 변경할 수 있습니다.

 

아래는 스킨의 내용입니다.


[FrostedGlass]
Measure=Plugin
Plugin=FrostedGlass
Type=none
Border=All
;Type Blur, Acrylic, and None
;Valid values are All, None, Left, Right, Top and Bottom.
;In order to mix and match the borders can you select a few of the sides by piping them together. e.g Border=Left | Right will create a border on only the left and right side of the skin and not on the top and bottom.

 

위에 부분은 도형의 채우기색을 투명값을 주었을때 흐림효과를 주는것입니다.

Type=none값만 보시면 됩니다.

Blur(조금 흐림), Acrylic(흐림), and None(흐림 효과 없음)

 

[MeterBg]
Meter=Shape
DynamicVariables=1
X=(14*#Scale#)
Y=(0*#Scale#)
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#), | Fill Color #color2# | StrokeWidth 0 | Stroke Color #color1# 

 

가장 위의 바탕스킨입니다.

Fill Color = 채우기색입니다.


[MeterBg2]
Meter=Shape
DynamicVariables=1
X=(0*#Scale#)r
Y=(70*#Scale#)r
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#) | Fill Color #color2# | StrokeWidth 0 | Stroke Color #color1# 

 

2번째입니다.

X,Y 괄호뒤에r은 위에 바탕스킨에서 해당값만큼 이동하라는것입니다.

Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#)

에서 (4*#Scale#)은 사각형의 각진부분을 둥글게 해주는 값입니다. 값이 클수록 더 둥글어집니다.


[MeterBg3]
Meter=Shape
DynamicVariables=1
X=(0*#Scale#)r
Y=(70*#Scale#)r
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#) | Fill Color #color2#,125 | StrokeWidth 1 | Stroke Color #color1#

 

3번째 스킨입니다.

StrokeWidth는 외곽선 두께입니다. 0이면 외곽선이 없는것입니다. 값이 클수록 두꺼워집니다.

Stroke Color는 외곽선 색입니다.

Fill Color #color2#,125에서 125는 투명도입니다. 1이면 완전투명입니다. 1~255사이에서 값을 주시면 됩니다.

 

[MeterBg4]
Meter=Shape
DynamicVariables=1
X=(0*#Scale#)r
Y=(70*#Scale#)r
Shape=Rectangle (3*#Scale#),(3*#Scale#),(50*#Scale#),(50*#Scale#),(4*#Scale#) | Fill Color #color2#,125 | StrokeWidth 3 | Stroke Color #color1# 

 

4번째 스킨입니다.

 

첨부된 스킨은 더블클릭하면 색을 조절할수 있는 세팅스킨도 포함시켜놓았습니다.

내용에서 보시면 아시겠지만 color1이 외곽선 색이고 color2가 채우기 색입니다.

예제 스킨은 첨부파일에 넣어두었습니다.

 

ExampleMeterShape.jpg

위에 내용에서 (14*#Scale#)이런식으로 한 이유는 마우스 휠로 편하게 크기를 조절하기위해 추가한 내용입니다.

아래에서 원하는 도형의 값을 확인 하실수 있습니다.

[Rainmeter]
Update=1000
DynamicWindowSize=1
AccurateText=1

[MeterRectangle]
Meter=Shape
X=2
Y=2
Shape=Rectangle 0,0,100,100 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterRotatedRectangle]
Meter=Shape
X=25R
Y=14r
Shape=Rectangle 0,0,70,70 | Extend MyModifiers1, MyModifiers2
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255
MyModifiers2=Rotate 45

[MeterRoundedRectangle]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,20 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterRoundedX]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,40,20 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterRoundedY]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,20,40 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterOvalWide]
Meter=Shape
X=10R
Y=15r
Shape=Rectangle 0,0,100,70,50 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterOvalTall]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,70,100,50 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterEllipse]
Meter=Shape
X=10R
Y=2
Shape=Rectangle 0,0,100,100,50 | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 4 | Stroke Color 46,115,31,255

[MeterLine]
Meter=Shape
X=0
Y=20R
Shape=Rectangle 0,0,858,2, | Extend MyModifiers1
MyModifiers1=Fill Color 191,237,239,255 | StrokeWidth 0

 

https://docs.rainmeter.net/manual/meters/shape/

에서 가져왔습니다.

번호 제목 글쓴이 조회 추천 등록일
[공지] 강좌 작성간 참고해주세요 gooddew - - -
4269 윈 도 우| PE에서 NVME 드라이브 보이게 하기 [2] 좋게멋지게 1763 9 12-09
4268 윈 도 우| 핀 번호 암호 모를때 pe에서 간단한 작업후 로그인하고 핀... [4] heykevin 1739 6 12-08
4267 윈 도 우| [실사] 윈도우10,11 PIN번호 분실 암호 재설정으로 우회 로... [9] 무월 2531 11 12-07
4266 윈 도 우| [실사] 윈도우10,11 로그인 비밀번호 재설정 및 제거 [8] 무월 1975 16 12-07
4265 윈 도 우| [실사] 윈도우11&10 BCD 부팅 오류, 부트 복구(설치) [16] 무월 2399 24 12-05
4264 윈 도 우| [실사] 윈도우11 사용자 계정 만료 해제 방법! [4] 무월 1663 7 12-05
4263 윈 도 우| ISO 마운트 - 작업 - 꺼내기, ISO2WIM 추출 [5] 지후빠 1176 20 12-04
4262 윈 도 우| [실사] 윈도우10 사용자 계정 만료 해제 방법! [9] 무월 1448 15 12-04
4261 윈 도 우| 배치파일에서 내장명령어로 대기시간 구현 sleep [8] 지후빠 1008 14 12-01
4260 윈 도 우| 내용추가-WinNtSetup 사용하여 윈도우 설치용 VHD(가상 드... [5] 타천사둘리 1307 15 12-01
4259 윈 도 우| 정리하는 스크립트 V 0.2 [배포중단] [13] 졸린사자 1894 11 11-30
4258 윈 도 우| WinNtSetup 사용하여 윈도우 설치용 VHD(가상 드라이브 파... [4] 타천사둘리 1223 9 11-30
4257 모 바 일| CX파일탐색기를 이용한 핸드폰과 PC 간 데이터 교환 [10] 읍민Kaine 1289 9 11-30
4256 윈 도 우| 윈도우 설치후 필수 폴더 빠른 이동 방법 [8] 사랑이7 2301 11 11-25
4255 소프트웨어| VMware 17 새 기능인 가상 머신 자동 부팅 기능 사용법 [9] 녹색조각 2675 9 11-20
4254 윈 도 우| 윈도우11에서 반디집 7.2x 버전 포함하여 봉인하기! [14] 무월 3779 20 11-15
4253 윈 도 우| 윈도우7에서홈피 윈도우10업데이트안될때 사용법 [5] 앙앙잉잉 1092 1 11-14
4252 윈 도 우| [실사] Windows 10/11 업데이트 통합본 ISO 만들기 [16] 무월 3149 31 11-12
4251 소프트웨어| WinISO Download-Update 모음 [11] sunshine 2651 20 11-12
4250 윈 도 우| VHD 에 ISO 이용하여 Zorin-OS 설치하기(윈도우 설치도 동... [5] 타천사둘리 1701 7 11-10
XE1.11.6 Layout1.4.8