教學/修改 KDE 默認設定

From KDE UserBase Wiki
Revision as of 13:47, 6 September 2011 by Qiii2006 (talk | contribs) (Created page with "有3種基本情況時,您需要修改預設值: * 您是系統管理員,每天增加12個新用戶。 你希望新用戶擁有相同的設定但KDE Plasma桌面的預設...")

有3種基本情況時,您需要修改預設值:

  • 您是系統管理員,每天增加12個新用戶。 你希望新用戶擁有相同的設定但KDE Plasma桌面的預設值不符合
  • 您是系統管理員,需要修改所有用戶的桌面或系統設定。 登入為該用戶再用系統設定修改並不是一種好選擇。
  • 你有幾台KDE 桌面的機器,也許在工作中的電腦在proxy內,一台在家裡和一些進行測試的虛擬機。您要頻繁地重新安裝電腦,希望您的設定將再次套用。

In any case you will have to make changes to the setting files in ~/.kde or ~/.kde4 or /usr/local/share or /usr/share.

/etc/skel

When a new user is created, the content from /etc/skel is copied to his home directory. If you want to change the settings for all future users, just change the files in /etc/skel.

Examples

To change the default browser, use the program System Settings. However, there are situations where you cannot call systemsettings. In this case you can use the following script. It changes the default browser to Firefox:

#!/bin/bash
# This file sets up a computer as tstaerk likes it. Call it after you have performed the OS installation.
# 1. set default browser to firefox # 1.1. for SUSE Linux, where we have to look in .kde4 instead of .kde # The key for default browser is BrowserApplication. cd cd .kde4/share/config # first delete all the old entries for BrowserApplication sed -i 's/BrowserApplication\[\$e\]=.*//g' kdeglobals # add BrowserApplication to the General section if a General section exists sed -i 's/\[General\]/\[General\]\nBrowserApplication\[\$e\]=!firefox/g' kdeglobals # add a General section and the key BrowerserApplication if no General section exists grep "\[General\]" kdeglobals || echo -e "\n[General]\nBrowserApplication[\$e]=!firefox" >> kdeglobals