14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
*.tar.gz
|
||||
*.tar.bz2
|
||||
*.ttf
|
||||
*.TTF
|
||||
*.ttc
|
||||
*#*
|
||||
*.so
|
||||
.footprint.diff
|
||||
.footprint.orig
|
||||
.md5sum.diff
|
||||
.md5sum.orig
|
||||
*.pyc
|
||||
*.o
|
||||
*.so.*
|
||||
13
HOWTO
Normal file
13
HOWTO
Normal file
@@ -0,0 +1,13 @@
|
||||
1.执行pkg-install.sh安装32位库。
|
||||
./pkg-install.sh
|
||||
2.执行setup.sh配置D5000环境。
|
||||
./setup.sh
|
||||
3.执行generate.sh生成并配置序列号。
|
||||
./generate.sh
|
||||
4.进入collect_hwinfo目录执行collect_hwinfo.sh收集硬件信息。
|
||||
cd collect_hwinfo
|
||||
./collect_hwinfo.sh
|
||||
|
||||
注意事项:
|
||||
1.如果客户需要配置对时系统,则需要在执行完步骤2后编辑/usr/sbin/update_time.sh脚本设置NTPSERVER_A和NTPSERVER_B的地址(可以是IP,也可以是主机名,如果是主机名则需要在/etc/hosts文件中增加IP与主机名的对应关系)。
|
||||
2.以上操作建议在U盘环境完成,或在本地环境完成后删除配置脚本。
|
||||
21
cgroupserial.sh
Executable file
21
cgroupserial.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
export LANG=c
|
||||
|
||||
ROOT_UID=0
|
||||
E_ROOT=2
|
||||
|
||||
if [ $UID -ne $ROOT_UID ];then
|
||||
echo "You must run this script use root ..."
|
||||
exit $E_ROOT
|
||||
fi
|
||||
|
||||
|
||||
CGROUP_FILE=/etc/linxsn/cgroup_sn.conf
|
||||
MAC=$(ifconfig eth0 | grep HWaddr | awk '{print $5}')
|
||||
#value=$(echo $MAC | awk -F':' '{print $1,$2,$3,$4,$5,$6}')
|
||||
cgroup_serial=$(./linx_cgroup_sn/linx_lxcgsn $MAC)
|
||||
serial=$(echo $cgroup_serial | awk '{print $4}')
|
||||
if [ ! -d /etc/linxsn ];then
|
||||
mkdir /etc/linxsn
|
||||
fi
|
||||
echo "linx_serial=${serial}">${CGROUP_FILE}
|
||||
71
generate.sh
Executable file
71
generate.sh
Executable file
@@ -0,0 +1,71 @@
|
||||
#!/bin/bash
|
||||
export LANG=c
|
||||
|
||||
ROOT_UID=0
|
||||
E_ROOT=2
|
||||
|
||||
if [ $UID -ne $ROOT_UID ];then
|
||||
echo "You must run this script use root ..."
|
||||
exit $E_ROOT
|
||||
fi
|
||||
|
||||
|
||||
GRUB_FILE=/boot/grub/menu.lst
|
||||
MAC=$(ifconfig eth0 | grep HWaddr | awk '{print $5}')
|
||||
value=$(echo $MAC | awk -F':' '{print $1,$2,$3,$4,$5,$6}')
|
||||
linx_serial=$(./linx_sn/generate_serial $value )
|
||||
serial=$(echo $linx_serial | awk '{print $4}')
|
||||
#判断rocky4.2.35和rocky4.2.39,因为这两个版本中/boot/grub/menu.lst文件中序列号的位置不同
|
||||
flag_4_2_39=`grep '4.2.39' /etc/issue|awk '{print $5}'`
|
||||
if [ -z ${flag_4_2_39} ];then
|
||||
for i in $(grep -n 'linx_serial' $GRUB_FILE | awk 'BEGIN{OFS="|"}{print $1,$5,$6}')
|
||||
do
|
||||
original_sn=$(echo $i | cut -d'|' -f2 | awk -F'=' '{print $2}')
|
||||
line=$(echo $i | cut -d':' -f1)
|
||||
|
||||
if [ ${original_sn}!=" " ];then
|
||||
sed -i "${line}s@linx_serial=${original_sn}@linx_serial=@" $GRUB_FILE
|
||||
if [ $(echo $i |grep 'rootflag') ];then
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial}@" $GRUB_FILE
|
||||
else
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial} rootflags=data=writeback@" $GRUB_FILE
|
||||
fi
|
||||
else
|
||||
if [ $(echo $i |grep 'rootflag') ];then
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial}@" $GRUB_FILE
|
||||
else
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial} rootflags=data=writeback@" $GRUB_FILE
|
||||
fi
|
||||
fi
|
||||
done
|
||||
else
|
||||
for i in `grep -n 'linx_serial' $GRUB_FILE | awk 'BEGIN{OFS="|"}{print $1,$4}'`
|
||||
do
|
||||
original_sn=$(echo $i | cut -d'|' -f2 | awk -F'=' '{print $2}')
|
||||
line=$(echo $i | cut -d':' -f1)
|
||||
|
||||
if [ ${original_sn}!=" " ];then
|
||||
sed -i "${line}s@linx_serial=${original_sn}@linx_serial=@" $GRUB_FILE
|
||||
if [ $(echo $i |grep 'rootflag') ];then
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial}@" $GRUB_FILE
|
||||
else
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial} rootflags=data=writeback@" $GRUB_FILE
|
||||
fi
|
||||
else
|
||||
if [ $(echo $i |grep 'rootflag') ];then
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial}@" $GRUB_FILE
|
||||
else
|
||||
sed -i "${line}s@linx_serial=@linx_serial=${serial} rootflags=data=writeback@" $GRUB_FILE
|
||||
fi
|
||||
fi
|
||||
done
|
||||
|
||||
fi
|
||||
|
||||
sed -i "s#default 0#default 1#g" $GRUB_FILE
|
||||
|
||||
rm /boot/grub/grub.conf
|
||||
cp /boot/grub/menu.lst /boot/grub/grub.conf
|
||||
chown sysadmin.sysadmin /boot/grub/menu.lst
|
||||
chown sysadmin.sysadmin /boot/grub/grub.conf
|
||||
echo "$linx_serial| `date` " >> ./linx_sn/linx_list
|
||||
21
haserial.sh
Executable file
21
haserial.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
export LANG=c
|
||||
|
||||
ROOT_UID=0
|
||||
E_ROOT=2
|
||||
|
||||
if [ $UID -ne $ROOT_UID ];then
|
||||
echo "You must run this script use root ..."
|
||||
exit $E_ROOT
|
||||
fi
|
||||
|
||||
|
||||
HASERIAL_FILE=/etc/linxsn/HA_sn.conf
|
||||
MAC=$(ifconfig eth0 | grep HWaddr | awk '{print $5}')
|
||||
#value=$(echo $MAC | awk -F':' '{print $1,$2,$3,$4,$5,$6}')
|
||||
ha_serial=$(./linx_ha_sn/linx_lxhasn $MAC)
|
||||
serial=$(echo $ha_serial | awk '{print $4}')
|
||||
if [ ! -d /etc/linxsn ];then
|
||||
mkdir /etc/linxsn
|
||||
fi
|
||||
echo "linx_serial=${serial}">${HASERIAL_FILE}
|
||||
81
install_shell/Desktop/.directory
Normal file
81
install_shell/Desktop/.directory
Normal file
@@ -0,0 +1,81 @@
|
||||
[Desktop Entry]
|
||||
Type=Directory
|
||||
BgImage=
|
||||
Icon=desktop
|
||||
Name=Desktop
|
||||
Name[af]=Werkskerm
|
||||
Name[ar]=سطح المكتب
|
||||
Name[az]=Masa Üstü
|
||||
Name[be]=Працоўны стол
|
||||
Name[bg]=Работен плот
|
||||
Name[bn]=ডেস্কটপ
|
||||
Name[br]=Gorretaol
|
||||
Name[bs]=Radna površina
|
||||
Name[ca]=Escriptori
|
||||
Name[cs]=Pracovní plocha
|
||||
Name[csb]=Pùlt
|
||||
Name[cy]=Penbwrdd
|
||||
Name[de]=Arbeitsfläche
|
||||
Name[el]=Επιφάνεια εργασίας
|
||||
Name[eo]=Tabulo
|
||||
Name[es]=Escritorio
|
||||
Name[et]=Töölaud
|
||||
Name[eu]=Mahaigaina
|
||||
Name[fa]=رومیزی
|
||||
Name[fi]=Työpöytä
|
||||
Name[fo]=Skriviborð
|
||||
Name[fr]=Bureau
|
||||
Name[fy]=Buroblêd
|
||||
Name[ga]=Deasc
|
||||
Name[gl]=Escritorio
|
||||
Name[he]=שולחן עבודה
|
||||
Name[hi]=डेस्कटॉप
|
||||
Name[hr]=Radna površina
|
||||
Name[hsb]=Dźěłowy powjerch
|
||||
Name[hu]=Munkaasztal
|
||||
Name[is]=Skjáborð
|
||||
Name[ja]=デスクトップ
|
||||
Name[ka]=სამუშაო დაფა
|
||||
Name[kk]=Жұмыс үстелі
|
||||
Name[km]=ផ្ទៃតុ
|
||||
Name[ko]=데스크톱
|
||||
Name[lo]=ພື້ນທີ່ເຮັດວງກ
|
||||
Name[lt]=Darbastalis
|
||||
Name[lv]=Darbvirsma
|
||||
Name[mk]=Работна површина
|
||||
Name[mn]=Ажлын тавцан
|
||||
Name[ms]=Ruang Kerja
|
||||
Name[nb]=Skrivebord
|
||||
Name[nds]=Schriefdisch
|
||||
Name[ne]=डेस्कटप
|
||||
Name[nl]=Bureaublad
|
||||
Name[nn]=Skrivebord
|
||||
Name[oc]=BurèU
|
||||
Name[pa]=ਵੇਹੜਾ
|
||||
Name[pl]=Pulpit
|
||||
Name[pt]=Ambiente de Trabalho
|
||||
Name[pt_BR]=Área de Trabalho
|
||||
Name[ru]=Рабочий стол
|
||||
Name[rw]=Ibiro
|
||||
Name[se]=Čállinbeavdi
|
||||
Name[sk]=Plocha
|
||||
Name[sl]=Namizje
|
||||
Name[sr]=Радна површина
|
||||
Name[sr@Latn]=Radna površina
|
||||
Name[ss]=Desktop
|
||||
Name[sv]=Skrivbord
|
||||
Name[ta]=மேல்மேசை
|
||||
Name[te]=రంగస్ఠలం
|
||||
Name[tg]=Мизи корӣ
|
||||
Name[th]=พื้นที่ทำงาน
|
||||
Name[tr]=Masaüstü
|
||||
Name[tt]=Östäl
|
||||
Name[uk]=Стільниця
|
||||
Name[uz]=Ish stoli
|
||||
Name[uz@cyrillic]=Иш столи
|
||||
Name[ven]=Desikithopo
|
||||
Name[vi]=Màn hình nền
|
||||
Name[wa]=Sicribanne
|
||||
Name[zh_CN]=桌面
|
||||
Name[zh_TW]=桌面
|
||||
|
||||
166
install_shell/Desktop/Home.desktop
Normal file
166
install_shell/Desktop/Home.desktop
Normal file
@@ -0,0 +1,166 @@
|
||||
[Desktop Entry]
|
||||
Name=Home
|
||||
Name[af]=Tuiste
|
||||
Name[ar]=المنزل
|
||||
Name[az]=Başlanğıc
|
||||
Name[be]=Хатняя тэчка
|
||||
Name[bg]=Домашна директория
|
||||
Name[bn]=ব্যক্তিগত ফোল্ডার
|
||||
Name[br]=Er-gêr
|
||||
Name[bs]=Početak
|
||||
Name[ca]=Inici
|
||||
Name[cs]=Můj adresář
|
||||
Name[csb]=Dodóm
|
||||
Name[cy]=Cartref
|
||||
Name[da]=Hjem
|
||||
Name[de]=Persönlicher Ordner
|
||||
Name[el]=Προσωπικός φάκελος
|
||||
Name[eo]=Hejmo
|
||||
Name[es]=Personal
|
||||
Name[et]=Kodu
|
||||
Name[eu]=Etxea
|
||||
Name[fa]=آغازه
|
||||
Name[fi]=Koti
|
||||
Name[fr]=Dossier personnel
|
||||
Name[fy]=Thús
|
||||
Name[ga]=Baile
|
||||
Name[gl]=Persoal
|
||||
Name[he]=בית
|
||||
Name[hi]=घर
|
||||
Name[hr]=Početak
|
||||
Name[hu]=Saját könyvtár
|
||||
Name[id]=Rumah
|
||||
Name[is]=Heimasvæðið þitt
|
||||
Name[ja]=ホーム
|
||||
Name[ka]=სახლში
|
||||
Name[kk]=Мекен
|
||||
Name[km]=ផ្ទះ
|
||||
Name[ko]=홈
|
||||
Name[lo]=ພື້ນທີ່ສ່ວນຕົວ
|
||||
Name[lt]=Pradžia
|
||||
Name[lv]=Mājas
|
||||
Name[mk]=Дома
|
||||
Name[mn]=Гэр
|
||||
Name[ms]=Laman Utama
|
||||
Name[mt]=Direttorju Personali
|
||||
Name[nb]=Hjem
|
||||
Name[nds]=Tohuus
|
||||
Name[ne]=गृह
|
||||
Name[nn]=Heim
|
||||
Name[nso]=Gae
|
||||
Name[oc]=Inici
|
||||
Name[pa]=ਘਰ
|
||||
Name[pl]=Katalog domowy
|
||||
Name[pt]=Pasta Pessoal
|
||||
Name[pt_BR]=Pasta do Usuário
|
||||
Name[ro]=Acasă
|
||||
Name[ru]=Домой
|
||||
Name[rw]=Urugo
|
||||
Name[se]=Ruoktu
|
||||
Name[sk]=Domov
|
||||
Name[sl]=Domov
|
||||
Name[sr]=Домаће
|
||||
Name[sr@Latn]=Domaće
|
||||
Name[ss]=Ekhaya
|
||||
Name[sv]=Hem
|
||||
Name[ta]=தொடக்கம்
|
||||
Name[te]=ఇల్లు
|
||||
Name[tg]=Компютери Ман
|
||||
Name[th]=พื้นที่ส่วนตัว
|
||||
Name[tr]=Başlangıç
|
||||
Name[tt]=Anabit
|
||||
Name[uk]=Домівка
|
||||
Name[uz]=Uy
|
||||
Name[uz@cyrillic]=Уй
|
||||
Name[ven]=Haya
|
||||
Name[vi]=Nhà
|
||||
Name[wa]=Måjhon
|
||||
Name[xh]=Ikhaya
|
||||
Name[zh_CN]=主文件夹
|
||||
Name[zh_TW]=家目錄
|
||||
Name[zu]=Ikhaya
|
||||
GenericName=Personal Files
|
||||
GenericName[af]=Persoonlike Lêers
|
||||
GenericName[ar]=الملفات الشخصية
|
||||
GenericName[az]=Şəxsi Fayllar
|
||||
GenericName[be]=Персанальныя файлы
|
||||
GenericName[bg]=Лични файлове
|
||||
GenericName[bn]=ব্যক্তিগত ফাইলসমূহ
|
||||
GenericName[br]=Restroù deoc'h
|
||||
GenericName[bs]=Osobne datoteke
|
||||
GenericName[ca]=Fitxers personals
|
||||
GenericName[cs]=Osobní soubory
|
||||
GenericName[csb]=Swòje lopczi
|
||||
GenericName[cy]=Ffeiliau Personol
|
||||
GenericName[da]=Personlige filer
|
||||
GenericName[de]=Eigene Dateien
|
||||
GenericName[el]=Προσωπικά αρχεία
|
||||
GenericName[eo]=Personaj dosieroj
|
||||
GenericName[es]=Archivos personales
|
||||
GenericName[et]=Isiklikud failid
|
||||
GenericName[eu]=Fitxategi pertsonalak
|
||||
GenericName[fa]=پروندههای شخصی
|
||||
GenericName[fi]=Omat tiedostot
|
||||
GenericName[fr]=Fichiers personnels
|
||||
GenericName[fy]=Persoanlike map
|
||||
GenericName[ga]=Comhaid Phearsanta
|
||||
GenericName[gl]=Ficheiros Persoais
|
||||
GenericName[he]=קבצים אישיים
|
||||
GenericName[hi]=निजी फ़ाइलें
|
||||
GenericName[hr]=Osobne datoteke
|
||||
GenericName[hu]=Személyes fájlok
|
||||
GenericName[id]=File Pribadi
|
||||
GenericName[is]=Skrárnar þínar
|
||||
GenericName[it]=File personali
|
||||
GenericName[ja]=個人のファイル
|
||||
GenericName[ka]=პირადი საქაღალდეები
|
||||
GenericName[kk]=Дербес файлдар
|
||||
GenericName[km]=ឯកសារផ្ទាល់ខ្លួន
|
||||
GenericName[ko]=개인적인 파일
|
||||
GenericName[lo]=ທີ່ເກັບແຟ້ມແລະເອກະສານສວ່ນຕົວຫລືອື່ນຯ
|
||||
GenericName[lt]=Asmeninės bylos
|
||||
GenericName[lv]=Personālie Faili
|
||||
GenericName[mk]=Лични датотеки
|
||||
GenericName[mn]=Өөрийн файлууд
|
||||
GenericName[ms]=Fail Peribadi
|
||||
GenericName[mt]=Fajls Personali
|
||||
GenericName[nb]=Personlige filer
|
||||
GenericName[nds]=De egen Dateien
|
||||
GenericName[ne]=व्यक्तिगत फाइल
|
||||
GenericName[nl]=Persoonlijke map
|
||||
GenericName[nn]=Personlege filer
|
||||
GenericName[nso]=Difaele tsa Botho
|
||||
GenericName[oc]=FiquièRs personals
|
||||
GenericName[pa]=ਨਿੱਜੀ ਫਾਇਲ਼ਾਂ
|
||||
GenericName[pl]=Pliki osobiste
|
||||
GenericName[pt]=Ficheiros Pessoais
|
||||
GenericName[pt_BR]=Arquivos Pessoais
|
||||
GenericName[ro]=Fișiere personale
|
||||
GenericName[ru]=Личные файлы
|
||||
GenericName[rw]=Amadosiye Yihariye
|
||||
GenericName[se]=Iežat fiillat
|
||||
GenericName[sk]=Osobné súbory
|
||||
GenericName[sl]=Osebne datoteke
|
||||
GenericName[sr]=Лични фајлови
|
||||
GenericName[sr@Latn]=Lični fajlovi
|
||||
GenericName[sv]=Personliga filer
|
||||
GenericName[ta]=சொந்த கோப்புகள்
|
||||
GenericName[te]=వ్యక్తిగత దస్త్రాలు
|
||||
GenericName[tg]=Файлҳои шахсӣ
|
||||
GenericName[th]=แฟ้มส่วนตัว
|
||||
GenericName[tr]=Kişisel Dosyalar
|
||||
GenericName[tt]=Şäxsi Biremnär
|
||||
GenericName[uk]=Особисті файли
|
||||
GenericName[uz]=Shaxsiy fayllar
|
||||
GenericName[uz@cyrillic]=Шахсий файллар
|
||||
GenericName[ven]=Dzifaela dza vhune
|
||||
GenericName[vi]=Tập tin Cá nhân
|
||||
GenericName[wa]=Fitchîs da vosse
|
||||
GenericName[xh]=Iifayile Zobuqu
|
||||
GenericName[zh_CN]=个人文件
|
||||
GenericName[zh_TW]=個人檔案
|
||||
GenericName[zu]=Amafayela Omuntu siqu
|
||||
URL=$HOME
|
||||
Icon=kfm_home
|
||||
Type=Link
|
||||
OnlyShowIn=KDE;
|
||||
149
install_shell/Desktop/System.desktop
Normal file
149
install_shell/Desktop/System.desktop
Normal file
@@ -0,0 +1,149 @@
|
||||
[Desktop Entry]
|
||||
Name=System
|
||||
Name[af]=Stelsel
|
||||
Name[ar]=النظام
|
||||
Name[az]=Sistem
|
||||
Name[be]=Сістэма
|
||||
Name[bg]=Система
|
||||
Name[bn]=সিস্টেম
|
||||
Name[br]=Reizhiad
|
||||
Name[bs]=Sistem
|
||||
Name[ca]=Sistema
|
||||
Name[cs]=Systém
|
||||
Name[csb]=Systema
|
||||
Name[cy]=Cysawd
|
||||
Name[el]=Σύστημα
|
||||
Name[eo]=Sistemo
|
||||
Name[es]=Sistema
|
||||
Name[et]=Süsteem
|
||||
Name[eu]=Sistema
|
||||
Name[fa]=سیستم
|
||||
Name[fi]=Järjestelmä
|
||||
Name[fo]=Kervi
|
||||
Name[fr]=Système
|
||||
Name[fy]=Systeem
|
||||
Name[ga]=Córas
|
||||
Name[gl]=Sistema
|
||||
Name[he]=מערכת
|
||||
Name[hi]=तंत्र
|
||||
Name[hr]=Sustav
|
||||
Name[hu]=Rendszer
|
||||
Name[id]=Sistem
|
||||
Name[is]=Kerfi
|
||||
Name[it]=Sistema
|
||||
Name[ja]=システム
|
||||
Name[ka]=სისტემა
|
||||
Name[kk]=Жүйелік
|
||||
Name[km]=ប្រព័ន្ធ
|
||||
Name[ko]=시스템
|
||||
Name[lo]=ຈັດການລະບົບ
|
||||
Name[lt]=Sistema
|
||||
Name[lv]=Sistēma
|
||||
Name[mk]=Систем
|
||||
Name[mn]=Систем
|
||||
Name[ms]=Sistem
|
||||
Name[mt]=Sistema
|
||||
Name[nds]=Systeem
|
||||
Name[ne]=प्रणाली
|
||||
Name[nl]=Systeem
|
||||
Name[oc]=Sistemo
|
||||
Name[pa]=ਸਿਸਟਮ
|
||||
Name[pt]=Sistema
|
||||
Name[pt_BR]=Sistema
|
||||
Name[ro]=Sistem
|
||||
Name[ru]=Система
|
||||
Name[rw]=Sisitemu
|
||||
Name[se]=Vuogádat
|
||||
Name[sk]=Systém
|
||||
Name[sl]=Sistem
|
||||
Name[sr]=Систем
|
||||
Name[sr@Latn]=Sistem
|
||||
Name[ss]=Umshini
|
||||
Name[ta]=அமைப்பு
|
||||
Name[te]=వ్యవస్థ
|
||||
Name[tg]=Система
|
||||
Name[th]=ระบบ
|
||||
Name[tr]=Sistem
|
||||
Name[tt]=Sistem
|
||||
Name[uk]=Система
|
||||
Name[uz]=Tizim
|
||||
Name[uz@cyrillic]=Тизим
|
||||
Name[ven]=Maitele
|
||||
Name[vi]=Hệ thống
|
||||
Name[wa]=Sistinme
|
||||
Name[xh]=Indlela esestyenziswayo
|
||||
Name[zh_CN]=系统
|
||||
Name[zh_TW]=系統
|
||||
Name[zu]=Isistimu
|
||||
GenericName=System Locations
|
||||
GenericName[af]=Stelsel Liggings
|
||||
GenericName[ar]=مواقع النظام
|
||||
GenericName[be]=Сістэмныя месцазнаходжанні
|
||||
GenericName[bg]=Системни файлове
|
||||
GenericName[bn]=সিস্টেম অবস্থানসমূহ
|
||||
GenericName[bs]=Sistemske lokacije
|
||||
GenericName[ca]=Localitzacions del sistema
|
||||
GenericName[cs]=Systémová umístění
|
||||
GenericName[csb]=Systemòwé lokalizacëje
|
||||
GenericName[da]=System-steder
|
||||
GenericName[de]=Systemordner
|
||||
GenericName[el]=Τοποθεσίες συστήματος
|
||||
GenericName[eo]=Sistemaj lokoj
|
||||
GenericName[es]=Ubicaciones del sistema
|
||||
GenericName[et]=Süsteemi asukohad
|
||||
GenericName[eu]=Sistemaren kokapenak
|
||||
GenericName[fa]=محلهای سیستم
|
||||
GenericName[fi]=Järjestelmän sijainti
|
||||
GenericName[fr]=Emplacements systèmes
|
||||
GenericName[fy]=Systeemlokaasjes
|
||||
GenericName[gl]=Lugares do Sistema
|
||||
GenericName[he]=מיקומי מערכת
|
||||
GenericName[hi]=तंत्र स्थान
|
||||
GenericName[hr]=Sistemske lokacije
|
||||
GenericName[hu]=Rendszerkönyvtárak
|
||||
GenericName[is]=Staðsetningar kerfis
|
||||
GenericName[it]=Indirizzi di sistema
|
||||
GenericName[ja]=システム場所
|
||||
GenericName[ka]=სისტემური მისამართები
|
||||
GenericName[kk]=Жүйенің орналасуы
|
||||
GenericName[km]=ទីតាំងប្រព័ន្ធ
|
||||
GenericName[ko]=시스템 알림
|
||||
GenericName[lt]=Sistemos vietos
|
||||
GenericName[lv]=Sistēmas vietas
|
||||
GenericName[mk]=Системски локации
|
||||
GenericName[ms]=Lokasi Sistem
|
||||
GenericName[mt]=System Monitor
|
||||
GenericName[nb]=Systemplassar
|
||||
GenericName[nds]=Systeemsteden
|
||||
GenericName[ne]=प्रणाली स्थान
|
||||
GenericName[nl]=Systeemlocaties
|
||||
GenericName[nn]=Systemplassar
|
||||
GenericName[pa]=ਸਿਸਟਮ ਟਿਕਾਣੇ
|
||||
GenericName[pl]=Lokalizacje systemowe
|
||||
GenericName[pt]=Locais do Sistema
|
||||
GenericName[pt_BR]=Localizações no Sistema
|
||||
GenericName[ro]=Locații de sistem
|
||||
GenericName[ru]=Системные адреса
|
||||
GenericName[rw]=Ahantu ha Sisitemu
|
||||
GenericName[se]=Vuogádatbáikkit
|
||||
GenericName[sk]=Systémové lokácie
|
||||
GenericName[sl]=Sistemske lokacije
|
||||
GenericName[sr]=Системске локације
|
||||
GenericName[sr@Latn]=Sistemske lokacije
|
||||
GenericName[sv]=Systemplatser
|
||||
GenericName[ta]=அமைப்பு இடங்கள்
|
||||
GenericName[tg]=Ҷойгиршавиҳои система
|
||||
GenericName[th]=ที่ตั้งของระบบ
|
||||
GenericName[tr]=Sistem Konumları
|
||||
GenericName[tt]=Sistem Urınlaşuları
|
||||
GenericName[uk]=Системні адреси
|
||||
GenericName[uz]=Tizimga tegishli manzillar
|
||||
GenericName[uz@cyrillic]=Тизимга тегишли манзиллар
|
||||
GenericName[vi]=Đường dẫn Hệ thống
|
||||
GenericName[wa]=Plaeces do sistinme
|
||||
GenericName[zh_CN]=系统定位
|
||||
GenericName[zh_TW]=系統位置
|
||||
URL=system:/
|
||||
Icon=system
|
||||
Type=Link
|
||||
OnlyShowIn=KDE;
|
||||
128
install_shell/Desktop/konsole.desktop
Normal file
128
install_shell/Desktop/konsole.desktop
Normal file
@@ -0,0 +1,128 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=konsole
|
||||
Icon=konsole
|
||||
DocPath=konsole/index.html
|
||||
Terminal=false
|
||||
X-KDE-StartupNotify=true
|
||||
|
||||
Name=Konsole
|
||||
Name[ar]=طرفية التحكم
|
||||
Name[az]=Konsol
|
||||
Name[be]=Кансоль
|
||||
Name[bg]=Конзола
|
||||
Name[bn]=কনসোল
|
||||
Name[bs]=Konzola
|
||||
Name[ca]=Consola
|
||||
Name[csb]=Kònsola
|
||||
Name[el]=Κονσόλα
|
||||
Name[eo]=Konzolo
|
||||
Name[et]=Konsool
|
||||
Name[eu]=Kontsola
|
||||
Name[he]=מסוף
|
||||
Name[hi]=कंसोल
|
||||
Name[hr]=Konzola
|
||||
Name[is]=Skjáhermir
|
||||
Name[ka]=კონსოლი
|
||||
Name[lo]=ຄອນໂຊລ - K
|
||||
Name[mk]=Конзола
|
||||
Name[mn]=Консол
|
||||
Name[nb]=Konsoll
|
||||
Name[ne]=कन्सोल
|
||||
Name[nn]=Konsoll
|
||||
Name[pa]=ਕੰਨਸੋਲ
|
||||
Name[pl]=Konsola
|
||||
Name[ro]=Consolă
|
||||
Name[se]=Konsolla
|
||||
Name[sk]=Konzola
|
||||
Name[sl]=Konzola
|
||||
Name[ta]=கான்சோல்
|
||||
Name[te]=కాన్సోల్
|
||||
Name[tg]=Консол
|
||||
Name[th]=คอนโซล K
|
||||
Name[zu]=Ikhonsoli
|
||||
|
||||
GenericName=Terminal Program
|
||||
GenericName[af]=Terminaal Program
|
||||
GenericName[ar]=برنامج مطراف
|
||||
GenericName[az]=Terminal Proqramı
|
||||
GenericName[be]=Тэрмінал
|
||||
GenericName[bg]=Терминална програма
|
||||
GenericName[bn]=টার্মিনাল প্রোগ্রাম
|
||||
GenericName[br]=Goulev termenell
|
||||
GenericName[bs]=Terminalni program
|
||||
GenericName[ca]=Programa de terminal
|
||||
GenericName[cs]=Terminálový program
|
||||
GenericName[csb]=Programa terminala
|
||||
GenericName[cy]=Rhaglen Terfynell
|
||||
GenericName[da]=Terminalprogram
|
||||
GenericName[de]=Terminalprogramm
|
||||
GenericName[el]=Πρόγραμμα τερματικού
|
||||
GenericName[eo]=Terminalimitaĵo
|
||||
GenericName[es]=Programa de terminal
|
||||
GenericName[et]=Terminaliemulaator
|
||||
GenericName[eu]=Terminal programa
|
||||
GenericName[fa]=برنامۀ پایانه
|
||||
GenericName[fi]=Komentoikkunaohjelma
|
||||
GenericName[fr]=Terminal
|
||||
GenericName[fy]=Terminalprogramma
|
||||
GenericName[ga]=Clár Teirminéil
|
||||
GenericName[gl]=Programa de Terminal
|
||||
GenericName[he]=תוכנית מסוף
|
||||
GenericName[hi]=टर्मिनल प्रोग्राम
|
||||
GenericName[hr]=Terminalski program
|
||||
GenericName[hu]=Parancsértelmező
|
||||
GenericName[id]=Program Terminal
|
||||
GenericName[is]=Skjáhermir
|
||||
GenericName[it]=Programma terminale
|
||||
GenericName[ja]=ターミナルプログラム
|
||||
GenericName[ka]=პროგრამა ტერმინალისთვის
|
||||
GenericName[kk]=Терминал бағдарламасы
|
||||
GenericName[km]=កម្មវិធីស្ថានីយ
|
||||
GenericName[ko]=터미널 프로그램
|
||||
GenericName[lo]=ອັບພລິກເຄເຊິນ ເທີມີນອນ
|
||||
GenericName[lt]=Terminalo programa
|
||||
GenericName[lv]=Termināla Programma
|
||||
GenericName[mk]=Терминалска програма
|
||||
GenericName[mn]=Терминал-Програм
|
||||
GenericName[ms]=Program Terminal
|
||||
GenericName[mt]=Programm ta' terminal
|
||||
GenericName[nb]=Terminalprogram
|
||||
GenericName[nds]=Terminal-Programm
|
||||
GenericName[ne]=टर्मिनल कार्यक्रम
|
||||
GenericName[nl]=Terminalprogramma
|
||||
GenericName[nn]=Terminalprogram
|
||||
GenericName[nso]=Lenaneo la Terminal
|
||||
GenericName[pa]=ਟਰਮੀਨਲ ਪਰੋਗਰਾਮ
|
||||
GenericName[pl]=Program terminala
|
||||
GenericName[pt]=Programa de Terminal
|
||||
GenericName[pt_BR]=Terminal
|
||||
GenericName[ro]=Program terminal
|
||||
GenericName[ru]=Терминал
|
||||
GenericName[rw]=Porogaramu Umukiriya
|
||||
GenericName[se]=Terminálaprográmma
|
||||
GenericName[sk]=Terminál
|
||||
GenericName[sl]=Terminalski program
|
||||
GenericName[sr]=Терминалски програм
|
||||
GenericName[sr@Latn]=Terminalski program
|
||||
GenericName[ss]=Luhlelo lwesikhungo
|
||||
GenericName[sv]=Terminalprogram
|
||||
GenericName[ta]=கடைசி நிரலி
|
||||
GenericName[te]=టెర్మినల్ కార్యక్రమం
|
||||
GenericName[tg]=Барномаи поёна
|
||||
GenericName[th]=โปรแกรมเทอร์มินัล
|
||||
GenericName[tr]=Terminal Programı
|
||||
GenericName[tt]=Terminal Yazılımı
|
||||
GenericName[uk]=Програма терміналу
|
||||
GenericName[uz]=Terminal dasturi
|
||||
GenericName[uz@cyrillic]=Терминал дастури
|
||||
GenericName[ven]=Mbekanyamushumo ya Mafhedziselo
|
||||
GenericName[vi]=Trình đầu cuối
|
||||
GenericName[wa]=Programe di terminå
|
||||
GenericName[xh]=Inkqubo Yesixhobo sangaphandle sekhompyutha
|
||||
GenericName[zh_CN]=终端程序
|
||||
GenericName[zh_TW]=終端機程式
|
||||
GenericName[zu]=Uhlelo lwemisebenzi lwangaohandle
|
||||
X-DCOP-ServiceType=Multi
|
||||
X-KDE-AuthorizeAction=shell_access
|
||||
Categories=Qt;KDE;System;TerminalEmulator;
|
||||
11
install_shell/Desktop/trash.desktop
Normal file
11
install_shell/Desktop/trash.desktop
Normal file
@@ -0,0 +1,11 @@
|
||||
[Desktop Entry]
|
||||
Comment=Contains removed files
|
||||
Comment[zh_CN]=保存临时删除的文件
|
||||
EmptyIcon=trashcan_empty
|
||||
Encoding=UTF-8
|
||||
Icon=trashcan_full
|
||||
Name=Trash
|
||||
Name[zh_CN]=回收站
|
||||
OnlyShowIn=KDE
|
||||
Type=Link
|
||||
URL=trash:/
|
||||
@@ -0,0 +1,16 @@
|
||||
DiskInfo
|
||||
======================================================
|
||||
/dev/sda (500 GB)
|
||||
Model Number: HITACHI HTS545050A7E380
|
||||
Serial Number: TA95113VG5GS2P
|
||||
Transport: Serial, ATA8-AST, SATA 1.0a, SATA II Extensions, SATA Rev 2.5, SATA Rev 2.6; Revision: ATA8-AST T13 Project D1697 Revision 0b
|
||||
Form Factor: 2.5 inch
|
||||
|
||||
------------------------------------------------------
|
||||
/dev/mapper/cryptswap1
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
------------------------------------------------------
|
||||
BIN
install_shell/Java_fonts/._fontconfig.properties
Executable file
BIN
install_shell/Java_fonts/._fontconfig.properties
Executable file
Binary file not shown.
21
install_shell/Java_fonts/fontconfig.properties
Normal file
21
install_shell/Java_fonts/fontconfig.properties
Normal file
@@ -0,0 +1,21 @@
|
||||
# @(#)linux.fontconfig.properties 1.2 03/10/28
|
||||
#
|
||||
# Copyright 2003 Sun Microsystems, Inc. All rights reserved.
|
||||
#
|
||||
|
||||
# Version
|
||||
|
||||
version=1
|
||||
|
||||
# Component Font Mappings
|
||||
allfonts.chinese-iso10646=-misc-fangsong_gb2312-medium-r-normal--0-0-0-0-p-0-iso10646-1
|
||||
allfonts.chinese-gb2312=-misc-fangsong_gb2312-medium-r-normal--0-0-0-0-p-0-gb2312.1980-0
|
||||
# Search Sequences
|
||||
|
||||
sequence.allfonts=latin-1,chinese-iso10646
|
||||
|
||||
# Exclusion Ranges
|
||||
|
||||
# Font File Names
|
||||
simfang.ttf -misc-fangsong_gb2312-medium-r-normal--0-0-0-0-p-0-gb2312.1980-0=/usr/share/fonts/truetype/arphic/simfang.ttf
|
||||
simfang.ttf -misc-fangsong_gb2312-medium-r-normal--0-0-0-0-p-0-iso10646-1=/usr/share/fonts/truetype/arphic/simfang.ttf
|
||||
2
install_shell/LinxSetupSign
Normal file
2
install_shell/LinxSetupSign
Normal file
@@ -0,0 +1,2 @@
|
||||
linx security OS Sign
|
||||
linx dots setup
|
||||
26
install_shell/alsa
Normal file
26
install_shell/alsa
Normal file
@@ -0,0 +1,26 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# /etc/rc.d/init.d/alsa: store/restore ALSA mixer levels
|
||||
#
|
||||
|
||||
# location of the alsactl executable
|
||||
ALSACTL=/usr/sbin/alsactl
|
||||
|
||||
case $1 in
|
||||
start)
|
||||
$ALSACTL restore
|
||||
;;
|
||||
stop)
|
||||
$ALSACTL store
|
||||
;;
|
||||
restart)
|
||||
$0 stop
|
||||
sleep 2
|
||||
$0 start
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 [start|stop|restart]"
|
||||
;;
|
||||
esac
|
||||
|
||||
# End of file
|
||||
103
install_shell/audit.rules
Normal file
103
install_shell/audit.rules
Normal file
@@ -0,0 +1,103 @@
|
||||
##
|
||||
-D
|
||||
|
||||
|
||||
##
|
||||
-b 32768
|
||||
|
||||
|
||||
##
|
||||
-f 1
|
||||
|
||||
|
||||
##
|
||||
-w /var/log/audit/ -k LOG_audit
|
||||
-w /etc/audit/ -p wa -k CFG_audit
|
||||
-w /etc/sysconfig/auditd -p wa -k CFG_auditd.conf
|
||||
-w /etc/libaudit.conf -p wa -k CFG_libaudit.conf
|
||||
-w /etc/audisp/ -p wa -k CFG_audisp
|
||||
|
||||
|
||||
|
||||
##
|
||||
-w /home/d5000/fujian/bin/ -p wa -k BIN_d5000
|
||||
-w /home/d5000/fujian/conf/ -p wa -k CFG_d5000
|
||||
-w /home/d5000/fujian/.cshrc -p wa -k CFG_cshrc
|
||||
-w /etc/hosts -p wa -k CFG_hosts
|
||||
-w /etc/services -p wa -k CFG_services
|
||||
-w /etc/sysctl.conf -p wa -k CFG_sysctl.conf
|
||||
-w /etc/syslog.conf -p wa -k CFG_syslog.conf
|
||||
-w /etc/security/limits.conf -p wa -k CFG_limits.conf
|
||||
|
||||
|
||||
##
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_analog -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_point -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_cal -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_op -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_manage -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_topo -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_handle -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_com -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_mgr -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_gps -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/rtdb_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/rtdb_modify -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/case_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/download_daemon -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/download_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/db_modify_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sql_sp_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/db_commit -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_nicmonitor -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_procm -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_procm_mon -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/msg_bus -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_servicemanage -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_trans_alarm -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/remote_exed -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/locator -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/proxy -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/midmmi -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/midbrow -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/middata -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/evt_sender -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/evt_recv -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/hissam -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/hissec -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/midhs -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_pdrrep -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_pdrrec -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_ser -S all
|
||||
|
||||
|
||||
##
|
||||
#-w /database/ -p wa -k DAT_database
|
||||
|
||||
|
||||
|
||||
##
|
||||
-w /etc/passwd -p wa -k CFG_passwd
|
||||
-w /etc/group -p wa -k CFG_group
|
||||
-w /etc/shadow -p wa -k CFG_shadow
|
||||
|
||||
|
||||
##
|
||||
-a entry,always -F arch=b32 -S setxattr -S lsetxattr -S removexattr -S lremovexattr
|
||||
-a entry,always -F arch=b64 -S setxattr -S lsetxattr -S removexattr -S lremovexattr
|
||||
|
||||
|
||||
##
|
||||
-w /etc/cron.allow -p wa -k CFG_cron.allow
|
||||
-w /etc/cron.deny -p wa -k CFG_cron.deny
|
||||
-w /etc/cron.d/ -p wa -k CFG_cron.d
|
||||
-w /etc/cron.daily/ -p wa -k CFG_cron.daily
|
||||
-w /etc/cron.hourly/ -p wa -k CFG_cron.hourly
|
||||
-w /etc/cron.monthly/ -p wa -k CFG_cron.monthly
|
||||
-w /etc/cron.weekly/ -p wa -k CFG_cron.weekly
|
||||
-w /etc/crontab -p wa -k CFG_crontab
|
||||
-w /var/spool/cron/crontabs/root -k CFG_crontab_root
|
||||
-w /var/spool/cron/crontabs/d5000 -p wa -k CFG_crontab_root
|
||||
#trace kill
|
||||
#-a entry,always -F arch=b32 -F a1>0 -S kill
|
||||
#-a entry,always -F arch=b64 -F a1>0 -S kill
|
||||
103
install_shell/audit.rules.d5000
Normal file
103
install_shell/audit.rules.d5000
Normal file
@@ -0,0 +1,103 @@
|
||||
##
|
||||
-D
|
||||
|
||||
|
||||
##
|
||||
-b 32768
|
||||
|
||||
|
||||
##
|
||||
-f 1
|
||||
|
||||
|
||||
##
|
||||
-w /var/log/audit/ -k LOG_audit
|
||||
-w /etc/audit/ -p wa -k CFG_audit
|
||||
-w /etc/sysconfig/auditd -p wa -k CFG_auditd.conf
|
||||
-w /etc/libaudit.conf -p wa -k CFG_libaudit.conf
|
||||
-w /etc/audisp/ -p wa -k CFG_audisp
|
||||
|
||||
|
||||
|
||||
##
|
||||
-w /home/d5000/fujian/bin/ -p wa -k BIN_d5000
|
||||
-w /home/d5000/fujian/conf/ -p wa -k CFG_d5000
|
||||
-w /home/d5000/fujian/.cshrc -p wa -k CFG_cshrc
|
||||
-w /etc/hosts -p wa -k CFG_hosts
|
||||
-w /etc/services -p wa -k CFG_services
|
||||
-w /etc/sysctl.conf -p wa -k CFG_sysctl.conf
|
||||
-w /etc/syslog.conf -p wa -k CFG_syslog.conf
|
||||
-w /etc/security/limits.conf -p wa -k CFG_limits.conf
|
||||
|
||||
|
||||
##
|
||||
-a exit,always -F path= PATH=/home/d5000/fujian/bin/sca_analog -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_point -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_cal -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_op -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_manage -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_topo -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_handle -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_com -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_mgr -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_gps -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/rtdb_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/rtdb_modify -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/case_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/download_daemon -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/download_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/db_modify_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sql_sp_server -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/db_commit -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_nicmonitor -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_procm -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_procm_mon -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/msg_bus -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_servicemanage -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sys_trans_alarm -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/remote_exed -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/locator -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/proxy -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/midmmi -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/midbrow -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/middata -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/evt_sender -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/evt_recv -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/hissam -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/hissec -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/midhs -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_pdrrep -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/sca_pdrrec -S all
|
||||
-a exit,always -F path=/home/d5000/fujian/bin/fes_ser -S all
|
||||
|
||||
|
||||
##
|
||||
#-w /database/ -p wa -k DAT_database
|
||||
|
||||
|
||||
|
||||
##
|
||||
-w /etc/passwd -p wa -k CFG_passwd
|
||||
-w /etc/group -p wa -k CFG_group
|
||||
-w /etc/shadow -p wa -k CFG_shadow
|
||||
|
||||
|
||||
##
|
||||
-a entry,always -F arch=b32 -S setxattr -S lsetxattr -S removexattr -S lremovexattr
|
||||
-a entry,always -F arch=b64 -S setxattr -S lsetxattr -S removexattr -S lremovexattr
|
||||
|
||||
|
||||
##
|
||||
-w /etc/cron.allow -p wa -k CFG_cron.allow
|
||||
-w /etc/cron.deny -p wa -k CFG_cron.deny
|
||||
-w /etc/cron.d/ -p wa -k CFG_cron.d
|
||||
-w /etc/cron.daily/ -p wa -k CFG_cron.daily
|
||||
-w /etc/cron.hourly/ -p wa -k CFG_cron.hourly
|
||||
-w /etc/cron.monthly/ -p wa -k CFG_cron.monthly
|
||||
-w /etc/cron.weekly/ -p wa -k CFG_cron.weekly
|
||||
-w /etc/crontab -p wa -k CFG_crontab
|
||||
-w /var/spool/cron/crontabs/root -k CFG_crontab_root
|
||||
-w /var/spool/cron/crontabs/d5000 -p wa -k CFG_crontab_root
|
||||
#trace kill
|
||||
#-a entry,always -F arch=b32 -F a1>0 -S kill
|
||||
#-a entry,always -F arch=b64 -F a1>0 -S kill
|
||||
34
install_shell/audit_patch.sh
Executable file
34
install_shell/audit_patch.sh
Executable file
@@ -0,0 +1,34 @@
|
||||
#!/bin/sh
|
||||
|
||||
. ./check_function.sh
|
||||
|
||||
AUDIT_CONFIG=/etc/audit/audit.rules
|
||||
|
||||
check_config $AUDIT_CONFIG '^-f' 1
|
||||
if [ $rtn -eq 1 ]; then
|
||||
sed -i '/-f/s@[0-9]@1@' $AUDIT_CONFIG
|
||||
elif [ $rtn -eq 2 ]; then
|
||||
line=$(grep -n ^-b $AUDIT_CONFIG | cut -d: -f1)
|
||||
num=`expr ${line} + 2`
|
||||
sed -i "${num}a\-f 1" /etc/audit/audit.rules
|
||||
fi
|
||||
DATE=$(date +%Y%m%d)
|
||||
sed -i.bak_$DATE '/kill/d' $AUDIT_CONFIG
|
||||
echo "#trace kill">> $AUDIT_CONFIG
|
||||
echo "#-a entry,always -F arch=b32 -F a1>0 -S kill">> $AUDIT_CONFIG
|
||||
echo "#-a entry,always -F arch=b64 -F a1>0 -S kill">> $AUDIT_CONFIG
|
||||
USER_NAME=$1
|
||||
USER_HOME=$2
|
||||
#if [ -z $1 ];then
|
||||
# UNIT_NAME=guodiao
|
||||
#else
|
||||
# UNIT_NAME=$1
|
||||
#fi
|
||||
# copy new script
|
||||
install -o sys -g sys -m 755 auditd /etc/rc.d/init.d/auditd
|
||||
cp auditd.conf /etc/audit
|
||||
cp audit.rules /etc/audit/audit.rules.${USER_NAME}
|
||||
#sed -i "s#fujian#${UNIT_NAME}#g" /etc/audit/audit.rules.${USER_NAME}
|
||||
sed -i "s#/home/d5000/fujian#${USER_HOME}#g" /etc/audit/audit.rules.${USER_NAME}
|
||||
# restart deamon
|
||||
/etc/init.d/auditd restart
|
||||
25
install_shell/auditd.conf
Normal file
25
install_shell/auditd.conf
Normal file
@@ -0,0 +1,25 @@
|
||||
#
|
||||
# This file controls the configuration of the audit daemon
|
||||
#
|
||||
|
||||
log_file = /var/log/audit/audit.log
|
||||
log_format = RAW
|
||||
log_group = root
|
||||
priority_boost = 4
|
||||
flush = INCREMENTAL
|
||||
freq = 20
|
||||
num_logs = 16
|
||||
disp_qos = lossy
|
||||
dispatcher = /sbin/audispd
|
||||
name_format = NONE
|
||||
##name = mydomain
|
||||
max_log_file = 300
|
||||
max_log_file_action = ROTATE
|
||||
space_left = 75
|
||||
space_left_action = SYSLOG
|
||||
action_mail_acct = audadmin
|
||||
admin_space_left = 50
|
||||
admin_space_left_action = SUSPEND
|
||||
disk_full_action = SUSPEND
|
||||
disk_error_action = SUSPEND
|
||||
|
||||
41
install_shell/cgroup-d5000-install/.bashrc
Normal file
41
install_shell/cgroup-d5000-install/.bashrc
Normal file
@@ -0,0 +1,41 @@
|
||||
#
|
||||
# ~/.bashrc: user defaults for bash(1) login shells
|
||||
#
|
||||
|
||||
if [ "`id -u`" = "0" ]; then
|
||||
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
|
||||
elif [ "`id -un`" = "sysadmin" ]; then
|
||||
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
|
||||
elif [ "`id -un`" = "netadmin" ]; then
|
||||
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
|
||||
elif [ "`id -un`" = "secadmin" ]; then
|
||||
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
|
||||
elif [ "`id -un`" = "audadmin" ]; then
|
||||
export PATH="/sbin:/usr/sbin:/bin:/usr/bin:/opt/bin"
|
||||
else
|
||||
export PATH="/bin:/usr/bin:/opt/bin"
|
||||
fi
|
||||
|
||||
if [ ! -f ~/.inputrc ]; then
|
||||
export INPUTRC="/etc/inputrc"
|
||||
fi
|
||||
|
||||
export MANPATH="/usr/man:/usr/share/man:"
|
||||
export PATH=$PATH:$HOME/bin
|
||||
|
||||
if test "$UID" = 0; then
|
||||
PS1="\h:\w # "
|
||||
|
||||
# PS1="\h: # "
|
||||
else
|
||||
PS1="\u@\h:\w > "
|
||||
fi
|
||||
export PS1
|
||||
|
||||
export HISTCONTROL=ignoreboth
|
||||
|
||||
alias ls='ls --color=auto'
|
||||
|
||||
umask 022
|
||||
|
||||
# End of file
|
||||
@@ -0,0 +1,5 @@
|
||||
1.安装libcgroup和cgroups的图形界面
|
||||
sh ./install.sh
|
||||
2.启动cgroups的图形界面
|
||||
cg-gui
|
||||
|
||||
28
install_shell/cgroup-d5000-install/42-2014-01-15-062120/install.sh
Executable file
28
install_shell/cgroup-d5000-install/42-2014-01-15-062120/install.sh
Executable file
@@ -0,0 +1,28 @@
|
||||
#!/bin/sh
|
||||
|
||||
echo "Starting update kernel..."
|
||||
cd kernel
|
||||
tar xf update_kernel-2013-11-25_2.6.32.41-cgroup.tar.gz
|
||||
cd update_kernel-2013-11-25_2.6.32.41-cgroup
|
||||
./install.sh
|
||||
cd ..
|
||||
/bin/rm -rf update_kernel-2013-11-25_2.6.32.41-cgroup
|
||||
cd ..
|
||||
|
||||
echo "Starting upgrade cg-manager need package..."
|
||||
pkgrm cairo
|
||||
pkgadd -f cairo#1.8.4-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
pkgrm gtk2
|
||||
pkgadd -f gtk2#2.14.7-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
pkgrm jasper
|
||||
pkgadd -f jasper#1.900.1-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
pkgrm pixman
|
||||
pkgadd -f pixman#0.12.0-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
pkgrm libgtop2
|
||||
pkgadd -f libgtop2#2.28.1-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
|
||||
echo "Starting install libcgroup and cg-manager package..."
|
||||
pkgrm libcgroup
|
||||
pkgadd -f libcgroup#0.38-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
pkgrm cg-manager
|
||||
pkgadd -f cg-manager#1.0-x86_64-linx-Rocky4.3.pkg.tar.gz
|
||||
78
install_shell/cgroup-d5000-install/cgconfig.conf
Normal file
78
install_shell/cgroup-d5000-install/cgconfig.conf
Normal file
@@ -0,0 +1,78 @@
|
||||
#
|
||||
# Copyright IBM Corporation. 2007
|
||||
#
|
||||
# Authors: Balbir Singh <balbir@linux.vnet.ibm.com>
|
||||
# This program is free software; you can redistribute it and/or modify it
|
||||
# under the terms of version 2.1 of the GNU Lesser General Public License
|
||||
# as published by the Free Software Foundation.
|
||||
#
|
||||
# This program is distributed in the hope that it would be useful, but
|
||||
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
#
|
||||
#group daemons/www {
|
||||
# perm {
|
||||
# task {
|
||||
# uid = root;
|
||||
# gid = webmaster;
|
||||
# }
|
||||
# admin {
|
||||
# uid = root;
|
||||
# gid = root;
|
||||
# }
|
||||
# }
|
||||
# cpu {
|
||||
# cpu.shares = 1000;
|
||||
# }
|
||||
#}
|
||||
#
|
||||
#group daemons/ftp {
|
||||
# perm {
|
||||
# task {
|
||||
# uid = root;
|
||||
# gid = ftpmaster;
|
||||
# }
|
||||
# admin {
|
||||
# uid = root;
|
||||
# gid = root;
|
||||
# }
|
||||
# }
|
||||
# cpu {
|
||||
# cpu.shares = 500;
|
||||
# }
|
||||
#}
|
||||
#
|
||||
#mount {
|
||||
# cpu = /mnt/cgroups/cpu;
|
||||
# cpuacct = /mnt/cgroups/cpuacct;
|
||||
#}
|
||||
group d5000_limits {
|
||||
perm {
|
||||
task {
|
||||
uid = d5000;
|
||||
gid = d5000;
|
||||
}
|
||||
admin {
|
||||
uid = sysadmin;
|
||||
gid = sysadmin;
|
||||
}
|
||||
}
|
||||
cpuset {
|
||||
cpuset.cpus = 0-0;
|
||||
cpuset.mems = 0-0;
|
||||
}
|
||||
memory {
|
||||
memory.limit_in_bytes = 900M;
|
||||
memory.memsw.limit_in_bytes = 962M;
|
||||
}
|
||||
}
|
||||
|
||||
mount {
|
||||
cpu = /lxcg;
|
||||
cpuset = /lxcg;
|
||||
cpuacct = /lxcg;
|
||||
memory = /lxcg;
|
||||
freezer = /lxcg;
|
||||
net_cls = /lxcg;
|
||||
devices = /lxcg;
|
||||
}
|
||||
76
install_shell/cgroup-d5000-install/cgrules.conf
Normal file
76
install_shell/cgroup-d5000-install/cgrules.conf
Normal file
@@ -0,0 +1,76 @@
|
||||
# /etc/cgrules.conf
|
||||
#
|
||||
#Each line describes a rule for a user in the forms:
|
||||
#
|
||||
#<user> <controllers> <destination>
|
||||
#<user>:<process name> <controllers> <destination>
|
||||
#
|
||||
#Where:
|
||||
# <user> can be:
|
||||
# - an user name
|
||||
# - a group name, with @group syntax
|
||||
# - the wildcard *, for any user or group.
|
||||
# - The %, which is equivalent to "ditto". This is useful for
|
||||
# multiline rules where different cgroups need to be specified
|
||||
# for various hierarchies for a single user.
|
||||
#
|
||||
# <process name> is optional and it can be:
|
||||
# - a process name
|
||||
# - a full command path of a process
|
||||
#
|
||||
# <controller> can be:
|
||||
# - comma separated controller names (no spaces)
|
||||
# - * (for all mounted controllers)
|
||||
#
|
||||
# <destination> can be:
|
||||
# - path with-in the controller hierarchy (ex. pgrp1/gid1/uid1)
|
||||
#
|
||||
# Note:
|
||||
# - It currently has rules based on uids, gids and process name.
|
||||
#
|
||||
# - Don't put overlapping rules. First rule which matches the criteria
|
||||
# will be executed.
|
||||
#
|
||||
# - Multiline rules can be specified for specifying different cgroups
|
||||
# for multiple hierarchies. In the example below, user "peter" has
|
||||
# specified 2 line rule. First line says put peter's task in test1/
|
||||
# dir for "cpu" controller and second line says put peter's tasks in
|
||||
# test2/ dir for memory controller. Make a note of "%" sign in second line.
|
||||
# This is an indication that it is continuation of previous rule.
|
||||
#
|
||||
#
|
||||
#<user> <controllers> <destination>
|
||||
#
|
||||
#john cpu usergroup/faculty/john/
|
||||
#john:cp cpu usergroup/faculty/john/cp
|
||||
#@student cpu,memory usergroup/student/
|
||||
#peter cpu test1/
|
||||
#% memory test2/
|
||||
#@root * admingroup/
|
||||
#* * default/
|
||||
# End of file
|
||||
bin * d5000_limits
|
||||
daemon * d5000_limits
|
||||
sys * d5000_limits
|
||||
audadmin * d5000_limits
|
||||
#sysadmin * d5000_limits
|
||||
secadmin * d5000_limits
|
||||
netadmin * d5000_limits
|
||||
nobody * d5000_limits
|
||||
mail * d5000_limits
|
||||
postfix * d5000_limits
|
||||
dhcp * d5000_limits
|
||||
named * d5000_limits
|
||||
httpd * d5000_limits
|
||||
squid * d5000_limits
|
||||
samba * d5000_limits
|
||||
#sshd * d5000_limits
|
||||
nfs * d5000_limits
|
||||
mysql * d5000_limits
|
||||
snort * d5000_limits
|
||||
ftp * d5000_limits
|
||||
cron * d5000_limits
|
||||
messagebus * d5000_limits
|
||||
mfs * d5000_limits
|
||||
#root:inetd * d5000_limits
|
||||
d5000 * d5000_limits
|
||||
25
install_shell/cgroup-d5000-install/install.sh
Executable file
25
install_shell/cgroup-d5000-install/install.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
USER_NAME=$1
|
||||
USER_HOME=$2
|
||||
USER_SHELL=$3
|
||||
#chmod 755 /root
|
||||
#update linx kernel
|
||||
#cd LXCG-RC3
|
||||
cd 42-2014-01-15-062120
|
||||
./install.sh
|
||||
cd ../
|
||||
pkginfo -i|grep numactl
|
||||
if [ $? -ne 0 ];then
|
||||
pkgadd -f numactl#2.0.3-x86_64-linx-Rocky4.2.pkg.tar.gz
|
||||
else
|
||||
pkgadd -f -u numactl#2.0.3-x86_64-linx-Rocky4.2.pkg.tar.gz
|
||||
fi
|
||||
#cp cgconfig.conf cgrules.conf /etc
|
||||
sed -i "s#d5000#${USER_NAME}#g" /etc/cgconfig.conf
|
||||
sed -i "s#d5000#${USER_NAME}#g" /etc/cgrules.conf
|
||||
grep ^${USER_NAME} /etc/security/limits.conf|grep nproc &>/dev/null
|
||||
if [ $? -ne 0 ];then
|
||||
echo "${USER_NAME} soft nproc 6000">>/etc/security/limits.conf
|
||||
echo "${USER_NAME} hard nproc 6000">>/etc/security/limits.conf
|
||||
fi
|
||||
56
install_shell/check_function.sh
Executable file
56
install_shell/check_function.sh
Executable file
@@ -0,0 +1,56 @@
|
||||
#!/bin/bash
|
||||
|
||||
ROOT_UID=0
|
||||
E_NOTROOT=4
|
||||
|
||||
|
||||
if [ "$UID" -ne "$ROOT_UID" ]
|
||||
then
|
||||
echo "Must be root to run this script."
|
||||
exit $E_NOTROOT
|
||||
fi
|
||||
|
||||
check_config() {
|
||||
# return value
|
||||
# 0 - already set
|
||||
# 1 - need to change value
|
||||
# 2 - not set
|
||||
|
||||
path=$1
|
||||
keyword=$2
|
||||
value=$3
|
||||
rtn=2
|
||||
|
||||
grep -v '^#' $path | grep -v '^$' | grep "$keyword" &>/dev/null
|
||||
if [ $? -eq 0 ]; then
|
||||
grep -v '^#' $path | grep -v '^$' | \
|
||||
grep "$keyword" | grep "$value" &>/dev/null
|
||||
rtn=$?
|
||||
return $rtn
|
||||
else
|
||||
return $rtn
|
||||
|
||||
fi
|
||||
|
||||
}
|
||||
|
||||
|
||||
check_konsole()
|
||||
{
|
||||
|
||||
Home=$1
|
||||
|
||||
if [ ! -d $Home/Desktop ];then
|
||||
mkdir -p $Home/Desktop
|
||||
cp Desktop/* ${Home}/Desktop/
|
||||
elif [ -d $Home/Desktop ];then
|
||||
if [ ! -f $Home/Desktop/konsole.desktop ];then
|
||||
cp Desktop/konsole.desktop $Home/Desktop/
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
38
install_shell/check_sec_after.sh
Executable file
38
install_shell/check_sec_after.sh
Executable file
@@ -0,0 +1,38 @@
|
||||
#!/bin/bash
|
||||
#check the linx security module is loaded
|
||||
export LANG=c
|
||||
|
||||
echo_fail() {
|
||||
echo -e "\\033[1;31m" "failed"
|
||||
}
|
||||
|
||||
reset_color() {
|
||||
echo -en "\\033[0;39m"
|
||||
}
|
||||
|
||||
if [ -z $1 ];then
|
||||
echo -e "Please input checked system's hostname\n"
|
||||
echo -e "example $0 jb1-his2\n"
|
||||
exit 1
|
||||
fi
|
||||
HOSTNAME=$1
|
||||
cd tmp/${HOSTNAME}
|
||||
grep '6.0.3' ${HOSTNAME}.etc.issue &>/dev/null
|
||||
if [ $? -eq 0 ];then
|
||||
grep mac ${HOSTNAME}.sys.kernel.security.linx &>/dev/null
|
||||
if [ $? -eq 0 ];then
|
||||
echo "The linx6.0.3 safety function is normal"
|
||||
else
|
||||
echo "The linx6.0.3 safety function abnormal"
|
||||
echo_fail
|
||||
fi
|
||||
else
|
||||
grep linx ${HOSTNAME}.lsmod &>/dev/null
|
||||
if [ $? -eq 0 ];then
|
||||
echo "The rocky4.2 or linx6.0.4 security module is loaded."
|
||||
else
|
||||
echo "The rocky4.2 or linx6.0.4 security module isn't loaded."
|
||||
echo_fail
|
||||
fi
|
||||
fi
|
||||
reset_color
|
||||
32
install_shell/check_sec_local.sh
Executable file
32
install_shell/check_sec_local.sh
Executable file
@@ -0,0 +1,32 @@
|
||||
#!/bin/bash
|
||||
#check the linx security module is loaded
|
||||
export LANG=c
|
||||
|
||||
echo_fail() {
|
||||
echo -e "\\033[1;31m" "failed"
|
||||
}
|
||||
|
||||
reset_color() {
|
||||
echo -en "\\033[0;39m"
|
||||
}
|
||||
|
||||
|
||||
|
||||
grep '6.0.3' /etc/issue &>/dev/null
|
||||
if [ $? -eq 0 ];then
|
||||
if [ -d /sys/kernel/security/linx ];then
|
||||
echo "The linx6.0.3 safety function is normal"
|
||||
else
|
||||
echo "The linx6.0.3 safety function abnormal"
|
||||
echo_fail
|
||||
fi
|
||||
else
|
||||
lsmod |grep linx &>/dev/null
|
||||
if [ $? -eq 0 ];then
|
||||
echo "The rocky4.2 or linx6.0.4 security module is loaded."
|
||||
else
|
||||
echo "The rocky4.2 or linx6.0.4 security module isn't loaded."
|
||||
echo_fail
|
||||
fi
|
||||
fi
|
||||
reset_color
|
||||
36
install_shell/common-password
Normal file
36
install_shell/common-password
Normal file
@@ -0,0 +1,36 @@
|
||||
#
|
||||
# /etc/pam.d/common-password - password-related modules common to all services
|
||||
#
|
||||
# This file is included from other service-specific PAM config files,
|
||||
# and should contain a list of modules that define the services to be
|
||||
# used to change user passwords. The default is pam_unix.
|
||||
|
||||
# Explanation of pam_unix options:
|
||||
#
|
||||
# The "sha512" option enables salted SHA512 passwords. Without this option,
|
||||
# the default is Unix crypt. Prior releases used the option "md5".
|
||||
#
|
||||
# The "obscure" option replaces the old `OBSCURE_CHECKS_ENAB' option in
|
||||
# login.defs.
|
||||
#
|
||||
# See the pam_unix manpage for other options.
|
||||
|
||||
# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
|
||||
# To take advantage of this, it is recommended that you configure any
|
||||
# local modules either before or after the default block, and use
|
||||
# pam-auth-update to manage selection of other modules. See
|
||||
# pam-auth-update(8) for details.
|
||||
|
||||
# here are the per-package modules (the "Primary" block)
|
||||
password requisite pam_cracklib.so retry=3 minlen=12 difok=3 ucredit=1 lcredit=1 dcredit=1 ocredit=1
|
||||
password [success=2 default=ignore] pam_unix.so obscure use_authtok try_first_pass sha512
|
||||
password [success=1 default=ignore] pam_winbind.so use_authtok try_first_pass
|
||||
# here's the fallback if no module succeeds
|
||||
password requisite pam_deny.so
|
||||
# prime the stack with a positive return value if there isn't one already;
|
||||
# this avoids us returning an error just because nothing sets a success code
|
||||
# since the modules above will each just jump around
|
||||
password required pam_permit.so
|
||||
# and here are more per-package modules (the "Additional" block)
|
||||
password optional pam_gnome_keyring.so
|
||||
# end of pam-auth-update config
|
||||
48
install_shell/create_users.sh
Executable file
48
install_shell/create_users.sh
Executable file
@@ -0,0 +1,48 @@
|
||||
#!/bin/bash
|
||||
|
||||
|
||||
. ./check_function.sh
|
||||
#$1:user name,$2:home directory,$3:shell type
|
||||
#examples :
|
||||
#d5000 /home/d5000/guodiao tcsh
|
||||
#kingsoft /home/kingsoft/guodiao bash
|
||||
#ems /users/ems tcsh
|
||||
USER_SHELL=$3
|
||||
USER_HOME=$2
|
||||
USER_NAME=$1
|
||||
# check $USER_NAME group
|
||||
GRP_CONFIG=/etc/group
|
||||
check_config $GRP_CONFIG ^${USER_NAME}
|
||||
if [ $rtn -eq 2 ]; then
|
||||
groupadd ${USER_NAME}
|
||||
elif [ $rtn -eq 0 ]; then
|
||||
echo "${USER_NAME} group exist..."
|
||||
fi
|
||||
|
||||
# check ${USER_NAME}
|
||||
USER_CONFIG=/etc/passwd
|
||||
|
||||
check_config $USER_CONFIG ${USER_NAME}
|
||||
if [ $rtn -eq 2 ]; then
|
||||
mkdir -p ${USER_HOME}
|
||||
useradd -m -d ${USER_HOME} -s /bin/${USER_SHELL} ${USER_NAME}
|
||||
usermod -p `openssl passwd ${USER_NAME}` -g ${USER_NAME} -G audio,tty ${USER_NAME}
|
||||
elif [ $rtn -eq 0 ]; then
|
||||
usermod -g ${USER_NAME} -G audio,tty ${USER_NAME}
|
||||
echo "${USER_NAME} user exist..."
|
||||
fi
|
||||
|
||||
# check ${USER_NAME} home
|
||||
|
||||
check_konsole $USER_HOME
|
||||
check_konsole $HOME
|
||||
|
||||
ln -sf /bin/tcsh /bin/csh
|
||||
cp -r root-kde/.kde $HOME/
|
||||
cp -r d5000-kde/.kde $USER_HOME/
|
||||
#cp -r /etc/skel/.kde $USER_HOME/
|
||||
cp -r d5000-fcitx/.config $USER_HOME/
|
||||
chown -R ${USER_NAME}:${USER_NAME} ${USER_HOME}
|
||||
cp bash_profile /etc/skel/.bash_profile
|
||||
|
||||
usermod -p `openssl passwd root` root
|
||||
17
install_shell/crontab
Normal file
17
install_shell/crontab
Normal file
@@ -0,0 +1,17 @@
|
||||
#
|
||||
# Vixie cron /etc/crontab
|
||||
#
|
||||
|
||||
# globals
|
||||
SHELL=/bin/bash
|
||||
PATH=/bin:/sbin:/usr/bin:/usr/sbin
|
||||
MAILTO=""
|
||||
|
||||
0 20 * * * audadmin /usr/sbin/runjobs /etc/cron/daily
|
||||
5 20 * * mon audadmin /usr/sbin/runjobs /etc/cron/weekly
|
||||
10 20 1 * * audadmin /usr/sbin/runjobs /etc/cron/monthly
|
||||
0 20 * * * d5000 /usr/sbin/xrm.sh
|
||||
#Every Sunday morning, 5:0
|
||||
0 5 * * 7 audadmin /usr/sbin/linx-watch-top.sh&
|
||||
*/1 * * * * sysadmin /usr/sbin/update_time.sh
|
||||
*/1 * * * * audadmin /usr/sbin/get_max_mem_process.sh
|
||||
152
install_shell/d5000-fcitx/.config/fcitx/config
Normal file
152
install_shell/d5000-fcitx/.config/fcitx/config
Normal file
@@ -0,0 +1,152 @@
|
||||
[Program]
|
||||
# 字体
|
||||
Font=
|
||||
# 菜单字体
|
||||
MenuFont=
|
||||
# 字体区域
|
||||
FontLocale=zh_CN.UTF-8
|
||||
# 记录文件
|
||||
RecordFile=
|
||||
# 使用系统托盘
|
||||
UseTray=True
|
||||
# 使用DBus来显示界面(需要KIMPanel)
|
||||
UseDBus=False
|
||||
# 在Fcitx启用附加组件
|
||||
EnableAddons=True
|
||||
# Fcitx真正启动前延迟的秒数
|
||||
DelayStart=0
|
||||
|
||||
[Output]
|
||||
# 数字后跟半角符号
|
||||
HalfPuncAfterNumber=True
|
||||
# 回车键操作
|
||||
EnterAction=Commit
|
||||
# 分号键操作
|
||||
SemiColonAction=QuickPhrase
|
||||
# 大写时输入英文
|
||||
InputEngByCapitalChar=True
|
||||
# 转换中文标点
|
||||
ConvertPunc=True
|
||||
# 联想模式禁用翻页
|
||||
LegendModeDisablePaging=True
|
||||
# 快速切换英文模式时上屏
|
||||
SendTextWhenSwitchEng=False
|
||||
|
||||
[Appearance]
|
||||
# 候选词个数
|
||||
CandidateWordNumber=5
|
||||
# 主窗口隐藏模式
|
||||
MainWindowHideMode=Auto
|
||||
# 输入窗口显示在正中
|
||||
CenterInputWindow=False
|
||||
# 切换输入时显示输入条
|
||||
ShowInputWindowAfterTriggering=True
|
||||
# 序号后加点
|
||||
ShowPointAfterIndex=True
|
||||
# 显示输入速度
|
||||
ShowInputSpeed=True
|
||||
# 显示版本
|
||||
ShowVersion=True
|
||||
# 环境未配置正确时显示提示窗口
|
||||
ShowHintWindow=False
|
||||
# 皮肤名称
|
||||
SkinType=default
|
||||
|
||||
[Hotkey]
|
||||
# 快捷键: 切换输入法
|
||||
TriggerKey=CTRL_SPACE
|
||||
# 快捷键: 切换中英文输入
|
||||
ChnEngSwitchKey=L_CTRL
|
||||
# 双击中英文切换键时切换
|
||||
DoubleSwitchKey=False
|
||||
# 输入间隔
|
||||
TimeInterval=250
|
||||
# 快捷键: 切换光标跟随
|
||||
FollowCursorKey=CTRL_K
|
||||
# 快捷键: 隐藏主窗口
|
||||
HideMainWindowKey=CTRL_ALT_H
|
||||
# 快捷键: 切换软键盘
|
||||
VKSwitchKey=CTRL_ALT_K
|
||||
# 快捷键: 切换简繁体中文输入
|
||||
TraditionalChnSwitchKey=CTRL_ALT_F
|
||||
# 快捷键: 切换联想模式
|
||||
LegendSwitchKey=CTRL_L
|
||||
# 快捷键: 反查拼音
|
||||
LookupPinyinKey=CTRL_ALT_E
|
||||
# 快捷键: 切换全角
|
||||
FullWidthSwitchKey=SHIFT_SPACE
|
||||
# 快捷键: 切换中英文标点
|
||||
ChnPuncSwitchKey=ALT_SPACE
|
||||
# 快捷键: 前一页
|
||||
PrevPageKey=-
|
||||
# 快捷键: 后一页
|
||||
NextPageKey==
|
||||
# 快捷键: 选择第二第三候选词
|
||||
SecondThirdCandWordKey=SHIFT
|
||||
# 快捷键: 保存配置及输入历史
|
||||
SaveAllKey=CTRL_ALT_S
|
||||
# 快捷键: 切换记录模式
|
||||
SetRecordingKey=CTRL_ALT_J
|
||||
# 快捷键: 重置记录模式
|
||||
ResetRecordingKey=CTRL_ALT_A
|
||||
|
||||
[InputMethod]
|
||||
# 拼音输入法优先级,0为禁用
|
||||
PinyinOrder=1
|
||||
# 双拼输入法优先级,0为禁用
|
||||
ShuangpinOrder=1
|
||||
# 默认双拼方案
|
||||
DefaultShuangpinSchema=自然码
|
||||
# 区位输入法优先级,0为禁用
|
||||
QuweiOrder=0
|
||||
# 码表输入法优先级,0为禁用
|
||||
TableOrder=1
|
||||
# 提示词库中词组
|
||||
PhraseTips=True
|
||||
|
||||
[Pinyin]
|
||||
# 使用完整拼音
|
||||
UseCompletePinyin=False
|
||||
# 自动组词
|
||||
AutoCreatePhrase=True
|
||||
# 保存自动词组
|
||||
SaveAutoPhrase=False
|
||||
# 快捷键: 添加常用字
|
||||
AddFreqWordKey=CTRL_8
|
||||
# 快捷键: 删除常用字
|
||||
DeleteFreqWordKey=CTRL_7
|
||||
# 快捷键: 删除用户词组
|
||||
DeleteUserPhraseKey=CTRL_DELETE
|
||||
# 快捷键: 以词定字
|
||||
InputWordFromPhraseKey=[]
|
||||
# 候选字顺序
|
||||
BaseOrder=AdjustFreq
|
||||
# 候选词顺序
|
||||
PhraseOrder=AdjustFast
|
||||
# 常用字顺序
|
||||
FreqOrder=AdjustNo
|
||||
# 模糊an和ang
|
||||
FuzzyAnAng=False
|
||||
# 模糊en和eng
|
||||
FuzzyEnEng=False
|
||||
# 模糊ian和iang
|
||||
FuzzyIanIang=False
|
||||
# 模糊in和ing
|
||||
FuzzyInIng=False
|
||||
# 模糊ou和u
|
||||
FuzzyOuU=False
|
||||
# 模糊uan和uang
|
||||
FuzzyUanUang=False
|
||||
# 模糊c和ch
|
||||
FuzzyCCh=False
|
||||
# 模糊f和h
|
||||
FuzzyFH=False
|
||||
# 模糊l和n
|
||||
FuzzyLN=False
|
||||
# 模糊s和sh
|
||||
FuzzySSH=False
|
||||
# 模糊z和zh
|
||||
FuzzyZZH=False
|
||||
# 修复拼音中ng和gn的输入错误
|
||||
Misstype=False
|
||||
|
||||
1
install_shell/d5000-fcitx/.config/fcitx/crash.log
Normal file
1
install_shell/d5000-fcitx/.config/fcitx/crash.log
Normal file
@@ -0,0 +1 @@
|
||||
:0.0: X IO error.
|
||||
28
install_shell/d5000-fcitx/.config/fcitx/profile
Normal file
28
install_shell/d5000-fcitx/.config/fcitx/profile
Normal file
@@ -0,0 +1,28 @@
|
||||
[Profile]
|
||||
# 主窗口X位置
|
||||
MainWindowOffsetX=500
|
||||
# 主窗口Y位置
|
||||
MainWindowOffsetY=1
|
||||
# 输入框X位置
|
||||
InputWindowOffsetX=300
|
||||
# 输入框Y位置
|
||||
InputWindowOffsetY=50
|
||||
# 使用全角字符
|
||||
Corner=False
|
||||
# 使用中文标点
|
||||
ChnPunc=True
|
||||
# 光标跟随
|
||||
TrackCursor=True
|
||||
# 输入后联想词组
|
||||
UseLegend=False
|
||||
# 当前输入法
|
||||
IMIndex=0
|
||||
# 锁定
|
||||
Locked=False
|
||||
# 用紧凑的方式显示主窗口
|
||||
CompactMainWindow=False
|
||||
# 使用繁体中文输入
|
||||
UseGBKT=False
|
||||
# 使用记录模式
|
||||
Recording=False
|
||||
|
||||
BIN
install_shell/d5000-fcitx/.config/fcitx/pyindex.dat
Normal file
BIN
install_shell/d5000-fcitx/.config/fcitx/pyindex.dat
Normal file
Binary file not shown.
Binary file not shown.
BIN
install_shell/d5000-fcitx/.config/fcitx/table/wbpy.mb
Normal file
BIN
install_shell/d5000-fcitx/.config/fcitx/table/wbpy.mb
Normal file
Binary file not shown.
68
install_shell/d5000-kde/.kde/Autostart/.directory
Normal file
68
install_shell/d5000-kde/.kde/Autostart/.directory
Normal file
@@ -0,0 +1,68 @@
|
||||
[Desktop Entry]
|
||||
Type=Directory
|
||||
Name=Autostart
|
||||
Name[af]=Outomatiese begin
|
||||
Name[ar]=بدء تشغيل تلقائي
|
||||
Name[az]=Öz-Özünə Başlama
|
||||
Name[be]=Аўтазапуск
|
||||
Name[bg]=Автоматично стартиране
|
||||
Name[bn]=অটো-স্টার্ট
|
||||
Name[br]=Emloc'h
|
||||
Name[ca]=Autoengega
|
||||
Name[csb]=Aùtosztart
|
||||
Name[cy]=Hunan-gychwyn
|
||||
Name[el]=Αυτόματη Έναρξη
|
||||
Name[eo]=Aŭtolanĉo
|
||||
Name[es]=Inicio automático
|
||||
Name[eu]=Autoabiatu
|
||||
Name[fa]=خودآغاز
|
||||
Name[fi]=Käynnistä
|
||||
Name[fr]=Démarrage automatique
|
||||
Name[fy]=Automatysk Begjinne
|
||||
Name[ga]=Tús uathoibríoch
|
||||
Name[gl]=Autoinício
|
||||
Name[he]=הפעלה אוטומטית
|
||||
Name[hi]=स्वतःप्रारंभ
|
||||
Name[hr]=Automatsko pokretanje
|
||||
Name[hu]=Automatikus indítás
|
||||
Name[is]=Sjálfræsing
|
||||
Name[it]=Avvio automatico
|
||||
Name[ja]=自動起動
|
||||
Name[ka]=ავტოგაშვება
|
||||
Name[kk]=Автобастау
|
||||
Name[km]=ចាប់ផ្ដើមស្វ័យប្រវត្តិ
|
||||
Name[lo]=ເລິ່ມອັດໂນມັດ
|
||||
Name[lt]=Autostartas
|
||||
Name[lv]=Autostarts
|
||||
Name[mk]=Автостарт
|
||||
Name[mn]=Автомат эхлэгч
|
||||
Name[ms]=Automula
|
||||
Name[mt]=Awto-bidu
|
||||
Name[ne]=स्वत: सुरु
|
||||
Name[nso]=Thomo yago Itirisa
|
||||
Name[pa]=ਸਵੈ-ਚਾਲਤ
|
||||
Name[pt]=Arranque
|
||||
Name[pt_BR]=Inicialização Automática
|
||||
Name[ru]=Автозапуск
|
||||
Name[se]=Autoálggaheapmi
|
||||
Name[sk]=Autoštart
|
||||
Name[sl]=Samodejni zagon
|
||||
Name[sr]=Аутоматско покретање
|
||||
Name[sr@Latn]=Automatsko pokretanje
|
||||
Name[ta]=தானாகதுவக்கு
|
||||
Name[te]=స్వయంచాలన
|
||||
Name[tg]=Сар кунии автоматикӣ
|
||||
Name[th]=เริ่มอัตโนมัติ
|
||||
Name[tr]=Otomatik Başlat
|
||||
Name[tt]=Üze Cibäreläse
|
||||
Name[uk]=Автостарт
|
||||
Name[uz]=Avto-boshlash
|
||||
Name[uz@cyrillic]=Авто-бошлаш
|
||||
Name[ven]=Thoma
|
||||
Name[vi]=Tự khởi động
|
||||
Name[wa]=Enonde tot seu
|
||||
Name[xh]=Isiqalo esizenzekelayo
|
||||
Name[zh_CN]=自动启动
|
||||
Name[zh_TW]=自動啟動
|
||||
Name[zu]=Ukuqala ngokuzenzekela
|
||||
|
||||
@@ -0,0 +1,406 @@
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/khotkeys_32b1_update.upd' for new updates
|
||||
2011-03-09T15:09:43 khotkeys_32b1_update.upd: Found new update 'kde32b1'
|
||||
2011-03-09T15:09:43 khotkeys_32b1_update.upd: Running script 'khotkeys_update' with arguments '--id kde32b1'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kwin_fsp_workarounds_1.upd' for new updates
|
||||
2011-03-09T15:09:43 kwin_fsp_workarounds_1.upd: Found new update 'kde351'
|
||||
2011-03-09T15:09:43 kwin_fsp_workarounds_1.upd: Running script 'kwin_update_default_rules' with arguments 'fsp_workarounds_1.kwinrules'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kate-2.4.upd' for new updates
|
||||
2011-03-09T15:09:43 kate-2.4.upd: Found new update 'kate2.4'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/socks.upd' for new updates
|
||||
2011-03-09T15:09:43 socks.upd: Found new update 'kde3.0/r1'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kioslave.upd' for new updates
|
||||
2011-03-09T15:09:43 kioslave.upd: Found new update 'kde2.2/r1'
|
||||
2011-03-09T15:09:43 kioslave.upd: Skipping update 'kde2.2/r1'
|
||||
2011-03-09T15:09:43 kioslave.upd: Found new update 'kde2.2/r2'
|
||||
2011-03-09T15:09:43 kioslave.upd: Running script 'useragent.pl'
|
||||
2011-03-09T15:09:43 kioslave.upd: Script removes kioslaverc:UserAgent:EntriesCount
|
||||
2011-03-09T15:09:43 kioslave.upd: Found new update 'kde2.2/r3'
|
||||
2011-03-09T15:09:43 kioslave.upd: Running script 'proxytype.pl'
|
||||
2011-03-09T15:09:43 kioslave.upd: Script removes kioslaverc:Proxy Settings:UseProxy
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kdeprintrc.upd' for new updates
|
||||
2011-03-09T15:09:43 kdeprintrc.upd: Found new update 'kde-3.1-toolbar'
|
||||
2011-03-09T15:09:43 kdeprintrc.upd: Skipping kdeprintrc:General:ViewMenuBar, already exists.
|
||||
2011-03-09T15:09:43 kdeprintrc.upd: RemoveKey removes kdeprintrc:General:ViewToolBar
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kopete-pluginloader.upd' for new updates
|
||||
2011-03-09T15:09:43 kopete-pluginloader.upd: Found new update 'kopete0.7/r1'
|
||||
2011-03-09T15:09:43 kopete-pluginloader.upd: Running script 'kopete-pluginloader.pl'
|
||||
2011-03-09T15:09:43 kopete-pluginloader.upd: Script removes kopeterc::Modules
|
||||
2011-03-09T15:09:43 kopete-pluginloader.upd: Removing empty group kopeterc:
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kickerrc.upd' for new updates
|
||||
2011-03-09T15:09:43 kickerrc.upd: Found new update 'kde_3_1_sizeChanges'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Running script 'kicker-3.1-properSizeSetting.pl'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Found new update 'kde_3_4_reverseLayout'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Running script 'kicker-3.4-reverseLayout'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Found new update 'kde_3_5_taskbarEnums'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Running script 'kicker-3.5-taskbarEnums.pl'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Found new update 'kde_3_5_kconfigXTize'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Running script 'kicker-3.5-kconfigXTize.pl'
|
||||
2011-03-09T15:09:43 kickerrc.upd: Updating kickerrc:menus:MenuEntryFormat to 'NameAndDescription'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/noatun.upd' for new updates
|
||||
2011-03-09T15:09:43 noatun.upd: Found new update 'noatun20'
|
||||
2011-03-09T15:09:43 noatun.upd: Running script 'noatun20update'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/konqueror_gestures_kde321_update.upd' for new updates
|
||||
2011-03-09T15:09:43 konqueror_gestures_kde321_update.upd: Found new update 'kde321'
|
||||
2011-03-09T15:09:43 konqueror_gestures_kde321_update.upd: Running script 'khotkeys_update' with arguments '--id konqueror_gestures_kde321'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/korganizer.upd' for new updates
|
||||
2011-03-09T15:09:43 korganizer.upd: Found new update 'korganizer_3.4_GroupwareCleanup'
|
||||
2011-03-09T15:09:43 korganizer.upd: Found new update 'korganizer_3.4_WebExport'
|
||||
2011-03-09T15:09:43 korganizer.upd: Found new update 'korganizer_3.4_FilterAction'
|
||||
2011-03-09T15:09:43 korganizer.upd: Found new update 'korganizer_3.4_HolidayPlugin'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kdev-gen-settings.upd' for new updates
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Found new update 'kdev-gen-settings-update/5'
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Running script 'kdev-gen-settings-kconf_update'
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:Brackets, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:Fill, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:FillSpaces, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:IndentBrackets, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:IndentCases, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:IndentClasses, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:IndentLabels, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:IndentNamespaces, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:IndentSwitches, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:KeepBlocks, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:KeepStatements, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:MaxStatement, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:MinConditional, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:PadOperators, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:PadParentheses, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:AStyle:Style, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Editor:EmbeddedKTextEditor, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:General Options:Read Last Project On Startup, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Kate View Defaults:Icon Bar, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow:Height 768, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow:Width 1024, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:Hidden, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:IconSize, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:IconText, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:Index, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:NewLine, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:Offset, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar QextMdiTaskBar:Position, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:Hidden, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:IconSize, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:IconText, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:Index, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:NewLine, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:Offset, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar browserToolBar:Position, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:Hidden, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:IconSize, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:IconText, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:Index, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:NewLine, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:Offset, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Mainwindow Toolbar mainToolBar:Position, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:Plugins:KDevScripting, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:CloseOnHover, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:CloseOnHoverDelay, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:MDIMode, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:MDIStyle, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:OpenNewTabAfterCurrent, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:ShowCloseTabsButton, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:ShowTabIcons, already exists.
|
||||
2011-03-09T15:09:43 kdev-gen-settings.upd: Skipping kdeveloprc:UI:TabVisibility, already exists.
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kded.upd' for new updates
|
||||
2011-03-09T15:09:43 kded.upd: Found new update 'kde3.0'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kcharselect.upd' for new updates
|
||||
2011-03-09T15:09:43 kcharselect.upd: Found new update '1'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kwin.upd' for new updates
|
||||
2011-03-09T15:09:43 kwin.upd: Found new update 'kde3.0r1'
|
||||
2011-03-09T15:09:43 kwin.upd: Running script 'pluginlibFix.pl'
|
||||
2011-03-09T15:09:43 kwin.upd: Updating kwinrc:MouseBindings:CommandActiveTitlebar2 to 'Lower'
|
||||
2011-03-09T15:09:43 kwin.upd: Updating kwinrc:MouseBindings:CommandActiveTitlebar3 to 'Operations menu'
|
||||
2011-03-09T15:09:43 kwin.upd: Updating kwinrc:Windows:AltTabStyle to 'KDE'
|
||||
2011-03-09T15:09:43 kwin.upd: Updating kwinrc:Windows:FocusPolicy to 'ClickToFocus'
|
||||
2011-03-09T15:09:43 kwin.upd: Updating kwinrc:Windows:TitlebarDoubleClickCommand to 'Shade'
|
||||
2011-03-09T15:09:43 kwin.upd: Found new update 'kde3.2Xinerama'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/cervisia.upd' for new updates
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20021228'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20021229'
|
||||
2011-03-09T15:09:43 cervisia.upd: Running script 'move_repositories.pl'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030116'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030117'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030118'
|
||||
2011-03-09T15:09:43 cervisia.upd: Skipping update 'kde3.2/20030118'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030205'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030210'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030211'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030212'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030216'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030725'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030730'
|
||||
2011-03-09T15:09:43 cervisia.upd: Running script 'change_colors.pl'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20030829'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.2/20031014'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.4/20041112'
|
||||
2011-03-09T15:09:43 cervisia.upd: Running script 'cervisia-normalize_cvsroot.pl'
|
||||
2011-03-09T15:09:43 cervisia.upd: Found new update 'kde3.4/20041207'
|
||||
2011-03-09T15:09:43 cervisia.upd: Running script 'cervisia-change_repos_list.pl'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/klipperrc.upd' for new updates
|
||||
2011-03-09T15:09:43 klipperrc.upd: Found new update '25082001'
|
||||
2011-03-09T15:09:43 klipperrc.upd: Running script 'klipper-1-2.pl'
|
||||
2011-03-09T15:09:43 klipperrc.upd: Found new update 'kde3.1'
|
||||
2011-03-09T15:09:43 klipperrc.upd: Running script 'klipper-kde31.sh'
|
||||
2011-03-09T15:09:43 klipperrc.upd: Updating klipperrc:General:AutoStart to 'true'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/korn-3-5-update.upd' for new updates
|
||||
2011-03-09T15:09:43 korn-3-5-update.upd: Found new update 'korn-3-5-ssl-update'
|
||||
2011-03-09T15:09:43 korn-3-5-update.upd: Running script 'korn-3-5-ssl-update.pl'
|
||||
2011-03-09T15:09:43 korn-3-5-update.upd: Found new update 'korn-3-5-metadata-update'
|
||||
2011-03-09T15:09:43 korn-3-5-update.upd: Running script 'korn-3-5-metadata-update.pl'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kmail.upd' for new updates
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '1'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'upgrade-transport.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Mailer
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Method
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Precommand
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Smtp Host
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Smtp Password
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Smtp Port
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:sending mail:Smtp Username
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '4'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '5'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '6'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '7'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '8'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-pgpidentity.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '9'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'upgrade-signature.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.1-update-identities'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-upd-identities.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.1-use-identity-uoids'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.1-use-UOID-for-identities.pl'
|
||||
2011-03-09T15:09:43 [Script] Use of uninitialized value in hash element at /usr/share/apps/kconf_update/kmail-3.1-use-UOID-for-identities.pl line 45.
|
||||
2011-03-09T15:09:43 [Script] Use of uninitialized value in concatenation (.) or string at /usr/share/apps/kconf_update/kmail-3.1-use-UOID-for-identities.pl line 45.
|
||||
2011-03-09T15:09:43 [Script] Use of uninitialized value in hash element at /usr/share/apps/kconf_update/kmail-3.1-use-UOID-for-identities.pl line 49.
|
||||
2011-03-09T15:09:43 [Script] Use of uninitialized value in concatenation (.) or string at /usr/share/apps/kconf_update/kmail-3.1-use-UOID-for-identities.pl line 49.
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:General:Default Identity
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:Composer:previous-identity
|
||||
2011-03-09T15:09:43 kmail.upd: Updating kmailrc:Composer:previous-identity to ''
|
||||
2011-03-09T15:09:43 kmail.upd: Updating kmailrc:General:Default Identity to ''
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.1-new-mail-notification'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.1-update-new-mail-notification-settings.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:General:msgbox-on-mail
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:General:exec-on-mail
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:General:exec-on-mail-cmd
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.2-update-loop-on-goto-unread-settings'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.2-update-loop-on-goto-unread-settings.sh'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.1.4-dont-use-UOID-0-for-any-identity'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.1.4-dont-use-UOID-0-for-any-identity.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.2-misc'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.2-misc.sh'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.2-moves'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-use-ID-for-accounts'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.3-use-ID-for-accounts.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-update-filter-rules'
|
||||
2011-03-09T15:09:43 kmail.upd: !! Script 'kmail-3.3-update-filter-rules.pl' not found in line 99 : 'Script=kmail-3.3-update-filter-rules.pl,perl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-move-identities-to-own-file'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.3-move-identities.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Script removes kmailrc:General:Default Identity
|
||||
2011-03-09T15:09:43 kmail.upd: Updating emailidentities:General:Default Identity to ''
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-aegypten-kpgprc-to-kmailrc'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-aegypten-kpgprc-to-libkleopatrarc'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.3-aegypten.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-aegypten-emailidentities-split-sign-encr-keys'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.3-split-sign-encr-keys.sh'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3-misc'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.3-misc.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.3b1-misc'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.3b1-misc.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.4'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.4-misc.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.4a'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.4b'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.4.1'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.4.1-update-status-filters.pl'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.5.4'
|
||||
2011-03-09T15:09:43 kmail.upd: Found new update '3.5.7-imap-flag-migration-2'
|
||||
2011-03-09T15:09:43 kmail.upd: Running script 'kmail-3.5-trigger-flag-migration.pl'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/khotkeys_printscreen.upd' for new updates
|
||||
2011-03-09T15:09:43 khotkeys_printscreen.upd: Found new update 'printscreen'
|
||||
2011-03-09T15:09:43 khotkeys_printscreen.upd: Running script 'khotkeys_update' with arguments '--id printscreen'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kopete-jabberproxytype-kconf_update.upd' for new updates
|
||||
2011-03-09T15:09:43 kopete-jabberproxytype-kconf_update.upd: Found new update 'kopete0.9/r1'
|
||||
2011-03-09T15:09:43 kopete-jabberproxytype-kconf_update.upd: Running script 'kopete-jabberproxytype-kconf_update.sh'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/klippershortcuts.upd' for new updates
|
||||
2011-03-09T15:09:43 klippershortcuts.upd: Found new update '04112002'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kaccel.upd' for new updates
|
||||
2011-03-09T15:09:43 kaccel.upd: Found new update 'kde3.3/r1'
|
||||
2011-03-09T15:09:43 kaccel.upd: Running script 'convertShortcuts.pl'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kio_help.upd' for new updates
|
||||
2011-03-09T15:09:43 kio_help.upd: Found new update 'kde3_2'
|
||||
2011-03-09T15:09:43 kio_help.upd: Running script 'move_kio_help_cache.sh'
|
||||
2011-03-09T15:09:43 [Script] mv: cannot stat `/home/d5000/sichuan/.kde/share/apps/kio_help/cache': No such file or directory
|
||||
2011-03-09T15:09:43 [Script] rmdir: failed to remove `/home/d5000/sichuan/.kde/share/apps/kio_help': No such file or directory
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kopete-pluginloader2.upd' for new updates
|
||||
2011-03-09T15:09:43 kopete-pluginloader2.upd: Found new update 'kopete0.8/r1'
|
||||
2011-03-09T15:09:43 kopete-pluginloader2.upd: Running script 'kopete-pluginloader2.sh'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/ksmserver.upd' for new updates
|
||||
2011-03-09T15:09:43 ksmserver.upd: Found new update 'kde3'
|
||||
2011-03-09T15:09:43 ksmserver.upd: Running script 'move_session_config.sh'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kpgp.upd' for new updates
|
||||
2011-03-09T15:09:43 kpgp.upd: Found new update 'preKDE3_a'
|
||||
2011-03-09T15:09:43 kpgp.upd: Found new update '3.1-1'
|
||||
2011-03-09T15:09:43 kpgp.upd: Running script 'kpgp-3.1-upgrade-address-data.pl'
|
||||
2011-03-09T15:09:43 kpgp.upd: Script removes kpgprc:General:addressKeyEntries
|
||||
2011-03-09T15:09:43 kpgp.upd: Script removes kpgprc:General:addressEntries
|
||||
2011-03-09T15:09:43 kpgp.upd: Updating kpgprc:General:addressEntries to '0'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/knewsticker.upd' for new updates
|
||||
2011-03-09T15:09:43 knewsticker.upd: Found new update 'KNewsTicker-0.2'
|
||||
2011-03-09T15:09:43 knewsticker.upd: Running script 'knt-0.1-0.2.pl'
|
||||
2011-03-09T15:09:43 knewsticker.upd: Found new update 'KNewsTicker-0.2-Rename-KDE3'
|
||||
2011-03-09T15:09:43 knewsticker.upd: Found new update 'KNewsTicker-0.2-Rename-KDE3.1'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kolab-resource.upd' for new updates
|
||||
2011-03-09T15:09:43 kolab-resource.upd: Found new update 'kolab-calendar-resource-rename'
|
||||
2011-03-09T15:09:43 kolab-resource.upd: Running script 'upgrade-resourcetype.pl'
|
||||
2011-03-09T15:09:43 kolab-resource.upd: Found new update 'kolab-contact-resource-rename'
|
||||
2011-03-09T15:09:43 kolab-resource.upd: Running script 'upgrade-resourcetype.pl'
|
||||
2011-03-09T15:09:43 kolab-resource.upd: Found new update 'kolab-notes-resource-rename'
|
||||
2011-03-09T15:09:43 kolab-resource.upd: Running script 'upgrade-resourcetype.pl'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kcookiescfg.upd' for new updates
|
||||
2011-03-09T15:09:43 kcookiescfg.upd: Found new update 'kde2.2/b1'
|
||||
2011-03-09T15:09:43 kcookiescfg.upd: Found new update 'kde3.1/cvs'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kbabel-projectrename.upd' for new updates
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: Found new update 'kde34'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 4 : 'Author-Email,AuthorEmail'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 5 : 'Author-Name,AuthorName'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 6 : 'Local-Author-Name,LocalAuthorName'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 7 : 'Update-Charset,UpdateCharset'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 8 : 'Update-Encoding,UpdateEncoding'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 9 : 'Update-Language-Team,UpdateLanguageTeam'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 10 : 'Update-Last-Translator,UpdateLastTranslator'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 11 : 'Update-Project,UpdateProject'
|
||||
2011-03-09T15:09:43 kbabel-projectrename.upd: parse error in line 12 : 'Update-Revision,UpdateRevision'
|
||||
2011-03-09T15:09:43 Checking update-file '/usr/share/apps/kconf_update/kopete-account-kconf_update.upd' for new updates
|
||||
2011-03-09T15:09:43 kopete-account-kconf_update.upd: Found new update 'kopete0.7/r1'
|
||||
2011-03-09T15:09:43 kopete-account-kconf_update.upd: Running script 'kopete-account-kconf_update.sh'
|
||||
2011-03-09T15:09:44 kopete-account-kconf_update.upd: Found new update 'kopete0.10/r1'
|
||||
2011-03-09T15:09:44 kopete-account-kconf_update.upd: Running script 'kopete-account-0.10.pl'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kopete-nameTracking.upd' for new updates
|
||||
2011-03-09T15:09:44 kopete-nameTracking.upd: Found new update 'kopete0.9/r1'
|
||||
2011-03-09T15:09:44 kopete-nameTracking.upd: Running script 'kopete-nameTracking-kconf_update'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kwin3_plugin.upd' for new updates
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Found new update 'kde3.2'
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Running script 'kwin3_plugin.pl'
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Updating kwinrc:MouseBindings:CommandActiveTitlebar2 to 'Lower'
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Updating kwinrc:MouseBindings:CommandActiveTitlebar3 to 'Operations menu'
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Updating kwinrc:Windows:AltTabStyle to 'KDE'
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Updating kwinrc:Windows:FocusPolicy to 'ClickToFocus'
|
||||
2011-03-09T15:09:44 kwin3_plugin.upd: Updating kwinrc:Windows:TitlebarDoubleClickCommand to 'Shade'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/mouse_cursor_theme.upd' for new updates
|
||||
2011-03-09T15:09:44 mouse_cursor_theme.upd: Found new update 'kde3.4.99'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kwiniconify.upd' for new updates
|
||||
2011-03-09T15:09:44 kwiniconify.upd: Found new update 'iconifyupd3.1'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kwin_focus2.upd' for new updates
|
||||
2011-03-09T15:09:44 kwin_focus2.upd: Found new update 'kwin_focus2'
|
||||
2011-03-09T15:09:44 kwin_focus2.upd: Running script 'kwin_focus2.sh'
|
||||
2011-03-09T15:09:44 kwin_focus2.upd: Updating kwinrc:Windows:AltTabStyle to 'KDE'
|
||||
2011-03-09T15:09:44 kwin_focus2.upd: Updating kwinrc:Windows:FocusPolicy to 'ClickToFocus'
|
||||
2011-03-09T15:09:44 kwin_focus2.upd: Updating kwinrc:Windows:TitlebarDoubleClickCommand to 'Shade'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/konsole.upd' for new updates
|
||||
2011-03-09T15:09:44 konsole.upd: Found new update 'kde2.2/r1'
|
||||
2011-03-09T15:09:44 konsole.upd: Found new update 'kde3.0/r1'
|
||||
2011-03-09T15:09:44 konsole.upd: Running script 'schemaStrip.pl'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kcmcddb-emailsettings.upd' for new updates
|
||||
2011-03-09T15:09:44 kcmcddb-emailsettings.upd: Found new update 'kcmcddb_emailsettings'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/konqsidebartng.upd' for new updates
|
||||
2011-03-09T15:09:44 konqsidebartng.upd: Found new update 'konqsidebartng_rc'
|
||||
2011-03-09T15:09:44 konqsidebartng.upd: Found new update 'konqsidebartng_entries'
|
||||
2011-03-09T15:09:44 konqsidebartng.upd: Running script 'move_konqsidebartng_entries.sh'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/favicons.upd' for new updates
|
||||
2011-03-09T15:09:44 favicons.upd: Found new update 'kde3_2'
|
||||
2011-03-09T15:09:44 favicons.upd: Running script 'move_favicons.sh'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kcmdisplayrc.upd' for new updates
|
||||
2011-03-09T15:09:44 kcmdisplayrc.upd: Found new update 'kde3'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kbabel-project.upd' for new updates
|
||||
2011-03-09T15:09:44 kbabel-project.upd: Found new update 'kde33'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kcalcrc.upd' for new updates
|
||||
2011-03-09T15:09:44 kcalcrc.upd: Found new update 'KDE_3_2_0'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kbabel-difftoproject.upd' for new updates
|
||||
2011-03-09T15:09:44 kbabel-difftoproject.upd: Found new update 'kde34'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kwinsticky.upd' for new updates
|
||||
2011-03-09T15:09:44 kwinsticky.upd: Found new update 'stickyupd3.1'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kopete-jabberpriorityaddition-kconf_update.upd' for new updates
|
||||
2011-03-09T15:09:44 kopete-jabberpriorityaddition-kconf_update.upd: Found new update 'kopete0.9/r1'
|
||||
2011-03-09T15:09:44 kopete-jabberpriorityaddition-kconf_update.upd: Running script 'kopete-jabberpriorityaddition-kconf_update.sh'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kfmclient_3_2.upd' for new updates
|
||||
2011-03-09T15:09:44 kfmclient_3_2.upd: Found new update 'kfmclient_3_2'
|
||||
2011-03-09T15:09:44 kfmclient_3_2.upd: Running script 'kfmclient_3_2_update.sh'
|
||||
2011-03-09T15:09:44 kfmclient_3_2.upd: Script removes kfmclientrc:Settings:StartNewKonqueror
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kwinupdatewindowsettings.upd' for new updates
|
||||
2011-03-09T15:09:44 kwinupdatewindowsettings.upd: Found new update 'kde33b1'
|
||||
2011-03-09T15:09:44 kwinupdatewindowsettings.upd: Running script 'kwin_update_window_settings'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kghostview.upd' for new updates
|
||||
2011-03-09T15:09:44 kghostview.upd: Found new update '1changeToKConfigXT'
|
||||
2011-03-09T15:09:44 kghostview.upd: Found new update '2changeToKConfigXT'
|
||||
2011-03-09T15:09:44 kghostview.upd: Running script 'update-to-xt-names.pl'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/korn-3-4-config_change.upd' for new updates
|
||||
2011-03-09T15:09:44 korn-3-4-config_change.upd: Found new update 'korn_kde_3_4_config_change'
|
||||
2011-03-09T15:09:44 korn-3-4-config_change.upd: Running script 'korn-3-4-config_change'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kuriikwsfilter.upd' for new updates
|
||||
2011-03-09T15:09:44 kuriikwsfilter.upd: Found new update 'post-kde3.1/cvs'
|
||||
2011-03-09T15:09:44 Checking update-file '/usr/share/apps/kconf_update/kwin_focus1.upd' for new updates
|
||||
2011-03-09T15:09:44 kwin_focus1.upd: Found new update 'kwin_focus1'
|
||||
2011-03-09T15:09:44 kwin_focus1.upd: Running script 'kwin_focus1.sh'
|
||||
2011-03-09T15:09:44 kwin_focus1.upd: Updating kwinrc:Windows:AltTabStyle to 'KDE'
|
||||
2011-03-09T15:09:44 kwin_focus1.upd: Updating kwinrc:Windows:FocusPolicy to 'ClickToFocus'
|
||||
2011-03-09T15:09:44 kwin_focus1.upd: Updating kwinrc:Windows:IgnoreFocusStealingClasses to 'kio_uiserver'
|
||||
2011-03-09T15:09:44 kwin_focus1.upd: Updating kwinrc:Windows:TitlebarDoubleClickCommand to 'Shade'
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kcookiescfg.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kmail.upd' for new updates
|
||||
2011-03-09T16:02:43 kmail.upd: Found new update '3.3-update-filter-rules'
|
||||
2011-03-09T16:02:43 kmail.upd: Skipping update '3.3-update-filter-rules'
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kdeprintrc.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwin.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kopete-account-kconf_update.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kaccel.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kopete-pluginloader.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/korn-3-4-config_change.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/khotkeys_printscreen.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/noatun.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwin_fsp_workarounds_1.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kbabel-difftoproject.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kdev-gen-settings.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/khotkeys_32b1_update.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kcalcrc.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/socks.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/konsole.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/knewsticker.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kopete-nameTracking.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/korn-3-5-update.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/klippershortcuts.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwin3_plugin.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwinsticky.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kcmcddb-emailsettings.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/korganizer.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kcharselect.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kopete-jabberproxytype-kconf_update.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwin_focus1.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwiniconify.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kded.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kioslave.upd' for new updates
|
||||
2011-03-09T16:02:43 kioslave.upd: Found new update 'kde2.2/r1'
|
||||
2011-03-09T16:02:43 kioslave.upd: Skipping update 'kde2.2/r1'
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/mouse_cursor_theme.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kopete-jabberpriorityaddition-kconf_update.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwin_focus2.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/ksmserver.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kate-2.4.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kolab-resource.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kuriikwsfilter.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/konqueror_gestures_kde321_update.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kcmdisplayrc.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/favicons.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kbabel-projectrename.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kfmclient_3_2.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kghostview.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/konqsidebartng.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kopete-pluginloader2.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kio_help.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/klipperrc.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kickerrc.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kbabel-project.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kpgp.upd' for new updates
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/cervisia.upd' for new updates
|
||||
2011-03-09T16:02:43 cervisia.upd: Found new update 'kde3.2/20030118'
|
||||
2011-03-09T16:02:43 cervisia.upd: Skipping update 'kde3.2/20030118'
|
||||
2011-03-09T16:02:43 Checking update-file '/usr/share/apps/kconf_update/kwinupdatewindowsettings.upd' for new updates
|
||||
@@ -0,0 +1,23 @@
|
||||
[IconPosition::Home.desktop]
|
||||
Xabs=14
|
||||
Xabs_800x600=14
|
||||
Yabs=202
|
||||
Yabs_800x600=202
|
||||
|
||||
[IconPosition::System.desktop]
|
||||
Xabs=25
|
||||
Xabs_800x600=25
|
||||
Yabs=18
|
||||
Yabs_800x600=18
|
||||
|
||||
[IconPosition::konsole.desktop]
|
||||
Xabs=7
|
||||
Xabs_800x600=7
|
||||
Yabs=307
|
||||
Yabs_800x600=307
|
||||
|
||||
[IconPosition::trash.desktop]
|
||||
Xabs=21
|
||||
Xabs_800x600=21
|
||||
Yabs=110
|
||||
Yabs_800x600=110
|
||||
@@ -0,0 +1,3 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE xbel>
|
||||
<xbel/>
|
||||
@@ -0,0 +1 @@
|
||||
number=0
|
||||
2
install_shell/d5000-kde/.kde/share/config/artsmessagerc
Normal file
2
install_shell/d5000-kde/.kde/share/config/artsmessagerc
Normal file
@@ -0,0 +1,2 @@
|
||||
[Notification Messages]
|
||||
Sound_server_informational_message:__Error_while_initializing_the_sound_driver:_device_/dev/dsp_can't_be_opened_(No_such_file_or_directory)__The_sound_server_will_continue,_using_the_null_output_device.=false
|
||||
2
install_shell/d5000-kde/.kde/share/config/cervisiapartrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/cervisiapartrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=cervisia.upd:kde3.2/20021228,cervisia.upd:kde3.2/20021229,cervisia.upd:kde3.2/20030116,cervisia.upd:kde3.2/20030117,cervisia.upd:kde3.2/20030118,cervisia.upd:kde3.2/20030205,cervisia.upd:kde3.2/20030210,cervisia.upd:kde3.2/20030211,cervisia.upd:kde3.2/20030212,cervisia.upd:kde3.2/20030216,cervisia.upd:kde3.2/20030725,cervisia.upd:kde3.2/20030730,cervisia.upd:kde3.2/20030829,cervisia.upd:kde3.2/20031014,cervisia.upd:kde3.4/20041207
|
||||
2
install_shell/d5000-kde/.kde/share/config/cervisiarc
Normal file
2
install_shell/d5000-kde/.kde/share/config/cervisiarc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=cervisia.upd:kde3.2/20030116,cervisia.upd:kde3.2/20030117
|
||||
2
install_shell/d5000-kde/.kde/share/config/cvsservicerc
Normal file
2
install_shell/d5000-kde/.kde/share/config/cvsservicerc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=cervisia.upd:kde3.2/20021228,cervisia.upd:kde3.2/20021229,cervisia.upd:kde3.4/20041112
|
||||
@@ -0,0 +1,5 @@
|
||||
[$Version]
|
||||
update_info=kmail.upd:3.3-move-identities-to-own-file,kmail.upd:3.3-aegypten-emailidentities-split-sign-encr-keys
|
||||
|
||||
[General]
|
||||
Default Identity=
|
||||
54
install_shell/d5000-kde/.kde/share/config/gtkrc
Normal file
54
install_shell/d5000-kde/.kde/share/config/gtkrc
Normal file
@@ -0,0 +1,54 @@
|
||||
# 由 KDE 创建,三 3月 9 16:02:44 2011
|
||||
#
|
||||
# 如果您不想让 KDE 覆盖您的 GTK 设置,请在控制中心选择
|
||||
# 外观和主题 -> 颜色,并禁用“将颜色应用到非 KDE 程序”选项。
|
||||
#
|
||||
#
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.937, 0.937, 0.937 }
|
||||
bg[SELECTED] = { 0.404, 0.553, 0.698 }
|
||||
bg[INSENSITIVE] = { 0.937, 0.937, 0.937 }
|
||||
bg[ACTIVE] = { 0.780, 0.780, 0.780 }
|
||||
bg[PRELIGHT] = { 0.937, 0.937, 0.937 }
|
||||
|
||||
base[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
base[SELECTED] = { 0.404, 0.553, 0.698 }
|
||||
base[INSENSITIVE] = { 0.937, 0.937, 0.937 }
|
||||
base[ACTIVE] = { 0.404, 0.553, 0.698 }
|
||||
base[PRELIGHT] = { 0.404, 0.553, 0.698 }
|
||||
|
||||
text[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
text[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
text[INSENSITIVE] = { 0.780, 0.780, 0.780 }
|
||||
text[ACTIVE] = { 1.000, 1.000, 1.000 }
|
||||
text[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
|
||||
fg[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
fg[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
fg[INSENSITIVE] = { 0.780, 0.780, 0.780 }
|
||||
fg[ACTIVE] = { 0.000, 0.000, 0.000 }
|
||||
fg[PRELIGHT] = { 0.000, 0.000, 0.000 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 1.000, 1.000, 0.863 }
|
||||
base[NORMAL] = { 1.000, 1.000, 0.863 }
|
||||
text[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
fg[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.404, 0.553, 0.698 }
|
||||
fg[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
||||
56
install_shell/d5000-kde/.kde/share/config/gtkrc-2.0
Normal file
56
install_shell/d5000-kde/.kde/share/config/gtkrc-2.0
Normal file
@@ -0,0 +1,56 @@
|
||||
# 由 KDE 创建,三 3月 9 16:02:44 2011
|
||||
#
|
||||
# 如果您不想让 KDE 覆盖您的 GTK 设置,请在控制中心选择
|
||||
# 外观和主题 -> 颜色,并禁用“将颜色应用到非 KDE 程序”选项。
|
||||
#
|
||||
#
|
||||
style "default"
|
||||
{
|
||||
bg[NORMAL] = { 0.937, 0.937, 0.937 }
|
||||
bg[SELECTED] = { 0.404, 0.553, 0.698 }
|
||||
bg[INSENSITIVE] = { 0.937, 0.937, 0.937 }
|
||||
bg[ACTIVE] = { 0.780, 0.780, 0.780 }
|
||||
bg[PRELIGHT] = { 0.937, 0.937, 0.937 }
|
||||
|
||||
base[NORMAL] = { 1.000, 1.000, 1.000 }
|
||||
base[SELECTED] = { 0.404, 0.553, 0.698 }
|
||||
base[INSENSITIVE] = { 0.937, 0.937, 0.937 }
|
||||
base[ACTIVE] = { 0.404, 0.553, 0.698 }
|
||||
base[PRELIGHT] = { 0.404, 0.553, 0.698 }
|
||||
|
||||
text[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
text[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
text[INSENSITIVE] = { 0.780, 0.780, 0.780 }
|
||||
text[ACTIVE] = { 1.000, 1.000, 1.000 }
|
||||
text[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
|
||||
fg[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
fg[SELECTED] = { 1.000, 1.000, 1.000 }
|
||||
fg[INSENSITIVE] = { 0.780, 0.780, 0.780 }
|
||||
fg[ACTIVE] = { 0.000, 0.000, 0.000 }
|
||||
fg[PRELIGHT] = { 0.000, 0.000, 0.000 }
|
||||
}
|
||||
|
||||
class "*" style "default"
|
||||
|
||||
gtk-alternative-button-order = 1
|
||||
|
||||
style "ToolTip"
|
||||
{
|
||||
bg[NORMAL] = { 1.000, 1.000, 0.863 }
|
||||
base[NORMAL] = { 1.000, 1.000, 0.863 }
|
||||
text[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
fg[NORMAL] = { 0.000, 0.000, 0.000 }
|
||||
}
|
||||
|
||||
widget "gtk-tooltip" style "ToolTip"
|
||||
widget "gtk-tooltips" style "ToolTip"
|
||||
|
||||
style "MenuItem"
|
||||
{
|
||||
bg[PRELIGHT] = { 0.404, 0.553, 0.698 }
|
||||
fg[PRELIGHT] = { 1.000, 1.000, 1.000 }
|
||||
}
|
||||
|
||||
class "*MenuItem" style "MenuItem"
|
||||
|
||||
2
install_shell/d5000-kde/.kde/share/config/kab2kabcrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kab2kabcrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[Startup]
|
||||
EnableAutostart=false
|
||||
2
install_shell/d5000-kde/.kde/share/config/katerc
Normal file
2
install_shell/d5000-kde/.kde/share/config/katerc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kate-2.4.upd:kate2.4
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kbabel-projectrename.upd:kde34,kbabel-project.upd:kde33,kbabel-difftoproject.upd:kde34
|
||||
2
install_shell/d5000-kde/.kde/share/config/kbabelrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kbabelrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kbabel-project.upd:kde33,kbabel-difftoproject.upd:kde34
|
||||
2
install_shell/d5000-kde/.kde/share/config/kcalcrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kcalcrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kcalcrc.upd:KDE_3_2_0
|
||||
2
install_shell/d5000-kde/.kde/share/config/kcharselectrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kcharselectrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kcharselect.upd:1
|
||||
2
install_shell/d5000-kde/.kde/share/config/kcmcddbrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kcmcddbrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kcmcddb-emailsettings.upd:kcmcddb_emailsettings
|
||||
8
install_shell/d5000-kde/.kde/share/config/kcmdisplayrc
Normal file
8
install_shell/d5000-kde/.kde/share/config/kcmdisplayrc
Normal file
@@ -0,0 +1,8 @@
|
||||
[$Version]
|
||||
update_info=kcmdisplayrc.upd:kde3
|
||||
|
||||
[DisplayEnergy]
|
||||
displayEnergySaving=true
|
||||
displayPowerOff=0
|
||||
displayStandby=0
|
||||
displaySuspend=0
|
||||
2
install_shell/d5000-kde/.kde/share/config/kcminputrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kcminputrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=mouse_cursor_theme.upd:kde3.4.99
|
||||
3
install_shell/d5000-kde/.kde/share/config/kcmnspluginrc
Normal file
3
install_shell/d5000-kde/.kde/share/config/kcmnspluginrc
Normal file
@@ -0,0 +1,3 @@
|
||||
[Misc]
|
||||
firstTime=false
|
||||
scanPaths=$HOME/.mozilla/plugins,$HOME/.netscape/plugins,/usr/lib/firefox/plugins,/usr/lib64/browser-plugins,/usr/lib/browser-plugins,/usr/local/netscape/plugins,/opt/mozilla/plugins,/opt/mozilla/lib/plugins,/opt/netscape/plugins,/opt/netscape/communicator/plugins,/usr/lib/netscape/plugins,/usr/lib/netscape/plugins-libc5,/usr/lib/netscape/plugins-libc6,/usr/lib/mozilla/plugins,/usr/lib64/netscape/plugins,/usr/lib64/mozilla/plugins,$MOZILLA_HOME/plugins
|
||||
266
install_shell/d5000-kde/.kde/share/config/kconf_updaterc
Normal file
266
install_shell/d5000-kde/.kde/share/config/kconf_updaterc
Normal file
@@ -0,0 +1,266 @@
|
||||
updateInfoAdded=true
|
||||
|
||||
[cervisia.upd]
|
||||
ctime=1299650263
|
||||
done=kde3.2/20021228,kde3.2/20021229,kde3.2/20030116,kde3.2/20030117,kde3.2/20030205,kde3.2/20030210,kde3.2/20030211,kde3.2/20030212,kde3.2/20030216,kde3.2/20030725,kde3.2/20030730,kde3.2/20030829,kde3.2/20031014,kde3.4/20041112,kde3.4/20041207
|
||||
mtime=1299650263
|
||||
|
||||
[favicons.upd]
|
||||
ctime=1299650232
|
||||
done=kde3_2
|
||||
mtime=1299650232
|
||||
|
||||
[kaccel.upd]
|
||||
ctime=1299650232
|
||||
done=kde3.3/r1
|
||||
mtime=1299650232
|
||||
|
||||
[kate-2.4.upd]
|
||||
ctime=1299650232
|
||||
done=kate2.4
|
||||
mtime=1299650232
|
||||
|
||||
[kbabel-difftoproject.upd]
|
||||
ctime=1299650263
|
||||
done=kde34
|
||||
mtime=1299650263
|
||||
|
||||
[kbabel-project.upd]
|
||||
ctime=1299650263
|
||||
done=kde33
|
||||
mtime=1299650263
|
||||
|
||||
[kbabel-projectrename.upd]
|
||||
ctime=1299650263
|
||||
done=kde34
|
||||
mtime=1299650263
|
||||
|
||||
[kcalcrc.upd]
|
||||
ctime=1299650265
|
||||
done=KDE_3_2_0
|
||||
mtime=1299650265
|
||||
|
||||
[kcharselect.upd]
|
||||
ctime=1299650265
|
||||
done=1
|
||||
mtime=1299650265
|
||||
|
||||
[kcmcddb-emailsettings.upd]
|
||||
ctime=1299650255
|
||||
done=kcmcddb_emailsettings
|
||||
mtime=1299650255
|
||||
|
||||
[kcmdisplayrc.upd]
|
||||
ctime=1299650232
|
||||
done=kde3
|
||||
mtime=1299650232
|
||||
|
||||
[kcookiescfg.upd]
|
||||
ctime=1299650252
|
||||
done=kde2.2/b1,kde3.1/cvs
|
||||
mtime=1299650252
|
||||
|
||||
[kded.upd]
|
||||
ctime=1299650252
|
||||
done=kde3.0
|
||||
mtime=1299650252
|
||||
|
||||
[kdeprintrc.upd]
|
||||
ctime=1299650252
|
||||
done=kde-3.1-toolbar
|
||||
mtime=1299650252
|
||||
|
||||
[kdev-gen-settings.upd]
|
||||
ctime=1299650267
|
||||
done=kdev-gen-settings-update/5
|
||||
mtime=1299650267
|
||||
|
||||
[kfmclient_3_2.upd]
|
||||
ctime=1299650232
|
||||
done=kfmclient_3_2
|
||||
mtime=1299650232
|
||||
|
||||
[kghostview.upd]
|
||||
ctime=1299650249
|
||||
done=1changeToKConfigXT,2changeToKConfigXT
|
||||
mtime=1299650249
|
||||
|
||||
[khotkeys_32b1_update.upd]
|
||||
ctime=1299650232
|
||||
done=kde32b1
|
||||
mtime=1299650232
|
||||
|
||||
[khotkeys_printscreen.upd]
|
||||
ctime=1299650232
|
||||
done=printscreen
|
||||
mtime=1299650232
|
||||
|
||||
[kickerrc.upd]
|
||||
ctime=1299650232
|
||||
done=kde_3_1_sizeChanges,kde_3_4_reverseLayout,kde_3_5_taskbarEnums,kde_3_5_kconfigXTize
|
||||
mtime=1299650232
|
||||
|
||||
[kio_help.upd]
|
||||
ctime=1299650252
|
||||
done=kde3_2
|
||||
mtime=1299650252
|
||||
|
||||
[kioslave.upd]
|
||||
ctime=1299650252
|
||||
done=kde2.2/r2,kde2.2/r3
|
||||
mtime=1299650252
|
||||
|
||||
[klipperrc.upd]
|
||||
ctime=1299650232
|
||||
done=25082001,kde3.1
|
||||
mtime=1299650232
|
||||
|
||||
[klippershortcuts.upd]
|
||||
ctime=1299650232
|
||||
done=04112002
|
||||
mtime=1299650232
|
||||
|
||||
[kmail.upd]
|
||||
ctime=1299650261
|
||||
done=1,4,5,6,7,8,9,3.1-update-identities,3.1-use-identity-uoids,3.1-new-mail-notification,3.2-update-loop-on-goto-unread-settings,3.1.4-dont-use-UOID-0-for-any-identity,3.2-misc,3.2-moves,3.3-use-ID-for-accounts,3.3-move-identities-to-own-file,3.3-aegypten-kpgprc-to-kmailrc,3.3-aegypten-kpgprc-to-libkleopatrarc,3.3-aegypten-emailidentities-split-sign-encr-keys,3.3-misc,3.3b1-misc,3.4,3.4a,3.4b,3.4.1,3.5.4,3.5.7-imap-flag-migration-2
|
||||
mtime=1299650261
|
||||
|
||||
[knewsticker.upd]
|
||||
ctime=1299650258
|
||||
done=KNewsTicker-0.2,KNewsTicker-0.2-Rename-KDE3,KNewsTicker-0.2-Rename-KDE3.1
|
||||
mtime=1299650258
|
||||
|
||||
[kolab-resource.upd]
|
||||
ctime=1299650261
|
||||
done=kolab-calendar-resource-rename,kolab-contact-resource-rename,kolab-notes-resource-rename
|
||||
mtime=1299650261
|
||||
|
||||
[konqsidebartng.upd]
|
||||
ctime=1299650232
|
||||
done=konqsidebartng_rc,konqsidebartng_entries
|
||||
mtime=1299650232
|
||||
|
||||
[konqueror_gestures_kde321_update.upd]
|
||||
ctime=1299650232
|
||||
done=kde321
|
||||
mtime=1299650232
|
||||
|
||||
[konsole.upd]
|
||||
ctime=1299650232
|
||||
done=kde2.2/r1,kde3.0/r1
|
||||
mtime=1299650232
|
||||
|
||||
[kopete-account-kconf_update.upd]
|
||||
ctime=1299650258
|
||||
done=kopete0.7/r1,kopete0.10/r1
|
||||
mtime=1299650258
|
||||
|
||||
[kopete-jabberpriorityaddition-kconf_update.upd]
|
||||
ctime=1299650258
|
||||
done=kopete0.9/r1
|
||||
mtime=1299650258
|
||||
|
||||
[kopete-jabberproxytype-kconf_update.upd]
|
||||
ctime=1299650258
|
||||
done=kopete0.9/r1
|
||||
mtime=1299650258
|
||||
|
||||
[kopete-nameTracking.upd]
|
||||
ctime=1299650258
|
||||
done=kopete0.9/r1
|
||||
mtime=1299650258
|
||||
|
||||
[kopete-pluginloader.upd]
|
||||
ctime=1299650258
|
||||
done=kopete0.7/r1
|
||||
mtime=1299650258
|
||||
|
||||
[kopete-pluginloader2.upd]
|
||||
ctime=1299650258
|
||||
done=kopete0.8/r1
|
||||
mtime=1299650258
|
||||
|
||||
[korganizer.upd]
|
||||
ctime=1299650261
|
||||
done=korganizer_3.4_GroupwareCleanup,korganizer_3.4_WebExport,korganizer_3.4_FilterAction,korganizer_3.4_HolidayPlugin
|
||||
mtime=1299650261
|
||||
|
||||
[korn-3-4-config_change.upd]
|
||||
ctime=1299650261
|
||||
done=korn_kde_3_4_config_change
|
||||
mtime=1299650261
|
||||
|
||||
[korn-3-5-update.upd]
|
||||
ctime=1299650261
|
||||
done=korn-3-5-ssl-update,korn-3-5-metadata-update
|
||||
mtime=1299650261
|
||||
|
||||
[kpgp.upd]
|
||||
ctime=1299650261
|
||||
done=preKDE3_a,3.1-1
|
||||
mtime=1299650261
|
||||
|
||||
[ksmserver.upd]
|
||||
ctime=1299650232
|
||||
done=kde3
|
||||
mtime=1299650232
|
||||
|
||||
[kuriikwsfilter.upd]
|
||||
ctime=1299650232
|
||||
done=post-kde3.1/cvs
|
||||
mtime=1299650232
|
||||
|
||||
[kwin.upd]
|
||||
ctime=1299650232
|
||||
done=kde3.0r1,kde3.2Xinerama
|
||||
mtime=1299650232
|
||||
|
||||
[kwin3_plugin.upd]
|
||||
ctime=1299650232
|
||||
done=kde3.2
|
||||
mtime=1299650232
|
||||
|
||||
[kwin_focus1.upd]
|
||||
ctime=1299650232
|
||||
done=kwin_focus1
|
||||
mtime=1299650232
|
||||
|
||||
[kwin_focus2.upd]
|
||||
ctime=1299650232
|
||||
done=kwin_focus2
|
||||
mtime=1299650232
|
||||
|
||||
[kwin_fsp_workarounds_1.upd]
|
||||
ctime=1299650232
|
||||
done=kde351
|
||||
mtime=1299650232
|
||||
|
||||
[kwiniconify.upd]
|
||||
ctime=1299650232
|
||||
done=iconifyupd3.1
|
||||
mtime=1299650232
|
||||
|
||||
[kwinsticky.upd]
|
||||
ctime=1299650232
|
||||
done=stickyupd3.1
|
||||
mtime=1299650232
|
||||
|
||||
[kwinupdatewindowsettings.upd]
|
||||
ctime=1299650232
|
||||
done=kde33b1
|
||||
mtime=1299650232
|
||||
|
||||
[mouse_cursor_theme.upd]
|
||||
ctime=1299650232
|
||||
done=kde3.4.99
|
||||
mtime=1299650232
|
||||
|
||||
[noatun.upd]
|
||||
ctime=1299650255
|
||||
done=noatun20
|
||||
mtime=1299650255
|
||||
|
||||
[socks.upd]
|
||||
ctime=1299650232
|
||||
done=kde3.0/r1
|
||||
mtime=1299650232
|
||||
2
install_shell/d5000-kde/.kde/share/config/kcookiejarrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kcookiejarrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kcookiescfg.upd:kde2.2/b1,kcookiescfg.upd:kde3.1/cvs
|
||||
2
install_shell/d5000-kde/.kde/share/config/kdedrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kdedrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kded.upd:kde3.0
|
||||
172
install_shell/d5000-kde/.kde/share/config/kdeglobals
Normal file
172
install_shell/d5000-kde/.kde/share/config/kdeglobals
Normal file
@@ -0,0 +1,172 @@
|
||||
[$Version]
|
||||
update_info=socks.upd:kde3.0/r1,kded.upd:kde3.0,kwin.upd:kde3.2Xinerama,klippershortcuts.upd:04112002,kaccel.upd:kde3.3/r1,mouse_cursor_theme.upd:kde3.4.99
|
||||
|
||||
[DesktopIcons]
|
||||
ActiveEffect=togamma
|
||||
ActiveValue=0.7
|
||||
Animated=true
|
||||
Size=32
|
||||
|
||||
[General]
|
||||
background=239,239,239
|
||||
buttonBackground=221,223,228
|
||||
buttonForeground=0,0,0
|
||||
foreground=0,0,0
|
||||
linkColor=0,0,238
|
||||
selectBackground=103,141,178
|
||||
selectForeground=255,255,255
|
||||
visitedLinkColor=82,24,139
|
||||
widgetStyle=Plastik
|
||||
windowBackground=255,255,255
|
||||
windowForeground=0,0,0
|
||||
|
||||
[Global Shortcuts]
|
||||
Activate Window Demanding Attention=default(Alt+Ctrl+A)
|
||||
Block Global Shortcuts=none
|
||||
Defaults timestamp=Nov 23 201013:55:45
|
||||
Desktop Screenshot=default(Ctrl+Print)
|
||||
Enable/Disable Clipboard Actions=default(Alt+Ctrl+X)
|
||||
Halt without Confirmation=none
|
||||
Kill Window=default(Alt+Ctrl+Escape)
|
||||
Lock Session=default(Alt+Ctrl+L)
|
||||
Log Out=default(Alt+Ctrl+Delete)
|
||||
Log Out Without Confirmation=default(Alt+Ctrl+Shift+Delete)
|
||||
Manually Invoke Action on Current Clipboard=default(Alt+Ctrl+R)
|
||||
Mouse Emulation=default(Alt+F12)
|
||||
Next Taskbar Entry=none
|
||||
Popup Launch Menu=default(Alt+F1)
|
||||
Previous Taskbar Entry=none
|
||||
Reboot without Confirmation=none
|
||||
Run Command=default(Alt+F2)
|
||||
Setup Window Shortcut=none
|
||||
Show Klipper Popup-Menu=default(Alt+Ctrl+V)
|
||||
Show Taskmanager=default(Ctrl+Escape)
|
||||
Show Window List=default(Alt+F5)
|
||||
Switch One Desktop Down=none
|
||||
Switch One Desktop Up=none
|
||||
Switch One Desktop to the Left=none
|
||||
Switch One Desktop to the Right=none
|
||||
Switch User=default(Alt+Ctrl+Insert)
|
||||
Switch to Desktop 1=default(Ctrl+F1)
|
||||
Switch to Desktop 10=default(Ctrl+F10)
|
||||
Switch to Desktop 11=default(Ctrl+F11)
|
||||
Switch to Desktop 12=default(Ctrl+F12)
|
||||
Switch to Desktop 13=default(Ctrl+Shift+F1)
|
||||
Switch to Desktop 14=default(Ctrl+Shift+F2)
|
||||
Switch to Desktop 15=default(Ctrl+Shift+F3)
|
||||
Switch to Desktop 16=default(Ctrl+Shift+F4)
|
||||
Switch to Desktop 17=default(Ctrl+Shift+F5)
|
||||
Switch to Desktop 18=default(Ctrl+Shift+F6)
|
||||
Switch to Desktop 19=default(Ctrl+Shift+F7)
|
||||
Switch to Desktop 2=default(Ctrl+F2)
|
||||
Switch to Desktop 20=default(Ctrl+Shift+F8)
|
||||
Switch to Desktop 3=default(Ctrl+F3)
|
||||
Switch to Desktop 4=default(Ctrl+F4)
|
||||
Switch to Desktop 5=default(Ctrl+F5)
|
||||
Switch to Desktop 6=default(Ctrl+F6)
|
||||
Switch to Desktop 7=default(Ctrl+F7)
|
||||
Switch to Desktop 8=default(Ctrl+F8)
|
||||
Switch to Desktop 9=default(Ctrl+F9)
|
||||
Switch to Next Desktop=none
|
||||
Switch to Next Keyboard Layout=default(Alt+Ctrl+K)
|
||||
Switch to Previous Desktop=none
|
||||
Toggle Showing Desktop=default(Alt+Ctrl+D)
|
||||
Toggle Window Raise/Lower=none
|
||||
Walk Through Desktop List=Ctrl+Tab
|
||||
Walk Through Desktop List (Reverse)=Ctrl+Shift+Tab
|
||||
Walk Through Desktops=none
|
||||
Walk Through Desktops (Reverse)=none
|
||||
Walk Through Windows=default(Alt+Tab)
|
||||
Walk Through Windows (Reverse)=default(Alt+Shift+Tab)
|
||||
Window Above Other Windows=none
|
||||
Window Below Other Windows=none
|
||||
Window Close=default(Alt+F4)
|
||||
Window Fullscreen=none
|
||||
Window Grow Horizontal=none
|
||||
Window Grow Vertical=none
|
||||
Window Lower=none
|
||||
Window Maximize=none
|
||||
Window Maximize Horizontal=none
|
||||
Window Maximize Vertical=none
|
||||
Window Minimize=none
|
||||
Window Move=none
|
||||
Window No Border=none
|
||||
Window On All Desktops=none
|
||||
Window One Desktop Down=none
|
||||
Window One Desktop Up=none
|
||||
Window One Desktop to the Left=none
|
||||
Window One Desktop to the Right=none
|
||||
Window Operations Menu=default(Alt+F3)
|
||||
Window Pack Down=none
|
||||
Window Pack Left=none
|
||||
Window Pack Right=none
|
||||
Window Pack Up=none
|
||||
Window Raise=none
|
||||
Window Resize=none
|
||||
Window Screenshot=default(Alt+Print)
|
||||
Window Shade=none
|
||||
Window Shrink Horizontal=none
|
||||
Window Shrink Vertical=none
|
||||
Window to Desktop 1=none
|
||||
Window to Desktop 10=none
|
||||
Window to Desktop 11=none
|
||||
Window to Desktop 12=none
|
||||
Window to Desktop 13=none
|
||||
Window to Desktop 14=none
|
||||
Window to Desktop 15=none
|
||||
Window to Desktop 16=none
|
||||
Window to Desktop 17=none
|
||||
Window to Desktop 18=none
|
||||
Window to Desktop 19=none
|
||||
Window to Desktop 2=none
|
||||
Window to Desktop 20=none
|
||||
Window to Desktop 3=none
|
||||
Window to Desktop 4=none
|
||||
Window to Desktop 5=none
|
||||
Window to Desktop 6=none
|
||||
Window to Desktop 7=none
|
||||
Window to Desktop 8=none
|
||||
Window to Desktop 9=none
|
||||
Window to Next Desktop=none
|
||||
Window to Previous Desktop=none
|
||||
|
||||
[Icons]
|
||||
Theme=crystalsvg
|
||||
|
||||
[KDE]
|
||||
ChangeCursor=true
|
||||
EffectAnimateCombo=true
|
||||
EffectFadeMenu=true
|
||||
EffectFadeTooltip=true
|
||||
EffectsEnabled=true
|
||||
OpaqueResize=true
|
||||
ShowIconsOnPushButtons=false
|
||||
SingleClick=true
|
||||
colorScheme=<default>
|
||||
contrast=7
|
||||
macStyle=false
|
||||
|
||||
[Keyboard]
|
||||
Gestures=false
|
||||
|
||||
[Locale]
|
||||
Country=cn
|
||||
Language=zh_CN
|
||||
|
||||
[PanelIcons]
|
||||
ActiveEffect=togamma
|
||||
ActiveValue=0.7
|
||||
|
||||
[Paths]
|
||||
Trash[$e]=$HOME/Desktop/回收站/
|
||||
|
||||
[WM]
|
||||
activeBackground=65,142,220
|
||||
activeBlend=107,145,184
|
||||
activeForeground=255,255,255
|
||||
activeTitleBtnBg=127,158,200
|
||||
alternateBackground=237,244,249
|
||||
inactiveBackground=157,170,186
|
||||
inactiveBlend=157,170,186
|
||||
inactiveForeground=221,221,221
|
||||
inactiveTitleBtnBg=167,181,199
|
||||
5
install_shell/d5000-kde/.kde/share/config/kdeprintrc
Normal file
5
install_shell/d5000-kde/.kde/share/config/kdeprintrc
Normal file
@@ -0,0 +1,5 @@
|
||||
[$Version]
|
||||
update_info=kdeprintrc.upd:kde-3.1-toolbar
|
||||
|
||||
[General]
|
||||
ViewToolBar[$d]
|
||||
25
install_shell/d5000-kde/.kde/share/config/kdesktoprc
Normal file
25
install_shell/d5000-kde/.kde/share/config/kdesktoprc
Normal file
@@ -0,0 +1,25 @@
|
||||
[Desktop Icons]
|
||||
Preview=imagethumbnail
|
||||
|
||||
[Desktop0]
|
||||
BackgroundMode=Flat
|
||||
Color1=0,48,130
|
||||
Color2=108,139,185
|
||||
MultiWallpaperMode=NoMulti
|
||||
Wallpaper[$e]=ROCKY42.png
|
||||
WallpaperMode=Scaled
|
||||
|
||||
[FMSettings]
|
||||
NormalTextColor=255,255,255
|
||||
UnderlineLinks=false
|
||||
|
||||
[Menubar]
|
||||
ShowMenubar=false
|
||||
|
||||
[Mouse Buttons]
|
||||
Middle=WindowListMenu
|
||||
|
||||
[Version]
|
||||
KDEVersionMajor=3
|
||||
KDEVersionMinor=5
|
||||
KDEVersionRelease=10
|
||||
2
install_shell/d5000-kde/.kde/share/config/kdeveloprc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kdeveloprc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kdev-gen-settings.upd:kdev-gen-settings-update/5
|
||||
2
install_shell/d5000-kde/.kde/share/config/kfmclientrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kfmclientrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kfmclient_3_2.upd:kfmclient_3_2
|
||||
2
install_shell/d5000-kde/.kde/share/config/kghostviewrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kghostviewrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kghostview.upd:1changeToKConfigXT,kghostview.upd:2changeToKConfigXT
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=khotkeys_32b1_update.upd:kde32b1,konqueror_gestures_kde321_update.upd:kde321,khotkeys_printscreen.upd:printscreen
|
||||
886
install_shell/d5000-kde/.kde/share/config/khotkeysrc
Normal file
886
install_shell/d5000-kde/.kde/share/config/khotkeysrc
Normal file
@@ -0,0 +1,886 @@
|
||||
[Data]
|
||||
DataCount=3
|
||||
|
||||
[Data_1]
|
||||
Comment=This group contains various examples demonstrating most of the features of KHotkeys. (Note that this group and all its actions are disabled by default.)
|
||||
DataCount=8
|
||||
Enabled=false
|
||||
Name=Examples
|
||||
SystemGroup=0
|
||||
Type=ACTION_DATA_GROUP
|
||||
|
||||
[Data_1Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_1]
|
||||
Comment=After pressing Ctrl+Alt+I, the KSIRC window will be activated, if it exists. Simple.
|
||||
Enabled=false
|
||||
Name=Activate KSIRC Window
|
||||
Type=ACTIVATE_WINDOW_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_1_1Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_1Actions0]
|
||||
Type=ACTIVATE_WINDOW
|
||||
|
||||
[Data_1_1Actions0Window]
|
||||
Comment=KSIRC window
|
||||
WindowsCount=1
|
||||
|
||||
[Data_1_1Actions0Window0]
|
||||
Class=ksirc
|
||||
ClassType=1
|
||||
Comment=KSIRC
|
||||
Role=
|
||||
RoleType=0
|
||||
Title=
|
||||
TitleType=0
|
||||
Type=SIMPLE
|
||||
WindowTypes=33
|
||||
|
||||
[Data_1_1Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_1Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_1Triggers0]
|
||||
Key=Alt+Ctrl+I
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_1_2]
|
||||
Comment=After pressing Alt+Ctrl+H, 'Hello' input will be simulated just like if you typed it. Especially useful if you're lazy to type things like 'unsigned'. Every keypress in the input is separated by a colon ':' . Note that the keypresses mean really keypresses, so you have to write what you'd really press on the keyboard. In the table below, left column shows the input and the right column shows what to type.\n\n"enter" (i.e. new line) Enter or Return\na (i.e. small a) A\nA (i.e. capital a) Shift+A\n: (colon) Shift+;\n' ' (space) Space
|
||||
Enabled=false
|
||||
Name=Type 'Hello'
|
||||
Type=KEYBOARD_INPUT_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_1_2Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_2Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Shift+H:E:L:L:O\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_2Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_2Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_2Triggers0]
|
||||
Key=Alt+Ctrl+H
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_1_3]
|
||||
Comment=This action runs Konsole, after pressing Ctrl+Alt+T.
|
||||
Enabled=false
|
||||
Name=Run Konsole
|
||||
Type=COMMAND_URL_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_1_3Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_3Actions0]
|
||||
CommandURL=konsole
|
||||
Type=COMMAND_URL
|
||||
|
||||
[Data_1_3Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_3Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_3Triggers0]
|
||||
Key=Alt+Ctrl+T
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_1_4]
|
||||
Comment=Read the comment on action "Type 'Hello'" first.\n\nQt Designer uses Ctrl+F4 for closing windows (maybe because MS Windows does it that way *shrug*). But Ctrl+F4 in KDE stands for going to virtual desktop 4, so it doesn't work in Qt Designer, and also, Qt Designer doesn't use KDE's standard Ctrl+W for closing the window.\n\nBut the problem can be solved by remaping Ctrl+W to Ctrl+F4 when the active window is Qt Designer. When Qt Designer is active, every time Ctrl+W is pressed, Ctrl+F4 will be sent to Qt Designer instead. In other applications, Ctrl+W remains working the usual way of course.\n\nWe now need to specify three things: A new shortcut trigger on 'Ctrl+W', a new keyboard input action sending Ctrl+F4, and a new condition that the active window is Qt Designer.\nQt Designer seems to always have title 'Qt Designer by Trolltech', so the condition will check for the active window having that title.
|
||||
Enabled=false
|
||||
Name=Remap Ctrl+W to Ctrl+F4 in Qt Designer
|
||||
Type=GENERIC_ACTION_DATA
|
||||
|
||||
[Data_1_4Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_4Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+F4
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_4Conditions]
|
||||
Comment=
|
||||
ConditionsCount=1
|
||||
|
||||
[Data_1_4Conditions0]
|
||||
Type=ACTIVE_WINDOW
|
||||
|
||||
[Data_1_4Conditions0Window]
|
||||
Comment=Qt Designer
|
||||
WindowsCount=1
|
||||
|
||||
[Data_1_4Conditions0Window0]
|
||||
Class=
|
||||
ClassType=0
|
||||
Comment=
|
||||
Role=
|
||||
RoleType=0
|
||||
Title=Qt Designer by Trolltech
|
||||
TitleType=2
|
||||
Type=SIMPLE
|
||||
WindowTypes=33
|
||||
|
||||
[Data_1_4Triggers]
|
||||
Comment=
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_4Triggers0]
|
||||
Key=Ctrl+W
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_1_5]
|
||||
Comment=By pressing Alt+Ctrl+W a DCOP call will be performed that will show the minicli. You can use any kind of DCOP call, just like using the command line 'dcop' tool.
|
||||
Enabled=false
|
||||
Name=Perform DCOP call 'kdesktop KDesktopIface popupExecuteCommand()'
|
||||
Type=DCOP_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_1_5Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_5Actions0]
|
||||
Arguments=
|
||||
Call=popupExecuteCommand
|
||||
RemoteApp=kdesktop
|
||||
RemoteObj=KDesktopIface
|
||||
Type=DCOP
|
||||
|
||||
[Data_1_5Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_5Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_5Triggers0]
|
||||
Key=Alt+Ctrl+W
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_1_6]
|
||||
Comment=Read the comment on action "Type 'Hello'" first.\n\nJust like the "Type 'Hello'" action, this one simulates a keyboard input, specifically, after pressing Ctrl+Alt+B, it sends B to XMMS (B in XMMS jumps to the next song). The 'Send to specific window' checkbox is checked and a window with its class containing 'XMMS_Player' is specified; this will make the input always be sent to this window. This way, you can control XMMS even if it's e.g. on a different virtual desktop.\n\n(Run 'xprop' and click on the XMMS window and search for WM_CLASS to see 'XMMS_Player').
|
||||
Enabled=false
|
||||
Name=Next in XMMS
|
||||
Type=KEYBOARD_INPUT_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_1_6Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_6Actions0]
|
||||
ActiveWindow=false
|
||||
Input=B
|
||||
IsDestinationWindow=true
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_6Actions0DestinationWindow]
|
||||
Comment=XMMS window
|
||||
WindowsCount=1
|
||||
|
||||
[Data_1_6Actions0DestinationWindow0]
|
||||
Class=XMMS_Player
|
||||
ClassType=1
|
||||
Comment=XMMS Player window
|
||||
Role=
|
||||
RoleType=0
|
||||
Title=
|
||||
TitleType=0
|
||||
Type=SIMPLE
|
||||
WindowTypes=33
|
||||
|
||||
[Data_1_6Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_6Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_6Triggers0]
|
||||
Key=Alt+Ctrl+B
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_1_7]
|
||||
Comment=Ok, Konqi in KDE3.1 has tabs, and now you can also have gestures. No need to use other browsers >;).\n\nJust press the middle mouse button and start drawing one of the gestures, and after you're finished, release the mouse button. If you only need to paste the selection, it still works, simply only click the middle mouse button. (You can change the mouse button to use in the global settings).\n\nRight now, there are these gestures available:\nmove right and back left - Forward (ALt+Right)\nmove left and back right - Back (Alt+Left)\nmove up and back down - Up (Alt+Up)\ncircle anticlockwise - Reload (F5)\n (As soon as I find out which ones are in Opera or Mozilla, I'll add more and make sure they are the same. Or if you do it yourself, feel free to help me and send me your khotkeysrc.)\n\nThe gestures shapes (some of the dialogs are from KGesture, thanks to Mike Pilone) can be simply entered by performing them in the configuration dialog. You can also look at your numeric pad to help you, gestures are recognized like a 3x3 grid of fields, numbered 1 to 9.\n\nNote that you must perform exactly the gesture to trigger the action. Because of this, it's possible to enter more gestures for the action. You should try to avoid complicated gestures where you change the direction of mouse moving more than once (i.e. do e.g. 45654 or 74123 as they are simple to perform but e.g. 1236987 may be already quite difficult).\n\nThe condition for all gestures are defined in this group. All these gestures are active only if the active window is Konqueror (class contains 'konqueror').
|
||||
DataCount=4
|
||||
Enabled=false
|
||||
Name=Konqi Gestures
|
||||
SystemGroup=0
|
||||
Type=ACTION_DATA_GROUP
|
||||
|
||||
[Data_1_7Conditions]
|
||||
Comment=Konqueror window
|
||||
ConditionsCount=1
|
||||
|
||||
[Data_1_7Conditions0]
|
||||
Type=ACTIVE_WINDOW
|
||||
|
||||
[Data_1_7Conditions0Window]
|
||||
Comment=Konqueror
|
||||
WindowsCount=1
|
||||
|
||||
[Data_1_7Conditions0Window0]
|
||||
Class=konqueror
|
||||
ClassType=1
|
||||
Comment=Konqueror
|
||||
Role=
|
||||
RoleType=0
|
||||
Title=
|
||||
TitleType=0
|
||||
Type=SIMPLE
|
||||
WindowTypes=33
|
||||
|
||||
[Data_1_7_1]
|
||||
Comment=
|
||||
Enabled=false
|
||||
Name=Back
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_1_7_1Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_7_1Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Left
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_7_1Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_7_1Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=3
|
||||
|
||||
[Data_1_7_1Triggers0]
|
||||
Gesture=65456
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_1Triggers1]
|
||||
Gesture=5456
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_1Triggers2]
|
||||
Gesture=6545
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_2]
|
||||
Comment=
|
||||
Enabled=false
|
||||
Name=Forward
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_1_7_2Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_7_2Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Right
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_7_2Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_7_2Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=3
|
||||
|
||||
[Data_1_7_2Triggers0]
|
||||
Gesture=45654
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_2Triggers1]
|
||||
Gesture=5654
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_2Triggers2]
|
||||
Gesture=4565
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_3]
|
||||
Comment=
|
||||
Enabled=false
|
||||
Name=Up
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_1_7_3Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_7_3Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Up
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_7_3Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_7_3Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=3
|
||||
|
||||
[Data_1_7_3Triggers0]
|
||||
Gesture=25852
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_3Triggers1]
|
||||
Gesture=2585
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_3Triggers2]
|
||||
Gesture=5852
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_4]
|
||||
Comment=
|
||||
Enabled=false
|
||||
Name=Reload
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_1_7_4Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_7_4Actions0]
|
||||
ActiveWindow=false
|
||||
Input=F5
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_1_7_4Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_7_4Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=3
|
||||
|
||||
[Data_1_7_4Triggers0]
|
||||
Gesture=123698741
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_4Triggers1]
|
||||
Gesture=1236987412
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_7_4Triggers2]
|
||||
Gesture=4123698741
|
||||
Type=GESTURE
|
||||
|
||||
[Data_1_8]
|
||||
Comment=After pressing Win+E (Tux+E), WWW browser will be launched and it will open http://www.kde.org . You may run all kind of commands you can run in minicli (Alt+F2).
|
||||
Enabled=false
|
||||
Name=Go to KDE Website
|
||||
Type=COMMAND_URL_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_1_8Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_1_8Actions0]
|
||||
CommandURL=http://www.kde.org
|
||||
Type=COMMAND_URL
|
||||
|
||||
[Data_1_8Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_1_8Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_1_8Triggers0]
|
||||
Key=Win+E
|
||||
Type=SHORTCUT
|
||||
|
||||
[Data_2]
|
||||
Comment=Basic Konqueror gestures.
|
||||
DataCount=14
|
||||
Enabled=true
|
||||
Name=Konqueror Gestures
|
||||
SystemGroup=0
|
||||
Type=ACTION_DATA_GROUP
|
||||
|
||||
[Data_2Conditions]
|
||||
Comment=Konqueror window
|
||||
ConditionsCount=1
|
||||
|
||||
[Data_2Conditions0]
|
||||
Type=ACTIVE_WINDOW
|
||||
|
||||
[Data_2Conditions0Window]
|
||||
Comment=Konqueror
|
||||
WindowsCount=1
|
||||
|
||||
[Data_2Conditions0Window0]
|
||||
Class=^konqueror\s
|
||||
ClassType=3
|
||||
Comment=Konqueror
|
||||
Role=konqueror-mainwindow#1
|
||||
RoleType=0
|
||||
Title=file:/ - Konqueror
|
||||
TitleType=0
|
||||
Type=SIMPLE
|
||||
WindowTypes=1
|
||||
|
||||
[Data_2_1]
|
||||
Comment=Press, move left, release.
|
||||
Enabled=true
|
||||
Name=Back
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_10]
|
||||
Comment=Opera-style: Press, move up, release.\nNOTE: Conflicts with 'New Tab', and as such is disabled by default.
|
||||
Enabled=false
|
||||
Name=Stop Loading
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_10Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_10Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Escape\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_10Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_10Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_10Triggers0]
|
||||
Gesture=258
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_11]
|
||||
Comment=Going up in URL/directory structure.\nMozilla-style: Press, move up, move left, move up, release.
|
||||
Enabled=true
|
||||
Name=Up
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_11Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_11Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Up
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_11Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_11Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_11Triggers0]
|
||||
Gesture=36547
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_12]
|
||||
Comment=Going up in URL/directory structure.\nOpera-style: Press, move up, move left, move up, release.\nNOTE: Conflicts with "Activate Previous Tab", and as such is disabled by default.
|
||||
Enabled=false
|
||||
Name=Up #2
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_12Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_12Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Up\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_12Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_12Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_12Triggers0]
|
||||
Gesture=36987
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_13]
|
||||
Comment=Press, move up, move right, release.
|
||||
Enabled=true
|
||||
Name=Activate Next Tab
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_13Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_13Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+.\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_13Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_13Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_13Triggers0]
|
||||
Gesture=14789
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_14]
|
||||
Comment=Press, move up, move left, release.
|
||||
Enabled=true
|
||||
Name=Activate Previous Tab
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_14Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_14Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+,
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_14Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_14Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_14Triggers0]
|
||||
Gesture=36987
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_1Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_1Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Left
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_1Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_1Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_1Triggers0]
|
||||
Gesture=654
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_2]
|
||||
Comment=Press, move down, move up, move down, release.
|
||||
Enabled=true
|
||||
Name=Duplicate Tab
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_2Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_2Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+Shift+D\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_2Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_2Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_2Triggers0]
|
||||
Gesture=8525852
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_3]
|
||||
Comment=Press, move down, move up, release.
|
||||
Enabled=true
|
||||
Name=Duplicate Window
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_3Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_3Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+D\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_3Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_3Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_3Triggers0]
|
||||
Gesture=85258
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_4]
|
||||
Comment=Press, move right, release.
|
||||
Enabled=true
|
||||
Name=Forward
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_4Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_4Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Alt+Right
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_4Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_4Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_4Triggers0]
|
||||
Gesture=456
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_5]
|
||||
Comment=Press, move down, move half up, move right, move down, release.\n(Drawing a lowercase 'h'.)
|
||||
Enabled=true
|
||||
Name=Home
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_5Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_5Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+Home\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_5Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_5Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=2
|
||||
|
||||
[Data_2_5Triggers0]
|
||||
Gesture=741563
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_5Triggers1]
|
||||
Gesture=7414563
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_6]
|
||||
Comment=Press, move right, move down, move right, release.\nMozilla-style: Press, move down, move right, release.
|
||||
Enabled=true
|
||||
Name=Close Tab
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_6Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_6Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+W\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_6Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_6Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=2
|
||||
|
||||
[Data_2_6Triggers0]
|
||||
Gesture=78523
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_6Triggers1]
|
||||
Gesture=74123
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_7]
|
||||
Comment=Press, move up, release.\nConflicts with Opera-style 'Up #2', which is disabled by default.
|
||||
Enabled=true
|
||||
Name=New Tab
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_7Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_7Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+Shift+N
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_7Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_7Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_7Triggers0]
|
||||
Gesture=258
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_8]
|
||||
Comment=Press, move down, release.
|
||||
Enabled=true
|
||||
Name=New Window
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_8Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_8Actions0]
|
||||
ActiveWindow=false
|
||||
Input=Ctrl+N\n
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_8Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_8Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_8Triggers0]
|
||||
Gesture=852
|
||||
Type=GESTURE
|
||||
|
||||
[Data_2_9]
|
||||
Comment=Press, move up, move down, release.
|
||||
Enabled=true
|
||||
Name=Reload
|
||||
Type=KEYBOARD_INPUT_GESTURE_ACTION_DATA
|
||||
|
||||
[Data_2_9Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_2_9Actions0]
|
||||
ActiveWindow=false
|
||||
Input=F5
|
||||
IsDestinationWindow=false
|
||||
Type=KEYBOARD_INPUT
|
||||
|
||||
[Data_2_9Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_2_9Triggers]
|
||||
Comment=Gesture_triggers
|
||||
TriggersCount=1
|
||||
|
||||
[Data_2_9Triggers0]
|
||||
Gesture=25852
|
||||
Type=GESTURE
|
||||
|
||||
[Data_3]
|
||||
Comment=This group contains actions that are set up by default.
|
||||
DataCount=1
|
||||
Enabled=true
|
||||
Name=Preset Actions
|
||||
SystemGroup=0
|
||||
Type=ACTION_DATA_GROUP
|
||||
|
||||
[Data_3Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_3_1]
|
||||
Comment=Launches KSnapShot when PrintScrn is pressed.
|
||||
Enabled=true
|
||||
Name=PrintScreen
|
||||
Type=COMMAND_URL_SHORTCUT_ACTION_DATA
|
||||
|
||||
[Data_3_1Actions]
|
||||
ActionsCount=1
|
||||
|
||||
[Data_3_1Actions0]
|
||||
CommandURL=ksnapshot
|
||||
Type=COMMAND_URL
|
||||
|
||||
[Data_3_1Conditions]
|
||||
Comment=
|
||||
ConditionsCount=0
|
||||
|
||||
[Data_3_1Triggers]
|
||||
Comment=Simple_action
|
||||
TriggersCount=1
|
||||
|
||||
[Data_3_1Triggers0]
|
||||
Key=Print
|
||||
Type=SHORTCUT
|
||||
|
||||
[Gestures]
|
||||
Disabled=true
|
||||
MouseButton=2
|
||||
Timeout=300
|
||||
|
||||
[GesturesExclude]
|
||||
Comment=
|
||||
WindowsCount=0
|
||||
|
||||
[Main]
|
||||
AlreadyImported=kde32b1,konqueror_gestures_kde321,printscreen
|
||||
Autostart=true
|
||||
Disabled=false
|
||||
Version=2
|
||||
|
||||
[Voice]
|
||||
Shortcut=
|
||||
57
install_shell/d5000-kde/.kde/share/config/kickerrc
Normal file
57
install_shell/d5000-kde/.kde/share/config/kickerrc
Normal file
@@ -0,0 +1,57 @@
|
||||
[$Version]
|
||||
update_info=kickerrc.upd:kde_3_1_sizeChanges,kickerrc.upd:kde_3_4_reverseLayout,kickerrc.upd:kde_3_5_kconfigXTize
|
||||
|
||||
[Applet_1]
|
||||
ConfigFile[$e]=minipager_panelapplet_fmum6rirtovywdxiuy93_rc
|
||||
DesktopFile[$e]=minipagerapplet.desktop
|
||||
FreeSpace2=0.325
|
||||
WidthForHeightHint=56
|
||||
|
||||
[Applet_2]
|
||||
ConfigFile[$e]=taskbar_panelapplet_i6ntzs3pllnyhiilhodb_rc
|
||||
DesktopFile[$e]=taskbarapplet.desktop
|
||||
FreeSpace2=0.325
|
||||
WidthForHeightHint=209
|
||||
|
||||
[Applet_3]
|
||||
ConfigFile[$e]=systemtray_panelappletrc
|
||||
DesktopFile[$e]=systemtrayapplet.desktop
|
||||
FreeSpace2=1
|
||||
WidthForHeightHint=83
|
||||
|
||||
[Applet_4]
|
||||
ConfigFile[$e]=clock_panelapplet_m89gl4xfa6gqarh9siwd_rc
|
||||
DesktopFile[$e]=clockapplet.desktop
|
||||
FreeSpace2=1
|
||||
WidthForHeightHint=76
|
||||
|
||||
[General]
|
||||
Applets2=KMenuButton_1,ServiceButton_1,ServiceButton_3,ServiceButton_2,Applet_1,Applet_2,Applet_3,Applet_4
|
||||
IExist=true
|
||||
UntrustedApplets=
|
||||
UntrustedExtensions=
|
||||
UseBackgroundTheme=true
|
||||
|
||||
[KMenuButton_1]
|
||||
FreeSpace2=0
|
||||
|
||||
[ServiceButton_1]
|
||||
DesktopFile[$e]=/usr/share/applications/kde/Home.desktop
|
||||
FreeSpace2=0
|
||||
StorageId[$e]=kde-Home.desktop
|
||||
|
||||
[ServiceButton_2]
|
||||
DesktopFile[$e]=/usr/share/applications/kde/konqbrowser.desktop
|
||||
FreeSpace2=0.215
|
||||
StorageId[$e]=kde-konqbrowser.desktop
|
||||
|
||||
[ServiceButton_3]
|
||||
DesktopFile[$e]=/usr/share/applications/kde/konsole.desktop
|
||||
FreeSpace2=0.215
|
||||
StorageId[$e]=kde-konsole.desktop
|
||||
|
||||
[buttons]
|
||||
EnableIconZoom=true
|
||||
|
||||
[menus]
|
||||
MenuEntryFormat=NameAndDescription
|
||||
2
install_shell/d5000-kde/.kde/share/config/kio_httprc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kio_httprc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kioslave.upd:kde2.2/r1,kioslave.upd:kde2.2/r2
|
||||
2
install_shell/d5000-kde/.kde/share/config/kioslaverc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kioslaverc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kioslave.upd:kde2.2/r1,kioslave.upd:kde2.2/r2,kioslave.upd:kde2.2/r3
|
||||
2
install_shell/d5000-kde/.kde/share/config/klaunchrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/klaunchrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[FeedbackStyle]
|
||||
BusyCursor=true
|
||||
6
install_shell/d5000-kde/.kde/share/config/klipperrc
Normal file
6
install_shell/d5000-kde/.kde/share/config/klipperrc
Normal file
@@ -0,0 +1,6 @@
|
||||
[$Version]
|
||||
update_info=klipperrc.upd:25082001,klipperrc.upd:kde3.1,klippershortcuts.upd:04112002
|
||||
|
||||
[General]
|
||||
AutoStart=true
|
||||
Synchronize=false
|
||||
2
install_shell/d5000-kde/.kde/share/config/kmail.eventsrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kmail.eventsrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kmail.upd:3.1-new-mail-notification
|
||||
5
install_shell/d5000-kde/.kde/share/config/kmailrc
Normal file
5
install_shell/d5000-kde/.kde/share/config/kmailrc
Normal file
@@ -0,0 +1,5 @@
|
||||
[$Version]
|
||||
update_info=kmail.upd:1,kmail.upd:4,kmail.upd:5,kmail.upd:6,kmail.upd:7,kmail.upd:8,kmail.upd:9,kmail.upd:3.1-update-identities,kmail.upd:3.1-use-identity-uoids,kmail.upd:3.1-new-mail-notification,kmail.upd:3.2-update-loop-on-goto-unread-settings,kmail.upd:3.1.4-dont-use-UOID-0-for-any-identity,kmail.upd:3.2-misc,kmail.upd:3.2-moves,kmail.upd:3.3-use-ID-for-accounts,kmail.upd:3.3-move-identities-to-own-file,kmail.upd:3.3-aegypten-kpgprc-to-kmailrc,kmail.upd:3.3-misc,kmail.upd:3.3b1-misc,kmail.upd:3.4,kmail.upd:3.4a,kmail.upd:3.4b,kmail.upd:3.4.1,kmail.upd:3.5.4,kmail.upd:3.5.7-imap-flag-migration-2,kmail.upd:3.3-update-filter-rules
|
||||
|
||||
[Composer]
|
||||
previous-identity=
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=knewsticker.upd:KNewsTicker-0.2-Rename-KDE3,knewsticker.upd:KNewsTicker-0.2-Rename-KDE3.1
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=knewsticker.upd:KNewsTicker-0.2-Rename-KDE3.1
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=knewsticker.upd:KNewsTicker-0.2,knewsticker.upd:KNewsTicker-0.2-Rename-KDE3
|
||||
2
install_shell/d5000-kde/.kde/share/config/knewstickerrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/knewstickerrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=knewsticker.upd:KNewsTicker-0.2
|
||||
4
install_shell/d5000-kde/.kde/share/config/knotifyrc
Normal file
4
install_shell/d5000-kde/.kde/share/config/knotifyrc
Normal file
@@ -0,0 +1,4 @@
|
||||
[StartProgress]
|
||||
Arts Init=true
|
||||
KNotify Init=true
|
||||
Use Arts=true
|
||||
3
install_shell/d5000-kde/.kde/share/config/konqiconviewrc
Normal file
3
install_shell/d5000-kde/.kde/share/config/konqiconviewrc
Normal file
@@ -0,0 +1,3 @@
|
||||
[Settings]
|
||||
DontPreview=svgthumbnail,designerthumbnail,pothumbnail,cursorthumbnail,djvuthumbnail,webarchivethumbnail,gsthumbnail,ldifvcardthumbnail,htmlthumbnail,fontthumbnail,textthumbnail
|
||||
PreviewsEnabled=true
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=konqsidebartng.upd:konqsidebartng_rc
|
||||
8
install_shell/d5000-kde/.kde/share/config/konquerorrc
Normal file
8
install_shell/d5000-kde/.kde/share/config/konquerorrc
Normal file
@@ -0,0 +1,8 @@
|
||||
[$Version]
|
||||
update_info=kfmclient_3_2.upd:kfmclient_3_2
|
||||
|
||||
[FMSettings]
|
||||
UnderlineLinks=false
|
||||
|
||||
[Settings]
|
||||
BgImage[$e]=kde4ever.png
|
||||
5
install_shell/d5000-kde/.kde/share/config/konsolerc
Normal file
5
install_shell/d5000-kde/.kde/share/config/konsolerc
Normal file
@@ -0,0 +1,5 @@
|
||||
[$Version]
|
||||
update_info=konsole.upd:kde2.2/r1,konsole.upd:kde3.0/r1
|
||||
|
||||
[TipOfDay]
|
||||
TipLastShown=2011,3,9,15,10,0
|
||||
2
install_shell/d5000-kde/.kde/share/config/kopeterc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kopeterc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kopete-pluginloader.upd:kopete0.7/r1,kopete-jabberproxytype-kconf_update.upd:kopete0.9/r1,kopete-pluginloader2.upd:kopete0.8/r1,kopete-account-kconf_update.upd:kopete0.7/r1,kopete-account-kconf_update.upd:kopete0.10/r1,kopete-nameTracking.upd:kopete0.9/r1,kopete-jabberpriorityaddition-kconf_update.upd:kopete0.9/r1
|
||||
2
install_shell/d5000-kde/.kde/share/config/korganizerrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/korganizerrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=korganizer.upd:korganizer_3.4_GroupwareCleanup,korganizer.upd:korganizer_3.4_WebExport,korganizer.upd:korganizer_3.4_FilterAction,korganizer.upd:korganizer_3.4_HolidayPlugin
|
||||
2
install_shell/d5000-kde/.kde/share/config/kornrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/kornrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=korn-3-5-update.upd:korn-3-5-ssl-update,korn-3-5-update.upd:korn-3-5-metadata-update,korn-3-4-config_change.upd:korn_kde_3_4_config_change
|
||||
14
install_shell/d5000-kde/.kde/share/config/kpersonalizerrc
Normal file
14
install_shell/d5000-kde/.kde/share/config/kpersonalizerrc
Normal file
@@ -0,0 +1,14 @@
|
||||
[DesktopIcons]
|
||||
Size=48
|
||||
|
||||
[General]
|
||||
FirstLogin=false
|
||||
|
||||
[MainToolbarIcons]
|
||||
Size=22
|
||||
|
||||
[SmallIcons]
|
||||
Size=16
|
||||
|
||||
[ToolbarIcons]
|
||||
Size=22
|
||||
5
install_shell/d5000-kde/.kde/share/config/kpgprc
Normal file
5
install_shell/d5000-kde/.kde/share/config/kpgprc
Normal file
@@ -0,0 +1,5 @@
|
||||
[$Version]
|
||||
update_info=kmail.upd:5,kmail.upd:3.3-aegypten-kpgprc-to-kmailrc,kmail.upd:3.3-aegypten-kpgprc-to-libkleopatrarc,kpgp.upd:preKDE3_a,kpgp.upd:3.1-1
|
||||
|
||||
[General]
|
||||
addressEntries=0
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kolab-resource.upd:kolab-calendar-resource-rename
|
||||
@@ -0,0 +1,15 @@
|
||||
[$Version]
|
||||
update_info=kolab-resource.upd:kolab-contact-resource-rename
|
||||
|
||||
[General]
|
||||
PassiveResourceKeys=
|
||||
ResourceKeys=lWeCv1RJgs
|
||||
Standard=lWeCv1RJgs
|
||||
|
||||
[Resource_lWeCv1RJgs]
|
||||
FileFormat=vcard
|
||||
ResourceIdentifier=lWeCv1RJgs
|
||||
ResourceIsActive=true
|
||||
ResourceIsReadOnly=false
|
||||
ResourceName=resource
|
||||
ResourceType=file
|
||||
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=kolab-resource.upd:kolab-notes-resource-rename
|
||||
2
install_shell/d5000-kde/.kde/share/config/ksmserverrc
Normal file
2
install_shell/d5000-kde/.kde/share/config/ksmserverrc
Normal file
@@ -0,0 +1,2 @@
|
||||
[$Version]
|
||||
update_info=ksmserver.upd:kde3
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user