다음과 같이 쉽게 바탕화면 및 로그인 화면을 변경할 수 있다. 1
하지만! 자동 로그인을 하지 않는 이상은 잠깐동안 아래의 우분투의 기본화면이 보인다!
아니면 이 색상의 화면이 보인다!!!
#2C001E
바탕화면을 변경했는데도 보라색 계열의 우분투 바탕화면이 남아있다...
그래서 이것을 해결할 방법을 찾아보고 시도해보니 아래와 같은 방법으로 해결할 수 있었다.
(물론 이것보다 더 좋거나 간편한 방법이 있을 수도 있다!)
다음 파일을 수정한다.
$ sudo vim /usr/share/glib-2.0/schemas/com.canonical.unity-greeter.gschema.xml
해당 파일을 에디터로 열어보면 다음과 같으며 표시한 곳이 로그인 이전의 화면에 영향을 주는 부분이다.
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="unity-greeter">
<schema id="com.canonical.unity-greeter" path="/com/canonical/unity-greeter/">
<key name="background" type="s">
<default>'/usr/share/backgrounds/warty-final-ubuntu.png'</default>
<summary>Background file to use, either an image path or a color (e.g. #772953)</summary>
</key>
<key name="background-color" type="s">
<default>'#2C001E'</default>
<summary>Background color (e.g. #772953), set before wallpaper is seen</summary>
</key>
<key name="draw-user-backgrounds" type="b">
<default>true</default>
<summary>Whether to draw user backgrounds</summary>
</key>
<key name="draw-grid" type="b">
<default>true</default>
<summary>Whether to draw an overlay grid</summary>
</key>
... 생략 ...
해당 부분을 원하는 그림파일 위치로 변경을 하든 아니면 해당 파일명만 동일하게 가져가고 파일을 교체하면 된다.
또 아래의 색상코드는 해당 화면이 로딩되기 전에 보이는 색상이므로 원하는 색상코드를 입력해서 수정하면 된다.
이후 다음과 같이 적용하면 된다.
$ sudo glib-compile-schemas /usr/share/glib-2.0/schemas/
[참조]
- 이전글 참조(http://bubobubo.tistory.com/15) [본문으로]
'Linux > Ubuntu' 카테고리의 다른 글
Java classpath command-line option (0) | 2016.09.18 |
---|---|
Ubuntu's bootsplash (0) | 2016.09.15 |
Oracle JDK Installation on Ubuntu (0) | 2016.09.14 |
우분투 테마 설치 및 적용 (0) | 2016.09.14 |
그림파일을 기본 바탕화면 목록에 등록하기 (0) | 2016.09.14 |