티스토리 뷰
우분투 기본 로그인의 모습은 아래와 같이 너무 너무 "나 우분투야!"라는 걸 뽐내고 있다.
뭔가 설정에서 변경하는 걸 지원할 것 같지만 설정에서는 지원하지 않는다.
조금 귀찮지만 설정 파일을 수정해주는 방식이다.
수정하는 방법
$ sudo vi /usr/share/gnome-shell/theme/ubuntu.css
위 파일은 우리가 수정해야할 파일이고 이를 수정하기 위해서는 root 권한이 필요하다.
이 파일을 열면 아래와 같이 우리가 흔히 볼 수 있는 css 파일이 나오고 lockDialogGroup
을 검색해서 수정하면 된다.
#lockDialogGroup {
background: #2c001e url(resource:///org/gnome/shell/theme/noise-texture.png);
background-repeat: repeat; }
위 파일에서 url 부분을 원하는 이미지로 수정해주면 된다.
#lockDialogGroup {
background: #2c001e url(file:///usr/share/backgrounds/lockscreen.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center; }
당연히 /usr/share/backgrounds/lockscreen.jpg 파일은 존재하지 않으니 원하는 이미지를 이 경로에 복사해준다.
$ sudo cp lockscreen.jpg /usr/share/backgrounds/
수정 후 리부팅하면 변경된 모습을 볼 수 있다.
듀얼 모니터인 경우
듀얼 모니터를 쓰는 경우 이미지가 원하는대로 나타나지 않을텐데 이때는 아래와 같이 수정하면 두 모니터 모두 동일한 배경화면으로 변경된다.
기본적으로 가운데 정렬로 되어 있는 걸 왼쪽에 딱 붙이는 방법이다.
#lockDialogGroup {
background: black url(file:///usr/share/backgrounds/lockscreen.jpg);
background-position: 0 0;
background-repeat: repeat; }
변경된 모습
'OS > Linux' 카테고리의 다른 글
GNOME Shell 메모리 누수 문제 (0) | 2019.12.03 |
---|---|
[우분투 18.04] 로그인 배경화면 변경하는 방법 (0) | 2019.11.28 |
Citrix Workspace Certificate Error 61 (0) | 2019.11.21 |
[Ubuntu 18.04] 웨일 브라우저용 flash 설치하기 (0) | 2019.08.09 |
background process 종료하는 법 (0) | 2019.08.06 |
우분투 18.04에 flash player 설치하는 방법 (0) | 2019.05.29 |
Comments