강좌 / 팁

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

2019.07.23 22:29

갑파니 조회:1595 추천: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 - - -
4440 기 타| 컴퓨터 구매의 질문이 종종 보여서 나름의 팁을 얘기 합니다. [8] Boss 1939 6 02-19
4439 윈 도 우| 이 번 업데이트로 엣지에 추가된 사이드바 버튼 제거 [7] 고고추 2167 9 02-16
4438 윈 도 우| cmd 관리자 권한 실행과 특수문자 경로 문제 [9] 메리아 1098 12 02-14
4437 윈 도 우| 측면 버튼에 등록된 돋보기 기능... 기본값으로 복원 [2] 사가르마타 1056 0 02-10
4436 윈 도 우| 윈11 탐색기 메뉴삭제 [5] 진실 2421 19 02-06
4435 윈 도 우| 윈도우 탐색기 갤러리 안보이게 하는 방법 [1] 사가르마타 1584 2 02-05
4434 기 타| 한 드라이브에 윈도우(Atlas OS)까지 2개 설치하는 법(?) (... 누군가 1150 0 02-04
4433 기 타| 2024 새로운 시작, Rainmeter, 위젯, 바탕화면, 퍼포먼스 [16] 모네곰 2575 38 02-01
4432 윈 도 우| 윈도우10~11 알고리즘에 영향을 끼치는 이미지 파일 삭제 ... [2] risystem 2310 4 01-23
4431 윈 도 우| Windows11 트레이 아이콘 내맘대로... [9] 메인보드 3856 15 01-07
4430 기 타| 파워쉘로 WOL 수행 [3] JR.오펜하이 1467 9 01-06
4429 윈 도 우| 무인응답파일(autounattend.xml) 쉽게 만들기 [30] 네오이즘 3832 60 12-31
4428 기 타| 크롬, 파이어폭스 사용자를 위한 웹 자막은 이런것 모네곰 1388 1 12-31
4427 윈 도 우| Windows 11 설치 할 때 MS계정 로그인 스킵 [13] Corns7 3786 10 12-30
4426 기 타| 모든 영상을 순간으로 MP4 확장자로 변환. [18] 모네곰 2420 28 12-30
4425 소프트웨어| PE 환경에서 AOMEI Backupper 구동을 위한 파일, 레지스트... [11] 무월 1300 22 12-27
4424 소프트웨어| pureBasic - WIM 정보 v0993 - 내부 파일 추가 삭제 내보내... [40] 입니다 8631 160 12-22
4423 소프트웨어| pureBasic - IXMLDOMDocument [6] 입니다 1307 27 12-16
4422 기 타| WSA + ReVanced Extended 조합 체리마키아 1955 13 12-09
4421 기 타| 희안한 유튭광고 제거 경험 공유 [3] 트레져sn 3967 6 12-09
XE1.11.6 Layout1.4.8