모양새 설정 방법

이 부분에서는 모양새에 관련된 설정의 필수값과 기본값을 설정하는 방법을 설명합니다.

1.7.1. 글꼴 설정 변경하기

글꼴 설정을 변경하려면, 다음 두 개의 설정 키의 값을 수정합니다. 아래의 표는 수정해야 할 키들과, 이에 관련된 사용자 인터페이스 부분을 보여줍니다:

GConf 위치 사용자 인터페이스 요소
/desktop/gnome/interface/font_name 글꼴 설정 도구, 응용프로그램 글꼴 옵션
/apps/nautilus/preferences/desktop_font 글꼴 설정 도구, 바탕 화면 글꼴 옵션

예를 들어 Sans 12 글꼴을 필수 응용프로그램 글꼴로 설정하려면 다음 명령을 실행합니다:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
  --type string \
  --set /desktop/gnome/interface/font_name "Sans 12"

palatino 12 글꼴을 바탕 화면 객체의 기본 글꼴로 설정하려면 다음 명령을 실행합니다:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
  --type string \
  --set /apps/nautilus/preferences/desktop_font "palatino 12"

1.7.2. 바탕 화면 설정하기

바탕 화면 그림의 설정을 변경하려면 /desktop/gnome/background 위치 내의 설정 키의 값들을 수정합니다. 예를 들어 배경 그림의 이미지의 필수값을 설정하려면 다음 명령을 실행합니다:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
  --type string \
  --set /desktop/gnome/background/picture_filename 파일-이름.png

이 설정의 기본값을 변경하려면, 다음 명령을 실행합니다:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
  --type string \
  --set /desktop/gnome/background/picture_filename 파일-이름.png

바탕 화면에 관련된 다른 설정들도 변경할 수 있습니다. 다른 바탕 화면 단축키 설정값들에 대한 정보는 desktop_gnome_background.schemas 스키마 정의 파일을 보기 바랍니다.

1.7.3. 스플래시 이미지 설정하기

스플래시 이미지 설정을 변경하려면 /apps/gnome-session/options/ 위치 내의 설정 키의 값들을 수정합니다. 예를 들어 사용자들에게 스플래시 이미지를 보여주지 않으려면 다음과 같이 필수값을 설정합니다:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.mandatory \
  --type bool \
  --set /apps/gnome-session/options/show_splash_screen false

이 설정의 기본값을 변경하려면, 다음 명령을 실행합니다:

gconftool-2 --direct \
  --config-source xml:readwrite:/etc/gconf/gconf.xml.defaults \
  --type bool \
  --set /apps/gnome-session/options/show_splash_screen false

스플래시 이미지에 관련된 다른 설정들도 변경할 수 있습니다. 다른 스플래시 이미지 설정값들에 대한 정보는 gnome-session.schemas 스키마 정의 파일을 보기 바랍니다.