first commit
This commit is contained in:
34
archiso/airootfs/home/smart/.Xresources
Executable file
34
archiso/airootfs/home/smart/.Xresources
Executable file
@@ -0,0 +1,34 @@
|
||||
! ------------------------------------------------------------------------------
|
||||
! xterm standard arcolinux theme
|
||||
! ------------------------------------------------------------------------------
|
||||
! https://critical.ch/xterm/
|
||||
! ------------------------------------------------------------------------------
|
||||
|
||||
xterm*faceName: Monospace
|
||||
xterm*faceSize: 13
|
||||
xterm*loginShell: true
|
||||
xterm*saveLines: 4000
|
||||
xterm*charClass: 33:48,35:48,37:48,43:48,45-47:48,64:48,95:48,126:48
|
||||
xterm*termName: xterm-color
|
||||
xterm*eightBitInput: false
|
||||
xterm*foreground: rgb:d9/d4/d4
|
||||
xterm*background: rgb:32/32/32
|
||||
xterm*color0: rgb:00/00/00
|
||||
xterm*color1: rgb:a8/00/00
|
||||
xterm*color2: rgb:00/a8/00
|
||||
xterm*color3: rgb:a8/54/00
|
||||
xterm*color4: rgb:5f/81/9d
|
||||
xterm*color5: rgb:a8/00/a8
|
||||
xterm*color6: rgb:00/a8/a8
|
||||
xterm*color7: rgb:70/78/80
|
||||
xterm*color8: rgb:54/54/54
|
||||
xterm*color9: rgb:fc/54/54
|
||||
xterm*color10: rgb:54/fc/54
|
||||
xterm*color11: rgb:fc/fc/54
|
||||
xterm*color12: rgb:81/a2/be
|
||||
xterm*color13: rgb:fc/54/fc
|
||||
xterm*color14: rgb:54/fc/fc
|
||||
xterm*color15: rgb:c5/c8/c6
|
||||
xterm*boldMode: false
|
||||
|
||||
|
||||
94
archiso/airootfs/home/smart/.bashrc
Executable file
94
archiso/airootfs/home/smart/.bashrc
Executable file
@@ -0,0 +1,94 @@
|
||||
#
|
||||
# ~/.bashrc
|
||||
#
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
[[ $- != *i* ]] && return
|
||||
|
||||
source /etc/profile
|
||||
|
||||
# 基础别名
|
||||
alias ls='ls --color=auto'
|
||||
alias ll='ls -alF'
|
||||
alias la='ls -A'
|
||||
alias l='ls -CF'
|
||||
alias grep='grep --color=auto'
|
||||
|
||||
# 安全操作
|
||||
alias rm='rm -i'
|
||||
alias cp='cp -i'
|
||||
alias mv='mv -i'
|
||||
|
||||
# 导航别名
|
||||
alias ..='cd ..'
|
||||
alias ...='cd ../..'
|
||||
alias ....='cd ../../..'
|
||||
|
||||
# 系统信息
|
||||
alias df='df -h'
|
||||
alias du='du -h'
|
||||
alias dus='du -sh * | sort -nr'
|
||||
alias free='free -h'
|
||||
|
||||
# Git 快捷方式
|
||||
alias gs='git status'
|
||||
alias ga='git add'
|
||||
alias gc='git commit'
|
||||
alias gp='git push'
|
||||
alias gl='git log --oneline'
|
||||
|
||||
alias tms='sh /home/smart/.tms3/starter/tms-tools.sh'
|
||||
alias rtms='sh /home/smart/.tms3/starter/restart'
|
||||
|
||||
# 文件大小查看别名
|
||||
alias size='ls -lahSr' # 简单版本
|
||||
alias sizes='du -sh * | sort -h' # 准确版本
|
||||
alias sizeall='du -sh .[!.]* * 2>/dev/null | sort -h' # 包含隐藏文件
|
||||
|
||||
# 详细版本,显示文件权限和大小
|
||||
alias sizedetail='du -sh * | sort -h | while read s n; do ls -ld "$n" | awk '\''{printf "%-10s %-5s %-8s ", $1, $3, $4}'\''; echo "$s $n"; done'
|
||||
|
||||
# 文件大小查看函数
|
||||
fsize() {
|
||||
local path="${1:-.}" # 默认当前目录
|
||||
local depth="${2:-0}" # 目录深度
|
||||
|
||||
echo "=== 文件大小统计: $path ==="
|
||||
|
||||
if [ "$depth" -eq 0 ]; then
|
||||
# 只显示当前目录下的文件
|
||||
du -sh "$path"/* 2>/dev/null | sort -h
|
||||
else
|
||||
# 显示指定深度的目录结构
|
||||
find "$path" -maxdepth "$depth" -type f -exec du -sh {} + 2>/dev/null | sort -h
|
||||
fi
|
||||
}
|
||||
|
||||
# 快捷别名
|
||||
alias sz='fsize . 0'
|
||||
alias sz1='fsize . 1'
|
||||
alias sz2='fsize . 2'
|
||||
|
||||
# 环境变量
|
||||
export EDITOR=vim
|
||||
export VISUAL=vim
|
||||
export HISTSIZE=10000
|
||||
export HISTFILESIZE=20000
|
||||
|
||||
# 彩色提示符
|
||||
PS1='\[\033[01;33m\]\t\[\033[00m\] \[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
||||
|
||||
# 实用函数
|
||||
mkcd() { mkdir -p "$1" && cd "$1"; }
|
||||
findf() { find . -name "$1" -type f 2>/dev/null; }
|
||||
|
||||
# 检查 wine 是否可用
|
||||
wine-check() {
|
||||
if command -v wine >/dev/null 2>&1; then
|
||||
echo "✓ Wine is available: $(which wine)"
|
||||
wine --version
|
||||
else
|
||||
echo "✗ Wine not found in PATH"
|
||||
echo "Current PATH: $PATH"
|
||||
fi
|
||||
}
|
||||
19
archiso/airootfs/home/smart/.config/Barco/Commander.ini
Normal file
19
archiso/airootfs/home/smart/.config/Barco/Commander.ini
Normal file
@@ -0,0 +1,19 @@
|
||||
[QSS-Info]
|
||||
Path=:/qss/basicwidgetstyle
|
||||
|
||||
[Language-Info]
|
||||
Language=cn
|
||||
|
||||
[Ingest-ParsingOption]
|
||||
MaximumFolderDepth=10
|
||||
AreMxfFilesParsed=False
|
||||
AreAssetmapSubFoldersParsed=False
|
||||
|
||||
[MainWindow-Geometry]
|
||||
X=560
|
||||
Y=254
|
||||
W=800
|
||||
H=600
|
||||
|
||||
[MainWindow-State]
|
||||
States=0
|
||||
@@ -0,0 +1,3 @@
|
||||
[mainwindow]
|
||||
geometry=@ByteArray(\x1\xd9\xd0\xcb\0\x1\0\0\0\0\x1\xd1\0\0\x1g\0\0\x4\xf0\0\0\x3\xaf\0\0\x1\xd1\0\0\x1g\0\0\x4\xf0\0\0\x3\xaf\0\0\0\0\0\0)
|
||||
windowState="@ByteArray(\0\0\0\xff\0\0\0\0\xfd\0\0\0\x3\0\0\0\0\0\0\x1J\0\0\x1\xa7\xfc\x2\0\0\0\x1\xfb\0\0\0\x30\0\x65\0n\0v\0i\0r\0o\0n\0m\0\x65\0n\0t\0S\0\x65\0l\0\x65\0\x63\0t\0i\0o\0n\0\x44\0o\0\x63\0k\x1\0\0\0w\0\0\x1\xa7\0\0\x1=\0\xff\xff\xff\0\0\0\x1\0\0\0\xb4\0\0\x1\xa7\xfc\x2\0\0\0\x1\xfb\0\0\0\x1a\0s\0\x65\0l\0\x65\0\x63\0t\0i\0o\0n\0\x44\0o\0\x63\0k\x1\0\0\0w\0\0\x1\xa7\0\0\x1\xa7\0\xff\xff\xff\0\0\0\x2\0\0\x3 \0\0\0q\xfc\x1\0\0\0\x1\xfb\0\0\0\x1e\0\x65\0n\0v\0i\0r\0o\0n\0m\0\x65\0n\0t\0\x44\0o\0\x63\0k\x1\0\0\0\0\0\0\x3 \0\0\x3 \0\xff\xff\xff\0\0\x1\x16\0\0\x1\xa7\0\0\0\x4\0\0\0\x4\0\0\0\b\0\0\0\b\xfc\0\0\0\0)"
|
||||
8
archiso/airootfs/home/smart/.config/autostart/set-xfce4-wall.desktop
Executable file
8
archiso/airootfs/home/smart/.config/autostart/set-xfce4-wall.desktop
Executable file
@@ -0,0 +1,8 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=/home/smart/set-xfce4-wall.sh
|
||||
Hidden=false
|
||||
NoDisplay=false
|
||||
X-GNOME-Autostart-enabled=true
|
||||
Name=SetXFCEWall
|
||||
Comment=首次自动设置壁纸
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Terminal=false
|
||||
Exec=/bin/bash -c "sh /home/$USER/.vnc/vnc.sh"
|
||||
Categories=TMS
|
||||
Name=vnc
|
||||
356
archiso/airootfs/home/smart/.config/dcpomatic2/2.18/config.xml
Normal file
356
archiso/airootfs/home/smart/.config/dcpomatic2/2.18/config.xml
Normal file
@@ -0,0 +1,356 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Config>
|
||||
<Version>3</Version>
|
||||
<MasterEncodingThreads>8</MasterEncodingThreads>
|
||||
<ServerEncodingThreads>8</ServerEncodingThreads>
|
||||
<ServerPortBase>6192</ServerPortBase>
|
||||
<UseAnyServers>1</UseAnyServers>
|
||||
<OnlyServersEncode>0</OnlyServersEncode>
|
||||
<TMSProtocol>1</TMSProtocol>
|
||||
<TMSPassive>1</TMSPassive>
|
||||
<TMSIP>127.0.0.1</TMSIP>
|
||||
<TMSPath>/</TMSPath>
|
||||
<TMSUser>tms</TMSUser>
|
||||
<TMSPassword>tms</TMSPassword>
|
||||
<DCPIssuer></DCPIssuer>
|
||||
<DCPCreator></DCPCreator>
|
||||
<DCPCompanyName></DCPCompanyName>
|
||||
<DCPProductName></DCPProductName>
|
||||
<DCPProductVersion></DCPProductVersion>
|
||||
<DCPJ2KComment></DCPJ2KComment>
|
||||
<UploadAfterMakeDCP>1</UploadAfterMakeDCP>
|
||||
<DefaultStillLength>10</DefaultStillLength>
|
||||
<DefaultAudioDelay>0</DefaultAudioDelay>
|
||||
<PlayerAudioDelay>0</PlayerAudioDelay>
|
||||
<DefaultKDMDuration unit="weeks">1</DefaultKDMDuration>
|
||||
<MailServer></MailServer>
|
||||
<MailPort>25</MailPort>
|
||||
<MailProtocol>Auto</MailProtocol>
|
||||
<MailUser></MailUser>
|
||||
<MailPassword></MailPassword>
|
||||
<KDMSubject>KDM delivery: $CPL_NAME</KDMSubject>
|
||||
<KDMFrom></KDMFrom>
|
||||
<KDMBCC></KDMBCC>
|
||||
<KDMEmail>Dear Projectionist
|
||||
|
||||
Please find attached KDMs for $CPL_NAME.
|
||||
|
||||
Cinema: $CINEMA_NAME
|
||||
Screen(s): $SCREENS
|
||||
|
||||
The KDMs are valid from $START_TIME until $END_TIME.
|
||||
|
||||
Best regards,
|
||||
DCP-o-matic</KDMEmail>
|
||||
<NotificationSubject>DCP-o-matic notification</NotificationSubject>
|
||||
<NotificationFrom></NotificationFrom>
|
||||
<NotificationTo></NotificationTo>
|
||||
<NotificationBCC></NotificationBCC>
|
||||
<NotificationEmail>$JOB_NAME: $JOB_STATUS</NotificationEmail>
|
||||
<CheckForUpdates>0</CheckForUpdates>
|
||||
<CheckForTestUpdates>0</CheckForTestUpdates>
|
||||
<MaximumJ2KVideoBitRate>250000000</MaximumJ2KVideoBitRate>
|
||||
<MaximumMPEG2VideoBitRate>50000000</MaximumMPEG2VideoBitRate>
|
||||
<AllowAnyDCPFrameRate>0</AllowAnyDCPFrameRate>
|
||||
<AllowAnyContainer>0</AllowAnyContainer>
|
||||
<Allow96kHzAudio>0</Allow96kHzAudio>
|
||||
<UseAllAudioChannels>0</UseAllAudioChannels>
|
||||
<ShowExperimentalAudioProcessors>0</ShowExperimentalAudioProcessors>
|
||||
<LogTypes>263</LogTypes>
|
||||
<AnalyseEBUR128>1</AnalyseEBUR128>
|
||||
<AutomaticAudioAnalysis>0</AutomaticAudioAnalysis>
|
||||
<Signer>
|
||||
<Certificate>-----BEGIN CERTIFICATE-----
|
||||
MIIEZDCCA0ygAwIBAgIBBTANBgkqhkiG9w0BAQsFADB9MRYwFAYDVQQKEw1kY3Bv
|
||||
bWF0aWMuY29tMRYwFAYDVQQLEw1kY3BvbWF0aWMuY29tMSQwIgYDVQQDExsuZGNw
|
||||
b21hdGljLnNtcHRlLTQzMC0yLlJPT1QxJTAjBgNVBC4THFltMVRiOFRncHZYeWt0
|
||||
N0FPQXd0c0lTRjZydz0wHhcNMjUxMTE5MjAyODQ1WhcNMzUxMTE3MjAyODQ1WjB9
|
||||
MRYwFAYDVQQKEw1kY3BvbWF0aWMuY29tMRYwFAYDVQQLEw1kY3BvbWF0aWMuY29t
|
||||
MSQwIgYDVQQDExsuZGNwb21hdGljLnNtcHRlLTQzMC0yLlJPT1QxJTAjBgNVBC4T
|
||||
HFltMVRiOFRncHZYeWt0N0FPQXd0c0lTRjZydz0wggEiMA0GCSqGSIb3DQEBAQUA
|
||||
A4IBDwAwggEKAoIBAQCvvrgGDVjrN4YNEIDVgLY+AxPMSeerLYaKd6NebYW/1Unb
|
||||
JLJFRDnY1wfGZjko4mNnAVFKWPw/cdaamaAg9rxU1PSvCm4UdzIgZrc9fdB5SMoy
|
||||
u6dbu9i4IUG8JNN0oYLhHT6GvL/zob5k05xH7erlcGeHUyfRAcQ4DpDUbNPOlm1l
|
||||
6XhqII2cB3Q2Oqx8Wr4UcCBW96Wb0dAHV5vTRRWQXyhl/V83qkMyIBabrwsIJyGQ
|
||||
B5Tbr6f8ayrWcY6bP4+hD12s8OYIo3hBuNQJEiMu4YmlTWViFPaVcoXwb8jJLQ0+
|
||||
BYsjwpkzN2ZFa7MxOKhsdCK3iJAm456ZYOf7WlEPAgMBAAGjge4wgeswEgYDVR0T
|
||||
AQH/BAgwBgEB/wIBAzALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFGJtU2/E4Kb18pLe
|
||||
wDgMLbCEheq8MIGoBgNVHSMEgaAwgZ2AFGJtU2/E4Kb18pLewDgMLbCEheq8oYGB
|
||||
pH8wfTEWMBQGA1UEChMNZGNwb21hdGljLmNvbTEWMBQGA1UECxMNZGNwb21hdGlj
|
||||
LmNvbTEkMCIGA1UEAxMbLmRjcG9tYXRpYy5zbXB0ZS00MzAtMi5ST09UMSUwIwYD
|
||||
VQQuExxZbTFUYjhUZ3B2WHlrdDdBT0F3dHNJU0Y2cnc9ggEFMA0GCSqGSIb3DQEB
|
||||
CwUAA4IBAQCcI/h5tA+cq3rbPvWxeOoztrS5tx3i096V5vT5JHmvz80dCmZR3e9u
|
||||
5EWZ7Ial6+kuDPfyvkcWErq7/xlgDJ/ZDQ/tOVtZKdMFIefeFOQOVJ5kBmmCPW9V
|
||||
qxNR2JqwSF7JBQNkwjWWWsKgr5H11NtybdLEDSm+qqVd2Iiasg3eEPA2ryXimP1d
|
||||
aD8sBoxo+Zvj1nGIUWnj/NjhjsCY6oAb/tKsVi7Q7kzBPAyvo+Twf3v3lJMxpFDm
|
||||
+Q+MmE83v3HMqUC4oed9cYZph7gYADp4U6s30RZyl4wMWmzSIe+VhTSsl6W3wcp/
|
||||
8yO+NozN+oxhpa2uuq0Ze1UullRhH0tn
|
||||
-----END CERTIFICATE-----
|
||||
</Certificate>
|
||||
<Certificate>-----BEGIN CERTIFICATE-----
|
||||
MIIEbTCCA1WgAwIBAgIBBjANBgkqhkiG9w0BAQsFADB9MRYwFAYDVQQKEw1kY3Bv
|
||||
bWF0aWMuY29tMRYwFAYDVQQLEw1kY3BvbWF0aWMuY29tMSQwIgYDVQQDExsuZGNw
|
||||
b21hdGljLnNtcHRlLTQzMC0yLlJPT1QxJTAjBgNVBC4THFltMVRiOFRncHZYeWt0
|
||||
N0FPQXd0c0lTRjZydz0wHhcNMjUxMTE5MjAyODQ1WhcNMzUxMTE2MjAyODQ1WjCB
|
||||
hTEWMBQGA1UEChMNZGNwb21hdGljLmNvbTEWMBQGA1UECxMNZGNwb21hdGljLmNv
|
||||
bTEsMCoGA1UEAxMjLmRjcG9tYXRpYy5zbXB0ZS00MzAtMi5JTlRFUk1FRElBVEUx
|
||||
JTAjBgNVBC4THE5aeDhvVVR0bndpNU9qNit0endCR1VDc3QrYz0wggEiMA0GCSqG
|
||||
SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDOA8g+8zl9XTojpIZv8cFKEGbr2tK/81ZM
|
||||
/vDLVk1MhE30JcN2JzhSGIxAgsBnTPjBUMOEZ3k6CydxGTBrbgwQVrEU0HlrQjyF
|
||||
M+TgExRmwDecQU2vMaSqyVTf+SkDcWQvR3NNq6xcCUXVCi2Mdd6q7zWQyDhB4gPh
|
||||
cykmEXsEeJSVc3q2S6r2iQNigPWsdlVBuEXiX9T9h4/TJNBYDau+Lg5gmspHnNP/
|
||||
QDH8nNlG8X10CTI0IvPEWZvGvGVElS2sBpO2s1txhnkL0VyHE+yAQPNZHx5eRWKZ
|
||||
qTIbk1WTnlqMn8bj54m76hwBXsdJiesAuogSAMnjonugAD1IySGDAgMBAAGjge4w
|
||||
geswEgYDVR0TAQH/BAgwBgEB/wIBAjALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFDWc
|
||||
fKFE7Z8IuTo+vrc8ARlArLfnMIGoBgNVHSMEgaAwgZ2AFGJtU2/E4Kb18pLewDgM
|
||||
LbCEheq8oYGBpH8wfTEWMBQGA1UEChMNZGNwb21hdGljLmNvbTEWMBQGA1UECxMN
|
||||
ZGNwb21hdGljLmNvbTEkMCIGA1UEAxMbLmRjcG9tYXRpYy5zbXB0ZS00MzAtMi5S
|
||||
T09UMSUwIwYDVQQuExxZbTFUYjhUZ3B2WHlrdDdBT0F3dHNJU0Y2cnc9ggEFMA0G
|
||||
CSqGSIb3DQEBCwUAA4IBAQBlFZ/2HlcOPQw03Cgb5mW7sXiqjRt3AmvYqWOE46iT
|
||||
Qp4fRD4Pt3HFZJ6fePSol6uvb6b2xJ4uGoE2/b9UVLXU/mH0CyfJ+iAX5aF5MuFN
|
||||
YUcUK62Jx92rvexRyaS3mZdtVpG/wNNEE2T7Qli+PSXyIuK8CoPkxJ4+Cpjo5098
|
||||
jiZObzWxJfWsbKs4ktAmzTVR5Uawk0I9PkiINbD2B/jV+bP9DzTQt5gwXDyelIGh
|
||||
ne1vEOzi/1O9VMpmCcfeRqNvfphuHjEj8GWDFnvUdtJuxa0bkZ+CfZaLlZPg6VoX
|
||||
NrSO+z6YJHR8g+7IuUC0gy9WwM3PHyjvv6m2cnnrksbY
|
||||
-----END CERTIFICATE-----
|
||||
</Certificate>
|
||||
<Certificate>-----BEGIN CERTIFICATE-----
|
||||
MIIEaTCCA1GgAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBhTEWMBQGA1UEChMNZGNw
|
||||
b21hdGljLmNvbTEWMBQGA1UECxMNZGNwb21hdGljLmNvbTEsMCoGA1UEAxMjLmRj
|
||||
cG9tYXRpYy5zbXB0ZS00MzAtMi5JTlRFUk1FRElBVEUxJTAjBgNVBC4THE5aeDhv
|
||||
VVR0bndpNU9qNit0endCR1VDc3QrYz0wHhcNMjUxMTE5MjAyODQ1WhcNMzUxMTE1
|
||||
MjAyODQ1WjB/MRYwFAYDVQQKEw1kY3BvbWF0aWMuY29tMRYwFAYDVQQLEw1kY3Bv
|
||||
bWF0aWMuY29tMSYwJAYDVQQDEx1DUy5kY3BvbWF0aWMuc21wdGUtNDMwLTIuTEVB
|
||||
RjElMCMGA1UELhMcM1UxTytDbWdWZFZwaUYrMk5JR1huTHRnVGg4PTCCASIwDQYJ
|
||||
KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMTeQ3HYlE1bfCnvP4gK6CgW/Z3lBLqz
|
||||
CdWV07jOjvWjqKc9akyOuaK1biaoLQELHouhHXpdYLlOgDry+xxMJ+xlMjhnYRZS
|
||||
tRHJujrfXE61e9cOlbGg4Bp4boGP6O+H/b0cWJUJs1zgJqpwGpVMjeWy0GtUNmpt
|
||||
r1oHUU8lnNvDkYhO7x6tZGQemBDbROrj1DdXOzNevfn+MEFl8b4cGhzxIWZ9r+uP
|
||||
o7GBZjRRSpj+NdLop7J1n5TYkTw+QEXhR/jaz2L2qSiv6l/wwRpjFVlXwte+IrkI
|
||||
IBP0MupORCpJfrviACsUPH5R6A9H0BDYlf2ArDA7SCEg7Nbzz9dZEjcCAwEAAaOB
|
||||
6DCB5TAMBgNVHRMBAf8EAjAAMAsGA1UdDwQEAwIFoDAdBgNVHQ4EFgQU3U1O+Cmg
|
||||
VdVpiF+2NIGXnLtgTh8wgagGA1UdIwSBoDCBnYAUNZx8oUTtnwi5Oj6+tzwBGUCs
|
||||
t+ehgYGkfzB9MRYwFAYDVQQKEw1kY3BvbWF0aWMuY29tMRYwFAYDVQQLEw1kY3Bv
|
||||
bWF0aWMuY29tMSQwIgYDVQQDExsuZGNwb21hdGljLnNtcHRlLTQzMC0yLlJPT1Qx
|
||||
JTAjBgNVBC4THFltMVRiOFRncHZYeWt0N0FPQXd0c0lTRjZydz2CAQYwDQYJKoZI
|
||||
hvcNAQELBQADggEBAJpmZl6XcdgSz1BVepSsQfvvw0ozjgPUwmktVafvTN8jvqBo
|
||||
yiVkNYRSrb+xbrFstF0iVc5DFqEzYgjl1F9NQftEzVcVL4SeR9koaMPTJbSevK33
|
||||
teljt5oc41mbekhuwGLqtU6l7VdnEqMf8ta9nQPEI1kxaUYLa6L3mNrQ41+kFyGx
|
||||
Y+h8SibR9U6b0TPh0STaom6w3M/mvxP7s36b3azJGcyhp8GqN0iUk/sxT2+33r4t
|
||||
15psfHEr0639516CVkrGWjBVbI6rAabQZAWeD0LJ0VluO6ViFlOwUmVo+YdsDbPf
|
||||
daUYvlTFew0pffxZuU6C+iinaUgS8mO66vHgdsQ=
|
||||
-----END CERTIFICATE-----
|
||||
</Certificate>
|
||||
<PrivateKey>-----BEGIN PRIVATE KEY-----
|
||||
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDE3kNx2JRNW3wp
|
||||
7z+ICugoFv2d5QS6swnVldO4zo71o6inPWpMjrmitW4mqC0BCx6LoR16XWC5ToA6
|
||||
8vscTCfsZTI4Z2EWUrURybo631xOtXvXDpWxoOAaeG6Bj+jvh/29HFiVCbNc4Caq
|
||||
cBqVTI3lstBrVDZqba9aB1FPJZzbw5GITu8erWRkHpgQ20Tq49Q3VzszXr35/jBB
|
||||
ZfG+HBoc8SFmfa/rj6OxgWY0UUqY/jXS6KeydZ+U2JE8PkBF4Uf42s9i9qkor+pf
|
||||
8MEaYxVZV8LXviK5CCAT9DLqTkQqSX674gArFDx+UegPR9AQ2JX9gKwwO0ghIOzW
|
||||
88/XWRI3AgMBAAECggEAAkCst91VYPvJg996Ig+AwrRDg5NdFH1n3MlUGZVn/4Re
|
||||
z0DT4V+O3QrVfvVHoDDq/vf3mWhulYPssVb16IL7sv1Vpe3Uy76YRcIkL1QQf04Q
|
||||
UCKf+OWiZ4v0necCrTjtfmWlM2AxzzXkDxCJN5cY0CaNcTKy3ov3ko9guLKO99kS
|
||||
MsUAo5dWlu1sOwqH0t0vy/wasZqyM84DlTa9Vk8qx2qhZ1F/meX+7D7f+SELK34P
|
||||
v3RtAFJkkN+70zZeJNJxg16BsFBfgCIMchQByRm0oyBGX4qZ9v/4t3DEfGi6e5Fe
|
||||
08dnoul+vBm4LR0WQ6Q0EYKrm3IG3U2aNjk0UeZjgQKBgQDharhIhqVP4vq9Sk1a
|
||||
Ky47HBdYdEnU+8ZSajmkkn0YDQc2OHOSOZKOd+16kh1xnysNmju/OENFMimm7IFp
|
||||
/Nn8f4ggPDlO8bUMfYYnlCNVwXZKZ1AriOEkh4cbsHvwyiXT++c6fmCGY9lc27qh
|
||||
eDgaU1J3yStWmJlJmWCDB4TA1wKBgQDfk/qSFV6bO4v91zS5D8FLZabSJQDy0YCb
|
||||
EjNTe31NyhI4GqY5YvqCWV5zTxV5+g1dEGdAPuGAd7qiOoqRTjPbfsdABNxVH2UT
|
||||
IadOjOruPqcrTCfYSO2sz8r4FR2dczyaBhoiNjLBVzi1ICSd89ogZSl/vyz8fl/I
|
||||
cvo6k/otoQKBgExCCUPn4ScMd5zv9QkrEIHIuBEhjhSydF5PN174e79WMPlj0Z1H
|
||||
QtBVvA46PiHBIhSA9/Nxujg/hx3EZuePNcOY9VlKZmzRklk+YdMj52xMfZMgLlv7
|
||||
+4abHtb8NoG4MWHsl0YPmOH+B3vFjfawL/Kf+4cwlCvAhiMC80aAlaWTAoGBAJxu
|
||||
7rCN8S8OQAoxLLubsXRuwIVizMIZIjHeTzlHO0pVa+ADjXCzt3HC1Bo8KFu7QORv
|
||||
2L6UALYhj914toGqxQ/8Ka+6duu8Vr1HG8gTQ0HFZrQdyfdEN8Bld6+THrCO88UV
|
||||
Je3wHB05SP06a0R1XZazEZFHk1NrnNskz75y0WZhAoGAaGQpYcv4UojKljFT+CUy
|
||||
xnalLeJlqfmubkKO3N524eyqZmOykbK5CXsoMKX6788eAnOXznlBCdnTdUrl3M7a
|
||||
/4mi2Ssv3XHz9nG+//dTA8/8V+XF3nm0jnJ1vzd+2WtCpBYhWB61N66w8y1XybWJ
|
||||
qmQhjs4UNqJluMjULmT2qdE=
|
||||
-----END PRIVATE KEY-----
|
||||
</PrivateKey>
|
||||
</Signer>
|
||||
<Decryption>
|
||||
<Certificate>-----BEGIN CERTIFICATE-----
|
||||
MIIEZDCCA0ygAwIBAgIBBTANBgkqhkiG9w0BAQsFADB9MRYwFAYDVQQKEw1kY3Bv
|
||||
bWF0aWMuY29tMRYwFAYDVQQLEw1kY3BvbWF0aWMuY29tMSQwIgYDVQQDExsuZGNw
|
||||
b21hdGljLnNtcHRlLTQzMC0yLlJPT1QxJTAjBgNVBC4THEFuM1JZMHMwWkdid2J6
|
||||
amtXdzlDeTBMTmFEWT0wHhcNMjUxMTE5MjAyODQ1WhcNMzUxMTE3MjAyODQ1WjB9
|
||||
MRYwFAYDVQQKEw1kY3BvbWF0aWMuY29tMRYwFAYDVQQLEw1kY3BvbWF0aWMuY29t
|
||||
MSQwIgYDVQQDExsuZGNwb21hdGljLnNtcHRlLTQzMC0yLlJPT1QxJTAjBgNVBC4T
|
||||
HEFuM1JZMHMwWkdid2J6amtXdzlDeTBMTmFEWT0wggEiMA0GCSqGSIb3DQEBAQUA
|
||||
A4IBDwAwggEKAoIBAQDbzCoy4ERrJVhwMHfuz2Jx3FzOyaMICyytWFNa7ltTS+Px
|
||||
ePZqKq1D2lpuFd4QdSERk2FBm/ROt6XkjpwiU10/yhVSS7UthEMT0isMj9WSTq5a
|
||||
+9XXqWDUERYF/rSrFn2hclcNQ3pZ1dalhDWXztF72prZYcexdssFoa9FdsI50gao
|
||||
8ZIuJI+tIuvIPNcYiGf2Kyq0lNpuEnAiKISaWHa7KebKFNe1NodwEue+n0m+OGRw
|
||||
yioU68Rbc79rC91YAIpy5TTS5XtlwlH4BtePF0XzN1OnlPDKwLUf8lZ4ZJyeBcjO
|
||||
0+QUvHj7emYth9/dYb+ze43DtrkWXXxbwey+7kEnAgMBAAGjge4wgeswEgYDVR0T
|
||||
AQH/BAgwBgEB/wIBAzALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFAJ90WNLNGRm8G84
|
||||
5FsPQstCzWg2MIGoBgNVHSMEgaAwgZ2AFAJ90WNLNGRm8G845FsPQstCzWg2oYGB
|
||||
pH8wfTEWMBQGA1UEChMNZGNwb21hdGljLmNvbTEWMBQGA1UECxMNZGNwb21hdGlj
|
||||
LmNvbTEkMCIGA1UEAxMbLmRjcG9tYXRpYy5zbXB0ZS00MzAtMi5ST09UMSUwIwYD
|
||||
VQQuExxBbjNSWTBzMFpHYndiemprV3c5Q3kwTE5hRFk9ggEFMA0GCSqGSIb3DQEB
|
||||
CwUAA4IBAQAtySWS0ZiQC4XgNRIVrF8ABBZ+WFOQUUNY8SPhWqM5GPHhXQkUNpWf
|
||||
kEMWd1ZK4QJlZtY+nlOGzHNAT3oq7TY9jjlmVt4NLONEzEZLLcDXI4iYvWNA1z3u
|
||||
5rtzD2Rp/faNwDM3mVxqBk7XZ8nohSXUR6kwrR5UYqFrfhqrVNbvIrdjl8kmod+X
|
||||
OhOvUJfFm/139ZBFOixVoATwmCqy9Y0ouBd/aPJlxprxxU81o6EhMaowl6XSRMdf
|
||||
dHzZvpnR1wGHUmXwU36bv2lKwUSugwRemt6MAjAPpW5hSps9bMCfBdJBNhi97Yhi
|
||||
GBjmM+P5TAFsYIUD4mdNOwKfTAY3QgD/
|
||||
-----END CERTIFICATE-----
|
||||
</Certificate>
|
||||
<Certificate>-----BEGIN CERTIFICATE-----
|
||||
MIIEbTCCA1WgAwIBAgIBBjANBgkqhkiG9w0BAQsFADB9MRYwFAYDVQQKEw1kY3Bv
|
||||
bWF0aWMuY29tMRYwFAYDVQQLEw1kY3BvbWF0aWMuY29tMSQwIgYDVQQDExsuZGNw
|
||||
b21hdGljLnNtcHRlLTQzMC0yLlJPT1QxJTAjBgNVBC4THEFuM1JZMHMwWkdid2J6
|
||||
amtXdzlDeTBMTmFEWT0wHhcNMjUxMTE5MjAyODQ1WhcNMzUxMTE2MjAyODQ1WjCB
|
||||
hTEWMBQGA1UEChMNZGNwb21hdGljLmNvbTEWMBQGA1UECxMNZGNwb21hdGljLmNv
|
||||
bTEsMCoGA1UEAxMjLmRjcG9tYXRpYy5zbXB0ZS00MzAtMi5JTlRFUk1FRElBVEUx
|
||||
JTAjBgNVBC4THHBBMnRxU2wyNGlOcFQ2cHN1bVE5ZnN1cy9lRT0wggEiMA0GCSqG
|
||||
SIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9+VbbTBau1TulZyn/0nrFS39NtAcDXAci
|
||||
vvtGAKQZhSbDdMFj99Cbg/dH79Yh3DKhng1864tX3pYV/hjACEdHUfTsI7+VV27z
|
||||
5C57WT5319bd4U5y5uN9Yiu7W6O6AAmg8PYcF/qMBtc+z5mfcVJUEZGoj3eBCY3C
|
||||
M4nNev5IuA5ahXNlPXSDmkv6C4XL9evOfVQZr7UAUNsbJMqBPJe6zGKW2at0nULU
|
||||
rz91k0GpvAjq7HdlJa3wA77XG0tfGJNTN+4qyXVeKLjwMLGkouvBrGViOt3ta8J3
|
||||
8VYEAkjKSios2iGTBQzzCRdD+y6QKLmyxmu+zQGIe/O0JtUUUvCPAgMBAAGjge4w
|
||||
geswEgYDVR0TAQH/BAgwBgEB/wIBAjALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFKQN
|
||||
rakpduIjaU+qbLpkPX7LrP3hMIGoBgNVHSMEgaAwgZ2AFAJ90WNLNGRm8G845FsP
|
||||
QstCzWg2oYGBpH8wfTEWMBQGA1UEChMNZGNwb21hdGljLmNvbTEWMBQGA1UECxMN
|
||||
ZGNwb21hdGljLmNvbTEkMCIGA1UEAxMbLmRjcG9tYXRpYy5zbXB0ZS00MzAtMi5S
|
||||
T09UMSUwIwYDVQQuExxBbjNSWTBzMFpHYndiemprV3c5Q3kwTE5hRFk9ggEFMA0G
|
||||
CSqGSIb3DQEBCwUAA4IBAQDHDAaafVEsFRRH7UZV2D55BBkVAKWyr/522UcIzVeN
|
||||
lXuA65gDu7CdHadfv+zdOlhPXh7Osw++zLXbuI0aRI/luTf+BM9kNNhyq7EHlEpI
|
||||
8DhfHQHB5VF4S+ZXe3VvuFxm9fyhcW94FEbfXazA2qyjiFFlt4gspWFOxAV4oPmJ
|
||||
lI7cHdhZA+9g1cYTjUZ4CkYI8FmVYUILZk4mbIvTau6IfJstrjT3+g5cAF0U/myo
|
||||
gJWZa6RY9V2I4paSAIWgZp10AYBXsVCcQY/VI8s/1kE0RQSIYgHrRjfKDF4+qY2S
|
||||
952p8A2pvp5JK3e3m69l4CfYTGykufLk+vW/m/uOJRQY
|
||||
-----END CERTIFICATE-----
|
||||
</Certificate>
|
||||
<Certificate>-----BEGIN CERTIFICATE-----
|
||||
MIIEaTCCA1GgAwIBAgIBBzANBgkqhkiG9w0BAQsFADCBhTEWMBQGA1UEChMNZGNw
|
||||
b21hdGljLmNvbTEWMBQGA1UECxMNZGNwb21hdGljLmNvbTEsMCoGA1UEAxMjLmRj
|
||||
cG9tYXRpYy5zbXB0ZS00MzAtMi5JTlRFUk1FRElBVEUxJTAjBgNVBC4THHBBMnRx
|
||||
U2wyNGlOcFQ2cHN1bVE5ZnN1cy9lRT0wHhcNMjUxMTE5MjAyODQ1WhcNMzUxMTE1
|
||||
MjAyODQ1WjB/MRYwFAYDVQQKEw1kY3BvbWF0aWMuY29tMRYwFAYDVQQLEw1kY3Bv
|
||||
bWF0aWMuY29tMSYwJAYDVQQDEx1DUy5kY3BvbWF0aWMuc21wdGUtNDMwLTIuTEVB
|
||||
RjElMCMGA1UELhMcL0ZTNGhaQ3EySmpyQXd3NE1NUTJHeXI1ck04PTCCASIwDQYJ
|
||||
KoZIhvcNAQEBBQADggEPADCCAQoCggEBAKwjff5a9bQlrWgzcT7+yEXzSlNV2jTs
|
||||
2DvNfUw03OVeOjd9vFoOGHMy4RrZM8XDMxtBsdb3ohtDe9qEZUjUEokJ+L2VK04E
|
||||
z7i2dhdZuKyfucVL0h6uyxCRHF41JbfuMLs8SFLLmsKNFLQ7k+JIHaiY/lUv8u/G
|
||||
Fw7q0qObliShK+SOLeiniwOXDQ+uaMYdknIt1jSq7AWmxgg41UQurrMi/+77KbFR
|
||||
soy69RneXXsaHKTZEPg1V97j6oLr9zSkQ6gtp40zoZW61pbVbpmUue5qY3p61Uqt
|
||||
7gP5ub8OXrCKGI51dqIWJrFZ83C5GqUi9zjNGtJW7Wb05KsPquB5fJ8CAwEAAaOB
|
||||
6DCB5TAMBgNVHRMBAf8EAjAAMAsGA1UdDwQEAwIFoDAdBgNVHQ4EFgQU/FS4hZCq
|
||||
2JjrAww4MMQ2Gyr5rM8wgagGA1UdIwSBoDCBnYAUpA2tqSl24iNpT6psumQ9fsus
|
||||
/eGhgYGkfzB9MRYwFAYDVQQKEw1kY3BvbWF0aWMuY29tMRYwFAYDVQQLEw1kY3Bv
|
||||
bWF0aWMuY29tMSQwIgYDVQQDExsuZGNwb21hdGljLnNtcHRlLTQzMC0yLlJPT1Qx
|
||||
JTAjBgNVBC4THEFuM1JZMHMwWkdid2J6amtXdzlDeTBMTmFEWT2CAQYwDQYJKoZI
|
||||
hvcNAQELBQADggEBALwN5fQePKMd461twDPVC2CIS3/NH+mC904meNQ74yHT3Mi7
|
||||
3ErOOvMGP5n/KOwEw7FL+MSJIZ+EW951XNr0VdyUCRW85d9T10EGSkYa2QscsDD4
|
||||
ngVE2C6t6bHS8FLADel0m5J9zLqeROC9Sngxl/WauRQjnorkBAqZvQsjnZQ3XZ3P
|
||||
dU3u1dXZeBPLWxVPhxEaY02pHHMAonSSLY22uIRL636fit6Q36PJG0xPSje3gIoT
|
||||
ocmHCy0BNAFqgG0lefY32GVkCyT0aMG1zVEuPZLFAf57j/ZhXDwmG3lpxzJHjiVH
|
||||
ePEMgaGA4UV86eamgmDfdC+up8eBJNH3wWnmboc=
|
||||
-----END CERTIFICATE-----
|
||||
</Certificate>
|
||||
<PrivateKey>-----BEGIN PRIVATE KEY-----
|
||||
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCsI33+WvW0Ja1o
|
||||
M3E+/shF80pTVdo07Ng7zX1MNNzlXjo3fbxaDhhzMuEa2TPFwzMbQbHW96IbQ3va
|
||||
hGVI1BKJCfi9lStOBM+4tnYXWbisn7nFS9IerssQkRxeNSW37jC7PEhSy5rCjRS0
|
||||
O5PiSB2omP5VL/LvxhcO6tKjm5YkoSvkji3op4sDlw0PrmjGHZJyLdY0quwFpsYI
|
||||
ONVELq6zIv/u+ymxUbKMuvUZ3l17Ghyk2RD4NVfe4+qC6/c0pEOoLaeNM6GVutaW
|
||||
1W6ZlLnuamN6etVKre4D+bm/Dl6wihiOdXaiFiaxWfNwuRqlIvc4zRrSVu1m9OSr
|
||||
D6rgeXyfAgMBAAECggEAAjoOdENiiU2M5oA/29rU5foupZoLyKcO1wjrsPObin8x
|
||||
DXW3Jh0VR76BQECXMO8Wtzrn+K6SHDMtf3vM0sNJ1c7922Vn0O8OSSI01LqkCnAz
|
||||
8qZb8Wph3oc1dWEYxQdGRxt/UEyXQZCaXJrLRJcsFwwIwjrsodBq+qhZte310gx2
|
||||
hmQsYrTaKRvVZ0k+F7kYbhZLUscJKPUDTMElxXQuFXGAKClR2vZgL6CEk6VNE3yK
|
||||
+zVEXVSHK2lUU7yeX2AUbtDvZaYpn72PQPekdzmMui6Evnd/ti3LEHHr6iowCQg9
|
||||
JdtEF6Wk9OCX55AUpQA+2TRGdh5d2+rq7GYqMohnyQKBgQDnq6dQlflRHZfHacc8
|
||||
dp+vmjKx54QFW3bUegPXJfRut7EdZwzL5HCaJ5buwhcJsyakI6k1g1N0FJAvL3kk
|
||||
0FLl1f9CnaE8pLBhlTe+6spNcfwSSjGs+SfUHthZFC1mxNQXA0IYXNLvG84t+Kap
|
||||
2JmR/xjBI8zLmMvTLVUQHgnMJwKBgQC+N1qKZ9qiIXFH8PuoKz4VIU/ZEcA7G9iD
|
||||
LAUqtpqsMt9skMKDEn+PPQEbqwyrLV/tp73dphd3fXpPnO2fg04UzIbkMBZxOM87
|
||||
G4ekP45Iavjlwka7JfQSXDzP9T0X0b7hklKjCVv36BMd4B/WQWh2UrVg9gF6mr4+
|
||||
MaEPPGt+yQKBgQDikc/aUjI4kHaGAf9mNKVLecSmlMNa8e6vMn1bBrWdKm0/Ui8D
|
||||
oPA28wz7iDo7tEfQM0gjG8KcPhgc7ZLO3CaWvMkd/0dXJcGSTfrs7nbXcuiRgpo+
|
||||
jpXTMC9qPv+ACHNb5kXXycBJNKpZ71oftcPLMu6kxTxeyZpdd3I/hwER9QKBgCq4
|
||||
heY14v2s4yNUNUEUzTGztJo9CV59J4h2V4a7UkvAdTuN25HSksGZ4ujS5tp/K19V
|
||||
4CeqyPR2QwUkap37wIqdUOJpBnFRYAGXckRqXctX8ySvGHGp2YJSIvpVyu3RlrxU
|
||||
v6iMTpKEFd8M2jmloQ+KDeCD/9sIbBfNz617VW05AoGAR32znX2Wh5cr0TA4r0uD
|
||||
Sgo5IgxFY2qr3bUuXhNO0EzEyME9/zR7Jx6bQt9b3YY4YDXhOPw4smaV+kTQ0KiB
|
||||
Oc7ysSjblE0MmLP9860mIXiW3x7Rmx2lXoMTIddZ1fERM9NOiXu9AhjsFXTWoUj1
|
||||
/66PTUQTai5+4uXxu3pnv+0=
|
||||
-----END PRIVATE KEY-----
|
||||
</PrivateKey>
|
||||
</Decryption>
|
||||
<History>/home/smart/test</History>
|
||||
<DKDMGroup name="root"/>
|
||||
<CinemasFile>/home/smart/.config/dcpomatic2/cinemas.sqlite3</CinemasFile>
|
||||
<DKDMRecipientsFile>/home/smart/.config/dcpomatic2/dkdm_recipients.sqlite3</DKDMRecipientsFile>
|
||||
<ShowHintsBeforeMakeDCP>1</ShowHintsBeforeMakeDCP>
|
||||
<ConfirmKDMEmail>1</ConfirmKDMEmail>
|
||||
<KDMFilenameFormat>KDM_%f_%c_%s</KDMFilenameFormat>
|
||||
<DKDMFilenameFormat>DKDM_%f_%r</DKDMFilenameFormat>
|
||||
<KDMContainerNameFormat>KDM_%f_%c</KDMContainerNameFormat>
|
||||
<DCPMetadataFilenameFormat>%t</DCPMetadataFilenameFormat>
|
||||
<DCPAssetFilenameFormat>%t</DCPAssetFilenameFormat>
|
||||
<JumpToSelected>1</JumpToSelected>
|
||||
<Nagged id="0">0</Nagged>
|
||||
<Nagged id="1">0</Nagged>
|
||||
<Nagged id="2">0</Nagged>
|
||||
<Nagged id="3">0</Nagged>
|
||||
<Nagged id="4">0</Nagged>
|
||||
<Nagged id="5">0</Nagged>
|
||||
<Nagged id="6">0</Nagged>
|
||||
<Nagged id="7">0</Nagged>
|
||||
<Nagged id="8">0</Nagged>
|
||||
<Nagged id="9">0</Nagged>
|
||||
<PreviewSound>1</PreviewSound>
|
||||
<CoverSheet>$CPL_NAME
|
||||
|
||||
CPL Filename: $CPL_FILENAME
|
||||
Type: $TYPE
|
||||
Format: $CONTAINER
|
||||
Audio: $AUDIO
|
||||
Audio Language: $AUDIO_LANGUAGE
|
||||
Subtitle Language: $SUBTITLE_LANGUAGE
|
||||
Length: $LENGTH
|
||||
Size: $SIZE
|
||||
</CoverSheet>
|
||||
<LastKDMWriteType>flat</LastKDMWriteType>
|
||||
<LastDKDMWriteType>internal</LastDKDMWriteType>
|
||||
<FramesInMemoryMultiplier>3</FramesInMemoryMultiplier>
|
||||
<DefaultNotify>0</DefaultNotify>
|
||||
<Notification id="0">0</Notification>
|
||||
<Notification id="1">0</Notification>
|
||||
<PlayerMode>window</PlayerMode>
|
||||
<ImageDisplay>0</ImageDisplay>
|
||||
<VideoViewType>simple</VideoViewType>
|
||||
<RespectKDMValidityPeriods>1</RespectKDMValidityPeriods>
|
||||
<AudioMapping>
|
||||
<InputChannels>16</InputChannels>
|
||||
<OutputChannels>0</OutputChannels>
|
||||
</AudioMapping>
|
||||
<AddFilesPath>/home/smart/Downloads</AddFilesPath>
|
||||
<UseISDCFNameByDefault>1</UseISDCFNameByDefault>
|
||||
<WriteKDMsToDisk>1</WriteKDMsToDisk>
|
||||
<EmailKDMs>0</EmailKDMs>
|
||||
<DefaultKDMType>modified-transitional-1</DefaultKDMType>
|
||||
<AutoCropThreshold>0.1</AutoCropThreshold>
|
||||
<LastReleaseNotesVersion>2.18.29</LastReleaseNotesVersion>
|
||||
<MainDividerSashPosition>463</MainDividerSashPosition>
|
||||
<DefaultAddFileLocation>last</DefaultAddFileLocation>
|
||||
<AllowSMPTEBv20>0</AllowSMPTEBv20>
|
||||
<ISDCFNamePartLength>14</ISDCFNamePartLength>
|
||||
<EnablePlayerHTTPServer>0</EnablePlayerHTTPServer>
|
||||
<PlayerHTTPServerPort>8080</PlayerHTTPServerPort>
|
||||
<RelativePaths>0</RelativePaths>
|
||||
<LayoutForShortScreen>0</LayoutForShortScreen>
|
||||
<Export>
|
||||
<Format>prores-hq</Format>
|
||||
<MixdownToStereo>0</MixdownToStereo>
|
||||
<SplitReels>0</SplitReels>
|
||||
<SplitStreams>0</SplitStreams>
|
||||
<X264CRF>23</X264CRF>
|
||||
</Export>
|
||||
</Config>
|
||||
209
archiso/airootfs/home/smart/.config/menus/xfce-applications.menu
Executable file
209
archiso/airootfs/home/smart/.config/menus/xfce-applications.menu
Executable file
@@ -0,0 +1,209 @@
|
||||
<!DOCTYPE Menu PUBLIC "-//freedesktop//DTD Menu 1.0//EN"
|
||||
"http://www.freedesktop.org/standards/menu-spec/1.0/menu.dtd">
|
||||
|
||||
<Menu>
|
||||
<Name>Xfce</Name>
|
||||
|
||||
<DefaultAppDirs/>
|
||||
<DefaultDirectoryDirs/>
|
||||
|
||||
<Include>
|
||||
<Category>X-Xfce-Toplevel</Category>
|
||||
<Category>TMS</Category>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Or>
|
||||
<Filename>xfce4-mail-reader.desktop</Filename>
|
||||
<Filename>xfce4-web-browser.desktop</Filename>
|
||||
<Filename>barco-commander.desktop</Filename>
|
||||
<Filename>barco-communicator.desktop</Filename>
|
||||
<Filename>dcc.desktop</Filename>
|
||||
<Filename>dcc2.desktop</Filename>
|
||||
<Filename>zm.desktop</Filename>
|
||||
<Filename>tms-tools.desktop</Filename>
|
||||
<Filename>tmsrestart.desktop</Filename>
|
||||
<Filename>org.remmina.Remmina.desktop</Filename>
|
||||
<Filename>dcpomatic2.desktop</Filename>
|
||||
<Filename>xfce4-run.desktop</Filename>
|
||||
<Filename>uzipkdm.desktop</Filename>
|
||||
</Or>
|
||||
</Exclude>
|
||||
|
||||
|
||||
<Layout>
|
||||
<Filename>xfce4-run.desktop</Filename>
|
||||
<Separator/>
|
||||
<Filename>xfce4-terminal-emulator.desktop</Filename>
|
||||
<Filename>xfce4-file-manager.desktop</Filename>
|
||||
<Filename>tms.desktop</Filename>
|
||||
<Separator/>
|
||||
<Menuname>TMS</Menuname>
|
||||
<Separator/>
|
||||
<Menuname>Settings</Menuname>
|
||||
<Separator/>
|
||||
<Merge type="all"/>
|
||||
<Separator/>
|
||||
<Filename>xfce4-about.desktop</Filename>
|
||||
<Filename>xfce4-session-logout.desktop</Filename>
|
||||
</Layout>
|
||||
|
||||
<Menu>
|
||||
<Name>TMS</Name>
|
||||
<Directory>tms.directory</Directory>
|
||||
<Include>
|
||||
<Category>TMS</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Settings</Name>
|
||||
<Directory>xfce-settings.directory</Directory>
|
||||
<Include>
|
||||
<Category>Settings</Category>
|
||||
</Include>
|
||||
|
||||
<Layout>
|
||||
<Filename>xfce-settings-manager.desktop</Filename>
|
||||
<Separator/>
|
||||
<Merge type="all"/>
|
||||
</Layout>
|
||||
|
||||
<Menu>
|
||||
<Name>Screensavers</Name>
|
||||
<Directory>xfce-screensavers.directory</Directory>
|
||||
<Include>
|
||||
<Category>Screensaver</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Directory>xfce-accessories.directory</Directory>
|
||||
<Include>
|
||||
<Or>
|
||||
<Category>Accessibility</Category>
|
||||
<Category>Core</Category>
|
||||
<Category>Legacy</Category>
|
||||
<Category>Utility</Category>
|
||||
</Or>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Or>
|
||||
<Filename>xfce4-file-manager.desktop</Filename>
|
||||
<Filename>xfce4-terminal-emulator.desktop</Filename>
|
||||
<Filename>xfce4-about.desktop</Filename>
|
||||
<Filename>xfce4-run.desktop</Filename>
|
||||
</Or>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Development</Name>
|
||||
<Directory>xfce-development.directory</Directory>
|
||||
<Include>
|
||||
<Category>Development</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Education</Name>
|
||||
<Directory>xfce-education.directory</Directory>
|
||||
<Include>
|
||||
<Category>Education</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Games</Name>
|
||||
<Directory>xfce-games.directory</Directory>
|
||||
<Include>
|
||||
<Category>Game</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Directory>xfce-graphics.directory</Directory>
|
||||
<Include>
|
||||
<Category>Graphics</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<Directory>xfce-multimedia.directory</Directory>
|
||||
<Include>
|
||||
<Category>Audio</Category>
|
||||
<Category>Video</Category>
|
||||
<Category>AudioVideo</Category>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Or>
|
||||
<Filename>qv4l2.desktop</Filename>
|
||||
<Filename>qvidcap.desktop</Filename>
|
||||
</Or>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Network</Name>
|
||||
<Directory>xfce-network.directory</Directory>
|
||||
<Include>
|
||||
<Category>Network</Category>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Or>
|
||||
<Filename>bssh.desktop</Filename>
|
||||
<Filename>bvnc.desktop</Filename>
|
||||
<Filename>xfce4-web-browser.desktop</Filename>
|
||||
<Filename>xfce4-mail-reader.desktop</Filename>
|
||||
</Or>
|
||||
</Exclude>
|
||||
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Office</Name>
|
||||
<Directory>xfce-office.directory</Directory>
|
||||
<Include>
|
||||
<Category>Office</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Science</Name>
|
||||
<Directory>xfce-science.directory</Directory>
|
||||
<Include>
|
||||
<Category>Science</Category>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<Directory>xfce-system.directory</Directory>
|
||||
<Include>
|
||||
<Or>
|
||||
<Category>Emulator</Category>
|
||||
<Category>System</Category>
|
||||
</Or>
|
||||
</Include>
|
||||
<Exclude>
|
||||
<Or>
|
||||
<Filename>xfce4-session-logout.desktop</Filename>
|
||||
</Or>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
|
||||
<Menu>
|
||||
<Name>Other</Name>
|
||||
<Directory>xfce-other.directory</Directory>
|
||||
<OnlyUnallocated/>
|
||||
<Include>
|
||||
<All/>
|
||||
</Include>
|
||||
</Menu>
|
||||
|
||||
<DefaultMergeDirs/>
|
||||
|
||||
</Menu>
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/user/pipewire-pulse.service
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/user/pipewire.service
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/user/wireplumber.service
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/user/wireplumber.service
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/user/pipewire-pulse.socket
|
||||
@@ -0,0 +1 @@
|
||||
/usr/lib/systemd/user/pipewire.socket
|
||||
49
archiso/airootfs/home/smart/.config/xfce4/desktop/accels.scm
Normal file
49
archiso/airootfs/home/smart/.config/xfce4/desktop/accels.scm
Normal file
@@ -0,0 +1,49 @@
|
||||
; xfdesktop-settings GtkAccelMap rc-file -*- scheme -*-
|
||||
; this file is an automated accelerator map dump
|
||||
;
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/properties" "<Alt>Return")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/primary-menu-2" "Menu")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/open-with-other" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/activate-3" "Return")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/properties-3" "<Alt>KP_Enter")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/trash" "Delete")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/next-background" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/copy-2" "<Primary>Insert")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/cut" "<Primary>x")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/unselect-all" "Escape")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/cut-2" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopWindowIconManager/close" "<Primary>c")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/activate" "space")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/activate-2" "KP_Space")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/open" "<Primary>o")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/select-all" "<Primary>a")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/properties-2" "<Alt>ISO_Enter")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/empty-trash" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/open-trash" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/trash-3" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/delete" "<Shift>Delete")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/copy" "<Primary>c")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/reload-2" "Reload")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/delete-3" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/trash-2" "KP_Delete")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/reload" "<Primary>r")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/paste-into-folder" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/paste-2" "<Shift>Insert")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/secondary-menu" "<Primary><Shift>F10")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/delete-2" "<Shift>KP_Delete")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/toggle-cursor-2" "<Primary>KP_Space")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/reload-1" "F5")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/open-filesystem" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/activate-5" "KP_Enter")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/primary-menu" "<Shift>F10")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/create-document" "")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/create-folder" "<Primary><Shift>n")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/toggle-cursor" "<Primary>space")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/toggle-show-hidden" "<Primary>h")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/open-home" "<Alt>Home")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/paste" "<Primary>v")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopWindowIconManager/unminimize" "<Primary>o")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/activate-4" "ISO_Enter")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopFileIconManager/rename" "F2")
|
||||
; (gtk_accel_path "<Actions>/XfdesktopIconView/arrange-icons" "")
|
||||
; (gtk_accel_path "<Actions>/XfceDesktop/secondary-menu-2" "<Primary>Menu")
|
||||
@@ -0,0 +1,63 @@
|
||||
#
|
||||
# DO NOT EDIT THIS FILE WHILE XFDESKTOP IS RUNNING
|
||||
#
|
||||
configs:
|
||||
- level: 0
|
||||
monitors:
|
||||
- id: "219c758276014cf095bbaa65c548f7934ea6afe1"
|
||||
display_name: "Virtual-1"
|
||||
geometry:
|
||||
x: 0
|
||||
y: 0
|
||||
width: 1280
|
||||
height: 800
|
||||
icons:
|
||||
"/home/smart/Desktop/dcpomatic2.desktop":
|
||||
row: 6
|
||||
col: 0
|
||||
"trash:///":
|
||||
row: 2
|
||||
col: 0
|
||||
"/home/smart/Desktop/DCC2.desktop":
|
||||
row: 1
|
||||
col: 1
|
||||
"/home/smart/Desktop/Communicator.desktop":
|
||||
row: 3
|
||||
col: 1
|
||||
"/home/smart/Desktop/sunlogin.desktop":
|
||||
row: 0
|
||||
col: 2
|
||||
"/home/smart/Desktop/firefox.desktop":
|
||||
row: 5
|
||||
col: 0
|
||||
"/home/smart/Desktop/\u7247\u5E93":
|
||||
row: 5
|
||||
col: 1
|
||||
"/home/smart/Desktop/\u5BC6\u94A5":
|
||||
row: 6
|
||||
col: 1
|
||||
"/home/smart":
|
||||
row: 0
|
||||
col: 0
|
||||
"/":
|
||||
row: 1
|
||||
col: 0
|
||||
"/home/smart/Desktop/Barco Commander.desktop":
|
||||
row: 4
|
||||
col: 1
|
||||
"/home/smart/Desktop/DCC.desktop":
|
||||
row: 2
|
||||
col: 1
|
||||
"/home/smart/Desktop/com.teamviewer.TeamViewer.desktop":
|
||||
row: 0
|
||||
col: 1
|
||||
"2025-11-20-22-50-22-00":
|
||||
row: 3
|
||||
col: 0
|
||||
last_seen: 1763720886802894
|
||||
"/home/smart/Desktop/org.remmina.Remmina.desktop":
|
||||
row: 4
|
||||
col: 0
|
||||
"/home/smart/Desktop/restart.desktop":
|
||||
row: 1
|
||||
col: 2
|
||||
2
archiso/airootfs/home/smart/.config/xfce4/help.rc
Normal file
2
archiso/airootfs/home/smart/.config/xfce4/help.rc
Normal file
@@ -0,0 +1,2 @@
|
||||
auto-online=false
|
||||
|
||||
@@ -0,0 +1,14 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch TerminalEmulator
|
||||
Icon=org.xfce.terminalemulator
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
|
||||
Keywords=terminal;command line;shell;console;xfce;
|
||||
OnlyShowIn=XFCE;
|
||||
X-AppStream-Ignore=True
|
||||
Name=Terminal Emulator
|
||||
Comment=Use the command line
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-terminal-emulator.desktop
|
||||
@@ -0,0 +1,17 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch TerminalEmulator
|
||||
Icon=org.xfce.terminalemulator
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
|
||||
Keywords[zh_CN]=终端;命令行;shell;控制台;xfce;
|
||||
Keywords=terminal;command line;shell;console;xfce;
|
||||
OnlyShowIn=XFCE;
|
||||
X-AppStream-Ignore=True
|
||||
Name[zh_CN]=终端模拟器
|
||||
Name=Terminal Emulator
|
||||
Comment[zh_CN]=使用命令行
|
||||
Comment=Use the command line
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-terminal-emulator.desktop
|
||||
@@ -0,0 +1,15 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch FileManager %u
|
||||
Icon=org.xfce.filemanager
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
|
||||
Keywords=file;manager;explorer;browse;filesystem;directory;folder;xfce;
|
||||
OnlyShowIn=XFCE;
|
||||
X-XFCE-MimeType=inode/directory;x-scheme-handler/trash;
|
||||
X-AppStream-Ignore=True
|
||||
Name=File Manager
|
||||
Comment=Browse the file system
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-file-manager.desktop
|
||||
@@ -0,0 +1,18 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch FileManager %u
|
||||
Icon=org.xfce.filemanager
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
|
||||
Keywords[zh_CN]=文件;管理;浏览;文件系统;目录;文件夹;xfce;
|
||||
Keywords=file;manager;explorer;browse;filesystem;directory;folder;xfce;
|
||||
OnlyShowIn=XFCE;
|
||||
X-XFCE-MimeType=inode/directory;x-scheme-handler/trash;
|
||||
X-AppStream-Ignore=True
|
||||
Name[zh_CN]=文件管理器
|
||||
Name=File Manager
|
||||
Comment[zh_CN]=浏览文件系统
|
||||
Comment=Browse the file system
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-file-manager.desktop
|
||||
@@ -0,0 +1,15 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch WebBrowser %u
|
||||
Icon=org.xfce.webbrowser
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Network;X-XFCE;X-Xfce-Toplevel;
|
||||
Keywords=internet;web;browser;surf;explore;xfce;
|
||||
OnlyShowIn=XFCE;
|
||||
X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https;
|
||||
X-AppStream-Ignore=True
|
||||
Name=Web Browser
|
||||
Comment=Browse the web
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-web-browser.desktop
|
||||
@@ -0,0 +1,19 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=/usr/lib/firefox/firefox %u
|
||||
Icon=firefox
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Network;X-XFCE;X-Xfce-Toplevel;
|
||||
Keywords[zh_CN]=互联网;网页;浏览器;冲浪;探索;xfce;
|
||||
Keywords=internet;web;browser;surf;explore;xfce;
|
||||
OnlyShowIn=XFCE;
|
||||
X-XFCE-MimeType=x-scheme-handler/http;x-scheme-handler/https;
|
||||
X-AppStream-Ignore=True
|
||||
Name[zh_CN]=TMS
|
||||
Name=Web Browser
|
||||
Comment[zh_CN]=打开TMS
|
||||
Comment=Browse the web
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-web-browser.desktop
|
||||
Path=
|
||||
@@ -0,0 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Exec=xfce4-appfinder
|
||||
Icon=org.xfce.appfinder
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Utility;X-XFCE;
|
||||
Name=Application Finder
|
||||
Comment=Find and launch applications installed on your system
|
||||
Keywords=program;applications;bookmarks;
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-appfinder.desktop
|
||||
@@ -0,0 +1,15 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Exec=xfce4-appfinder
|
||||
Icon=org.xfce.appfinder
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Utility;X-XFCE;
|
||||
Name[zh_CN]=应用程序查找器
|
||||
Name=Application Finder
|
||||
Comment[zh_CN]=查找和启动在您系统上安装的应用程序
|
||||
Comment=Find and launch applications installed on your system
|
||||
Keywords[zh_CN]=program;applications;bookmarks;程序;应用;书签;
|
||||
Keywords=program;applications;bookmarks;
|
||||
X-XFCE-Source=file:///usr/share/applications/xfce4-appfinder.desktop
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<actions>
|
||||
<action>
|
||||
<name>Bugz</name>
|
||||
<regex>bug\s*#?\s*([0-9]+)</regex>
|
||||
<group>0</group>
|
||||
<commands>
|
||||
<command>
|
||||
<name>GNOME Bug</name>
|
||||
<exec>exo-open https://bugzilla.gnome.org/show_bug.cgi?id=\1</exec>
|
||||
</command>
|
||||
<command>
|
||||
<name>Xfce Bug</name>
|
||||
<exec>exo-open https://bugzilla.xfce.org/show_bug.cgi?id=\1</exec>
|
||||
</command>
|
||||
</commands>
|
||||
</action>
|
||||
<action>
|
||||
<name>Image</name>
|
||||
<regex>(http|ftp).+\.(jpg|png|gif)</regex>
|
||||
<group>0</group>
|
||||
<commands>
|
||||
<command>
|
||||
<name>View with Ristretto</name>
|
||||
<exec>ristretto "\0"</exec>
|
||||
</command>
|
||||
<command>
|
||||
<name>Edit with Gimp</name>
|
||||
<exec>gimp "\0"</exec>
|
||||
</command>
|
||||
</commands>
|
||||
</action>
|
||||
<action>
|
||||
<name>Long URL</name>
|
||||
<regex>https?://[^\s]{120,}</regex>
|
||||
<group>0</group>
|
||||
<commands>
|
||||
<command>
|
||||
<name>Shrink the URL</name>
|
||||
<exec>exo-open https://tinyurl.com/create.php?url=\0</exec>
|
||||
</command>
|
||||
</commands>
|
||||
</action>
|
||||
</actions>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="displays" version="1.0">
|
||||
<property name="ActiveProfile" type="string" value="Default"/>
|
||||
<property name="Notify" type="int" value="1"/>
|
||||
<property name="AutoEnableProfiles" type="int" value="3"/>
|
||||
</channel>
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="keyboard-layout" version="1.0">
|
||||
<property name="Default" type="empty">
|
||||
<property name="XkbDisable" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="keyboards" version="1.0">
|
||||
<property name="Default" type="empty">
|
||||
<property name="RestoreNumlock" type="bool" value="true"/>
|
||||
<property name="KeyRepeat" type="empty">
|
||||
<property name="Delay" type="int" value="490"/>
|
||||
</property>
|
||||
<property name="Numlock" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="ristretto" version="1.0">
|
||||
<property name="window" type="empty">
|
||||
<property name="navigationbar" type="empty">
|
||||
<property name="position" type="string" value="left"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="thunar-volman" version="1.0">
|
||||
<property name="automount-drives" type="empty">
|
||||
<property name="enabled" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="automount-media" type="empty">
|
||||
<property name="enabled" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="autobrowse" type="empty">
|
||||
<property name="enabled" type="bool" value="true"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="thunar" version="1.0">
|
||||
<property name="last-view" type="string" value="ThunarDetailsView"/>
|
||||
<property name="last-icon-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_100_PERCENT"/>
|
||||
<property name="last-show-hidden" type="bool" value="true"/>
|
||||
<property name="last-separator-position" type="int" value="266"/>
|
||||
<property name="last-window-width" type="int" value="836"/>
|
||||
<property name="last-window-height" type="int" value="846"/>
|
||||
<property name="last-window-maximized" type="bool" value="false"/>
|
||||
<property name="last-details-view-zoom-level" type="string" value="THUNAR_ZOOM_LEVEL_38_PERCENT"/>
|
||||
<property name="last-details-view-column-widths" type="string" value="50,50,111,111,111,552,50,50,320,50,50,70,50,213"/>
|
||||
<property name="last-sort-column" type="string" value="THUNAR_COLUMN_NAME"/>
|
||||
<property name="last-sort-order" type="string" value="GTK_SORT_ASCENDING"/>
|
||||
<property name="misc-single-click" type="bool" value="false"/>
|
||||
</channel>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-appfinder" version="1.0">
|
||||
<property name="last" type="empty">
|
||||
<property name="window-height" type="int" value="745"/>
|
||||
<property name="window-width" type="int" value="1280"/>
|
||||
<property name="pane-position" type="int" value="180"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<channel name="xfce4-desktop" version="1.0">
|
||||
<property name="backdrop" type="empty">
|
||||
<property name="screen0" type="empty">
|
||||
<!-- 最通用的设置:直接在 screen0 下定义 last-image -->
|
||||
<!-- XFCE 应该会将此作为所有显示器的默认回退,无论其具体标识符是什么 -->
|
||||
<property name="last-image" type="string" value="/usr/share/backgrounds/BBTTMS.png"/>
|
||||
<property name="image-style" type="int" value="5"/> <!-- 5 是缩放 -->
|
||||
<property name="image-show" type="bool" value="true"/>
|
||||
<property name="color-style" type="int" value="0"/>
|
||||
<property name="color1" type="array">
|
||||
<value type="uint" value="0"/>
|
||||
<value type="uint" value="0"/>
|
||||
<value type="uint" value="0"/>
|
||||
<value type="uint" value="65535"/>
|
||||
</property>
|
||||
|
||||
<!-- 保留 monitor0 作为另一个回退层,以防 screen0 上的通用设置不起作用 -->
|
||||
<property name="monitor0" type="empty">
|
||||
<property name="image-path" type="string" value="/usr/share/backgrounds/BBTTMS.png"/>
|
||||
<property name="image-show" type="bool" value="true"/>
|
||||
<property name="image-style" type="int" value="5"/>
|
||||
<property name="last-image" type="string" value="/usr/share/backgrounds/BBTTMS.png"/>
|
||||
<property name="color-style" type="int" value="0"/>
|
||||
<property name="color1" type="array">
|
||||
<value type="uint" value="0"/>
|
||||
<value type="uint" value="0"/>
|
||||
<value type="uint" value="0"/>
|
||||
<value type="uint" value="65535"/>
|
||||
</property>
|
||||
</property>
|
||||
|
||||
</property>
|
||||
<!-- 确保所有工作区都使用相同的背景设置 -->
|
||||
<property name="single-workspace-mode" type="bool" value="true"/>
|
||||
<property name="single-workspace-number" type="int" value="0"/>
|
||||
</property>
|
||||
<property name="last-settings-migration-version" type="uint" value="1"/>
|
||||
<property name="last" type="empty">
|
||||
<property name="window-width" type="int" value="612"/>
|
||||
<property name="window-height" type="int" value="547"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,196 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-keyboard-shortcuts" version="1.0">
|
||||
<property name="commands" type="empty">
|
||||
<property name="default" type="empty">
|
||||
<property name="<Alt>F1" type="empty"/>
|
||||
<property name="<Alt>F2" type="empty">
|
||||
<property name="startup-notify" type="empty"/>
|
||||
</property>
|
||||
<property name="<Alt>F3" type="empty">
|
||||
<property name="startup-notify" type="empty"/>
|
||||
</property>
|
||||
<property name="<Primary><Alt>Delete" type="empty"/>
|
||||
<property name="<Primary><Alt>l" type="empty"/>
|
||||
<property name="<Primary><Alt>t" type="empty"/>
|
||||
<property name="XF86Display" type="empty"/>
|
||||
<property name="<Super>p" type="empty"/>
|
||||
<property name="<Primary>Escape" type="empty"/>
|
||||
<property name="XF86WWW" type="empty"/>
|
||||
<property name="HomePage" type="empty"/>
|
||||
<property name="XF86Mail" type="empty"/>
|
||||
<property name="Print" type="empty"/>
|
||||
<property name="<Alt>Print" type="empty"/>
|
||||
<property name="<Shift>Print" type="empty"/>
|
||||
<property name="<Super>e" type="empty"/>
|
||||
<property name="<Primary><Alt>f" type="empty"/>
|
||||
<property name="<Primary><Alt>Escape" type="empty"/>
|
||||
<property name="<Primary><Shift>Escape" type="empty"/>
|
||||
<property name="<Super>r" type="empty">
|
||||
<property name="startup-notify" type="empty"/>
|
||||
</property>
|
||||
<property name="<Alt><Super>s" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="<Alt>F2" type="string" value="xfce4-appfinder --collapsed">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Alt>Print" type="string" value="xfce4-screenshooter -w"/>
|
||||
<property name="<Super>r" type="string" value="xfce4-appfinder -c">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="XF86WWW" type="string" value="exo-open --launch WebBrowser"/>
|
||||
<property name="XF86Mail" type="string" value="exo-open --launch MailReader"/>
|
||||
<property name="<Alt>F3" type="string" value="xfce4-appfinder">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="Print" type="string" value="xfce4-screenshooter"/>
|
||||
<property name="<Primary>Escape" type="string" value="xfdesktop --menu"/>
|
||||
<property name="<Shift>Print" type="string" value="xfce4-screenshooter -r"/>
|
||||
<property name="<Primary><Alt>Delete" type="string" value="xfce4-session-logout"/>
|
||||
<property name="<Alt><Super>s" type="string" value="orca"/>
|
||||
<property name="<Primary><Alt>t" type="string" value="exo-open --launch TerminalEmulator"/>
|
||||
<property name="<Primary><Alt>f" type="string" value="thunar"/>
|
||||
<property name="<Primary><Alt>l" type="string" value="xflock4"/>
|
||||
<property name="<Alt>F1" type="string" value="xfce4-popup-applicationsmenu"/>
|
||||
<property name="<Super>p" type="string" value="xfce4-display-settings --minimal"/>
|
||||
<property name="<Primary><Shift>Escape" type="string" value="xfce4-taskmanager"/>
|
||||
<property name="<Super>e" type="string" value="thunar"/>
|
||||
<property name="<Primary><Alt>Escape" type="string" value="xkill"/>
|
||||
<property name="HomePage" type="string" value="exo-open --launch WebBrowser"/>
|
||||
<property name="XF86Display" type="string" value="xfce4-display-settings --minimal"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="xfwm4" type="empty">
|
||||
<property name="default" type="empty">
|
||||
<property name="<Alt>Insert" type="empty"/>
|
||||
<property name="Escape" type="empty"/>
|
||||
<property name="Left" type="empty"/>
|
||||
<property name="Right" type="empty"/>
|
||||
<property name="Up" type="empty"/>
|
||||
<property name="Down" type="empty"/>
|
||||
<property name="<Alt>Tab" type="empty"/>
|
||||
<property name="<Alt><Shift>Tab" type="empty"/>
|
||||
<property name="<Alt>Delete" type="empty"/>
|
||||
<property name="<Primary><Alt>Down" type="empty"/>
|
||||
<property name="<Primary><Alt>Left" type="empty"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="empty"/>
|
||||
<property name="<Alt>F4" type="empty"/>
|
||||
<property name="<Alt>F6" type="empty"/>
|
||||
<property name="<Alt>F7" type="empty"/>
|
||||
<property name="<Alt>F8" type="empty"/>
|
||||
<property name="<Alt>F9" type="empty"/>
|
||||
<property name="<Alt>F10" type="empty"/>
|
||||
<property name="<Alt>F11" type="empty"/>
|
||||
<property name="<Alt>F12" type="empty"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="empty"/>
|
||||
<property name="<Primary><Alt>End" type="empty"/>
|
||||
<property name="<Primary><Alt>Home" type="empty"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="empty"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_1" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_2" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_3" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_4" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_5" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_6" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_7" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_8" type="empty"/>
|
||||
<property name="<Primary><Alt>KP_9" type="empty"/>
|
||||
<property name="<Alt>space" type="empty"/>
|
||||
<property name="<Shift><Alt>Page_Up" type="empty"/>
|
||||
<property name="<Primary><Alt>Right" type="empty"/>
|
||||
<property name="<Primary><Alt>d" type="empty"/>
|
||||
<property name="<Primary><Alt>Up" type="empty"/>
|
||||
<property name="<Super>Tab" type="empty"/>
|
||||
<property name="<Primary>F1" type="empty"/>
|
||||
<property name="<Primary>F2" type="empty"/>
|
||||
<property name="<Primary>F3" type="empty"/>
|
||||
<property name="<Primary>F4" type="empty"/>
|
||||
<property name="<Primary>F5" type="empty"/>
|
||||
<property name="<Primary>F6" type="empty"/>
|
||||
<property name="<Primary>F7" type="empty"/>
|
||||
<property name="<Primary>F8" type="empty"/>
|
||||
<property name="<Primary>F9" type="empty"/>
|
||||
<property name="<Primary>F10" type="empty"/>
|
||||
<property name="<Primary>F11" type="empty"/>
|
||||
<property name="<Primary>F12" type="empty"/>
|
||||
<property name="<Super>KP_Left" type="empty"/>
|
||||
<property name="<Super>KP_Right" type="empty"/>
|
||||
<property name="<Super>KP_Down" type="empty"/>
|
||||
<property name="<Super>KP_Up" type="empty"/>
|
||||
<property name="<Super>KP_Page_Up" type="empty"/>
|
||||
<property name="<Super>KP_Home" type="empty"/>
|
||||
<property name="<Super>KP_End" type="empty"/>
|
||||
<property name="<Super>KP_Next" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="<Primary>F12" type="string" value="workspace_12_key"/>
|
||||
<property name="<Super>KP_Down" type="string" value="tile_down_key"/>
|
||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
||||
<property name="<Primary><Alt>KP_3" type="string" value="move_window_workspace_3_key"/>
|
||||
<property name="<Primary>F2" type="string" value="workspace_2_key"/>
|
||||
<property name="<Primary>F6" type="string" value="workspace_6_key"/>
|
||||
<property name="<Primary><Alt>Down" type="string" value="down_workspace_key"/>
|
||||
<property name="<Primary><Alt>KP_9" type="string" value="move_window_workspace_9_key"/>
|
||||
<property name="<Super>KP_Up" type="string" value="tile_up_key"/>
|
||||
<property name="<Primary><Alt>End" type="string" value="move_window_next_workspace_key"/>
|
||||
<property name="<Primary>F8" type="string" value="workspace_8_key"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
||||
<property name="<Super>KP_Right" type="string" value="tile_right_key"/>
|
||||
<property name="<Primary><Alt>KP_4" type="string" value="move_window_workspace_4_key"/>
|
||||
<property name="Right" type="string" value="right_key"/>
|
||||
<property name="Down" type="string" value="down_key"/>
|
||||
<property name="<Primary>F3" type="string" value="workspace_3_key"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
||||
<property name="<Primary>F9" type="string" value="workspace_9_key"/>
|
||||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
||||
<property name="<Primary><Alt>Right" type="string" value="right_workspace_key"/>
|
||||
<property name="<Alt>F6" type="string" value="stick_window_key"/>
|
||||
<property name="<Primary><Alt>KP_5" type="string" value="move_window_workspace_5_key"/>
|
||||
<property name="<Primary>F11" type="string" value="workspace_11_key"/>
|
||||
<property name="<Alt>F10" type="string" value="maximize_window_key"/>
|
||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
||||
<property name="<Super>Tab" type="string" value="switch_window_key"/>
|
||||
<property name="<Primary><Alt>d" type="string" value="show_desktop_key"/>
|
||||
<property name="<Primary>F4" type="string" value="workspace_4_key"/>
|
||||
<property name="<Super>KP_Page_Up" type="string" value="tile_up_right_key"/>
|
||||
<property name="<Alt>F7" type="string" value="move_window_key"/>
|
||||
<property name="Up" type="string" value="up_key"/>
|
||||
<property name="<Primary><Alt>KP_6" type="string" value="move_window_workspace_6_key"/>
|
||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
||||
<property name="<Alt>space" type="string" value="popup_menu_key"/>
|
||||
<property name="<Super>KP_Home" type="string" value="tile_up_left_key"/>
|
||||
<property name="Escape" type="string" value="cancel_key"/>
|
||||
<property name="<Primary><Alt>KP_1" type="string" value="move_window_workspace_1_key"/>
|
||||
<property name="<Super>KP_Next" type="string" value="tile_down_right_key"/>
|
||||
<property name="<Super>KP_Left" type="string" value="tile_left_key"/>
|
||||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/>
|
||||
<property name="<Primary><Alt>Home" type="string" value="move_window_prev_workspace_key"/>
|
||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
||||
<property name="<Primary><Alt>Left" type="string" value="left_workspace_key"/>
|
||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
||||
<property name="<Primary>F5" type="string" value="workspace_5_key"/>
|
||||
<property name="<Alt>F8" type="string" value="resize_window_key"/>
|
||||
<property name="<Primary><Alt>KP_7" type="string" value="move_window_workspace_7_key"/>
|
||||
<property name="<Primary><Alt>KP_2" type="string" value="move_window_workspace_2_key"/>
|
||||
<property name="<Super>KP_End" type="string" value="tile_down_left_key"/>
|
||||
<property name="<Primary><Alt>Up" type="string" value="up_workspace_key"/>
|
||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
||||
<property name="<Primary>F7" type="string" value="workspace_7_key"/>
|
||||
<property name="<Primary>F10" type="string" value="workspace_10_key"/>
|
||||
<property name="Left" type="string" value="left_key"/>
|
||||
<property name="<Primary><Alt>KP_8" type="string" value="move_window_workspace_8_key"/>
|
||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
||||
<property name="<Primary>F1" type="string" value="workspace_1_key"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="providers" type="array">
|
||||
<value type="string" value="xfwm4"/>
|
||||
<value type="string" value="commands"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-notifyd" version="1.0">
|
||||
<property name="log-max-size-enabled" type="bool" value="true"/>
|
||||
<property name="applications" type="empty">
|
||||
<property name="known_applications" type="array">
|
||||
<value type="string" value="org.freedesktop.network-manager-applet"/>
|
||||
<value type="string" value="org.xfce.Thunar"/>
|
||||
<value type="string" value="thunar-volman"/>
|
||||
<value type="string" value="拼音"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="date-time-custom-format" type="string" value="%a %H:%M:%S"/>
|
||||
</channel>
|
||||
@@ -0,0 +1,126 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-panel" version="1.0">
|
||||
<property name="configver" type="int" value="2"/>
|
||||
<property name="panels" type="array">
|
||||
<value type="int" value="1"/>
|
||||
<value type="int" value="2"/>
|
||||
<property name="dark-mode" type="bool" value="true"/>
|
||||
<property name="panel-1" type="empty">
|
||||
<property name="position" type="string" value="p=6;x=0;y=0"/>
|
||||
<property name="length" type="uint" value="100"/>
|
||||
<property name="position-locked" type="bool" value="true"/>
|
||||
<property name="icon-size" type="uint" value="16"/>
|
||||
<property name="size" type="uint" value="26"/>
|
||||
<property name="plugin-ids" type="array">
|
||||
<value type="int" value="1"/>
|
||||
<value type="int" value="2"/>
|
||||
<value type="int" value="3"/>
|
||||
<value type="int" value="5"/>
|
||||
<value type="int" value="6"/>
|
||||
<value type="int" value="21"/>
|
||||
<value type="int" value="7"/>
|
||||
<value type="int" value="8"/>
|
||||
<value type="int" value="9"/>
|
||||
<value type="int" value="10"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="panel-2" type="empty">
|
||||
<property name="autohide-behavior" type="uint" value="1"/>
|
||||
<property name="position" type="string" value="p=10;x=0;y=0"/>
|
||||
<property name="length" type="uint" value="1"/>
|
||||
<property name="position-locked" type="bool" value="true"/>
|
||||
<property name="size" type="uint" value="48"/>
|
||||
<property name="plugin-ids" type="array">
|
||||
<value type="int" value="11"/>
|
||||
<value type="int" value="12"/>
|
||||
<value type="int" value="13"/>
|
||||
<value type="int" value="14"/>
|
||||
<value type="int" value="15"/>
|
||||
<value type="int" value="16"/>
|
||||
<value type="int" value="17"/>
|
||||
<value type="int" value="18"/>
|
||||
</property>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugins" type="empty">
|
||||
<property name="plugin-1" type="string" value="applicationsmenu"/>
|
||||
<property name="plugin-2" type="string" value="tasklist">
|
||||
<property name="grouping" type="bool" value="false"/>
|
||||
<property name="flat-buttons" type="bool" value="false"/>
|
||||
<property name="show-labels" type="bool" value="true"/>
|
||||
<property name="show-handle" type="bool" value="false"/>
|
||||
<property name="show-tooltips" type="bool" value="true"/>
|
||||
<property name="sort-order" type="uint" value="1"/>
|
||||
<property name="middle-click" type="uint" value="1"/>
|
||||
<property name="show-wireframes" type="bool" value="false"/>
|
||||
<property name="include-all-workspaces" type="bool" value="true"/>
|
||||
<property name="show-only-minimized" type="bool" value="false"/>
|
||||
<property name="include-all-monitors" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="plugin-3" type="string" value="separator">
|
||||
<property name="expand" type="bool" value="true"/>
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-5" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-6" type="string" value="systray">
|
||||
<property name="square-icons" type="bool" value="true"/>
|
||||
<property name="known-items" type="array">
|
||||
<value type="string" value="baidunetdisk1"/>
|
||||
<value type="string" value="remmina-icon"/>
|
||||
<value type="string" value="ToDesk"/>
|
||||
<value type="string" value="sunlogin-client"/>
|
||||
<value type="string" value="Fcitx"/>
|
||||
<value type="string" value="TeamViewer"/>
|
||||
</property>
|
||||
<property name="known-legacy-items" type="array">
|
||||
<value type="string" value="以太网连接“有线连接 3”已激活"/>
|
||||
<value type="string" value="以太网连接“有线连接 1”已激活"/>
|
||||
</property>
|
||||
<property name="hide-new-items" type="bool" value="false"/>
|
||||
<property name="single-row" type="bool" value="false"/>
|
||||
<property name="icon-size" type="int" value="22"/>
|
||||
<property name="menu-is-primary" type="bool" value="false"/>
|
||||
<property name="symbolic-icons" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="plugin-7" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-8" type="string" value="clock"/>
|
||||
<property name="plugin-9" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-10" type="string" value="actions"/>
|
||||
<property name="plugin-11" type="string" value="showdesktop"/>
|
||||
<property name="plugin-12" type="string" value="separator"/>
|
||||
<property name="plugin-13" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="17637208851.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-14" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="17637208852.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-15" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="17637208853.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-16" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="17637208864.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-17" type="string" value="separator"/>
|
||||
<property name="plugin-18" type="string" value="directorymenu">
|
||||
<property name="base-directory" type="string" value="/home/smart"/>
|
||||
</property>
|
||||
<property name="plugin-21" type="string" value="pulseaudio">
|
||||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-power-manager" version="1.0">
|
||||
<property name="xfce4-power-manager" type="empty">
|
||||
<property name="power-button-action" type="uint" value="3"/>
|
||||
<property name="dpms-enabled" type="bool" value="false"/>
|
||||
<property name="general-notification" type="bool" value="true"/>
|
||||
<property name="lock-screen-suspend-hibernate" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-screensaver" version="1.0">
|
||||
<property name="saver" type="empty">
|
||||
<property name="mode" type="int" value="0"/>
|
||||
<property name="enabled" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="lock" type="empty">
|
||||
<property name="saver-activation" type="empty">
|
||||
<property name="delay" type="int" value="10"/>
|
||||
<property name="enabled" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="sleep-activation" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-session" version="1.0">
|
||||
<property name="general" type="empty">
|
||||
<property name="FailsafeSessionName" type="empty"/>
|
||||
<property name="LockCommand" type="empty"/>
|
||||
<property name="SessionName" type="string" value="Default"/>
|
||||
</property>
|
||||
<property name="sessions" type="empty">
|
||||
<property name="Failsafe" type="empty">
|
||||
<property name="IsFailsafe" type="empty"/>
|
||||
<property name="Count" type="empty"/>
|
||||
<property name="Client0_Command" type="empty"/>
|
||||
<property name="Client0_Priority" type="empty"/>
|
||||
<property name="Client0_PerScreen" type="empty"/>
|
||||
<property name="Client1_Command" type="empty"/>
|
||||
<property name="Client1_Priority" type="empty"/>
|
||||
<property name="Client1_PerScreen" type="empty"/>
|
||||
<property name="Client2_Command" type="empty"/>
|
||||
<property name="Client2_Priority" type="empty"/>
|
||||
<property name="Client2_PerScreen" type="empty"/>
|
||||
<property name="Client3_Command" type="empty"/>
|
||||
<property name="Client3_Priority" type="empty"/>
|
||||
<property name="Client3_PerScreen" type="empty"/>
|
||||
<property name="Client4_Command" type="empty"/>
|
||||
<property name="Client4_Priority" type="empty"/>
|
||||
<property name="Client4_PerScreen" type="empty"/>
|
||||
</property>
|
||||
<property name="FailsafeWayland" type="empty">
|
||||
<property name="IsFailsafe" type="empty"/>
|
||||
<property name="Count" type="empty"/>
|
||||
<property name="Client0_Command" type="empty"/>
|
||||
<property name="Client0_Priority" type="empty"/>
|
||||
<property name="Client0_PerScreen" type="empty"/>
|
||||
<property name="Client1_Command" type="empty"/>
|
||||
<property name="Client1_Priority" type="empty"/>
|
||||
<property name="Client1_PerScreen" type="empty"/>
|
||||
<property name="Client2_Command" type="empty"/>
|
||||
<property name="Client2_Priority" type="empty"/>
|
||||
<property name="Client2_PerScreen" type="empty"/>
|
||||
<property name="Client3_Command" type="empty"/>
|
||||
<property name="Client3_Priority" type="empty"/>
|
||||
<property name="Client3_PerScreen" type="empty"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="shutdown" type="empty">
|
||||
<property name="LockScreen" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-settings-editor" version="1.0">
|
||||
<property name="last" type="empty">
|
||||
<property name="window-width" type="int" value="746"/>
|
||||
<property name="window-height" type="int" value="546"/>
|
||||
<property name="paned-position" type="int" value="180"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-settings-manager" version="1.0">
|
||||
<property name="last" type="empty">
|
||||
<property name="window-width" type="int" value="762"/>
|
||||
<property name="window-height" type="int" value="596"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-taskmanager" version="1.0">
|
||||
<property name="window-maximized" type="bool" value="false"/>
|
||||
<property name="window-width" type="int" value="552"/>
|
||||
<property name="window-height" type="int" value="502"/>
|
||||
<property name="interface" type="empty">
|
||||
<property name="show-all-processes" type="bool" value="false"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,91 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfwm4" version="1.0">
|
||||
<property name="general" type="empty">
|
||||
<property name="activate_action" type="string" value="bring"/>
|
||||
<property name="borderless_maximize" type="bool" value="true"/>
|
||||
<property name="box_move" type="bool" value="false"/>
|
||||
<property name="box_resize" type="bool" value="false"/>
|
||||
<property name="button_layout" type="string" value="O|SHMC"/>
|
||||
<property name="button_offset" type="int" value="0"/>
|
||||
<property name="button_spacing" type="int" value="0"/>
|
||||
<property name="click_to_focus" type="bool" value="true"/>
|
||||
<property name="cycle_apps_only" type="bool" value="false"/>
|
||||
<property name="cycle_draw_frame" type="bool" value="true"/>
|
||||
<property name="cycle_raise" type="bool" value="false"/>
|
||||
<property name="cycle_hidden" type="bool" value="true"/>
|
||||
<property name="cycle_minimum" type="bool" value="true"/>
|
||||
<property name="cycle_minimized" type="bool" value="false"/>
|
||||
<property name="cycle_preview" type="bool" value="true"/>
|
||||
<property name="cycle_tabwin_mode" type="int" value="0"/>
|
||||
<property name="cycle_workspaces" type="bool" value="false"/>
|
||||
<property name="double_click_action" type="string" value="maximize"/>
|
||||
<property name="double_click_distance" type="int" value="5"/>
|
||||
<property name="double_click_time" type="int" value="250"/>
|
||||
<property name="easy_click" type="string" value="Alt"/>
|
||||
<property name="focus_delay" type="int" value="250"/>
|
||||
<property name="focus_hint" type="bool" value="true"/>
|
||||
<property name="focus_new" type="bool" value="true"/>
|
||||
<property name="frame_opacity" type="int" value="100"/>
|
||||
<property name="frame_border_top" type="int" value="0"/>
|
||||
<property name="full_width_title" type="bool" value="true"/>
|
||||
<property name="horiz_scroll_opacity" type="bool" value="false"/>
|
||||
<property name="inactive_opacity" type="int" value="100"/>
|
||||
<property name="maximized_offset" type="int" value="0"/>
|
||||
<property name="mousewheel_rollup" type="bool" value="true"/>
|
||||
<property name="move_opacity" type="int" value="95"/>
|
||||
<property name="placement_mode" type="string" value="center"/>
|
||||
<property name="placement_ratio" type="int" value="20"/>
|
||||
<property name="popup_opacity" type="int" value="100"/>
|
||||
<property name="prevent_focus_stealing" type="bool" value="false"/>
|
||||
<property name="raise_delay" type="int" value="250"/>
|
||||
<property name="raise_on_click" type="bool" value="true"/>
|
||||
<property name="raise_on_focus" type="bool" value="false"/>
|
||||
<property name="raise_with_any_button" type="bool" value="true"/>
|
||||
<property name="repeat_urgent_blink" type="bool" value="false"/>
|
||||
<property name="resize_opacity" type="int" value="96"/>
|
||||
<property name="scroll_workspaces" type="bool" value="true"/>
|
||||
<property name="shadow_delta_height" type="int" value="0"/>
|
||||
<property name="shadow_delta_width" type="int" value="0"/>
|
||||
<property name="shadow_delta_x" type="int" value="0"/>
|
||||
<property name="shadow_delta_y" type="int" value="-3"/>
|
||||
<property name="shadow_opacity" type="int" value="50"/>
|
||||
<property name="show_app_icon" type="bool" value="false"/>
|
||||
<property name="show_dock_shadow" type="bool" value="false"/>
|
||||
<property name="show_frame_shadow" type="bool" value="false"/>
|
||||
<property name="show_popup_shadow" type="bool" value="false"/>
|
||||
<property name="snap_resist" type="bool" value="false"/>
|
||||
<property name="snap_to_border" type="bool" value="true"/>
|
||||
<property name="snap_to_windows" type="bool" value="false"/>
|
||||
<property name="snap_width" type="int" value="10"/>
|
||||
<property name="vblank_mode" type="string" value="auto"/>
|
||||
<property name="theme" type="string" value="Default"/>
|
||||
<property name="tile_on_move" type="bool" value="true"/>
|
||||
<property name="title_alignment" type="string" value="center"/>
|
||||
<property name="title_font" type="string" value="Sans Bold 9"/>
|
||||
<property name="title_horizontal_offset" type="int" value="0"/>
|
||||
<property name="titleless_maximize" type="bool" value="false"/>
|
||||
<property name="title_shadow_active" type="string" value="false"/>
|
||||
<property name="title_shadow_inactive" type="string" value="false"/>
|
||||
<property name="title_vertical_offset_active" type="int" value="0"/>
|
||||
<property name="title_vertical_offset_inactive" type="int" value="0"/>
|
||||
<property name="toggle_workspaces" type="bool" value="false"/>
|
||||
<property name="unredirect_overlays" type="bool" value="true"/>
|
||||
<property name="urgent_blink" type="bool" value="false"/>
|
||||
<property name="use_compositing" type="bool" value="true"/>
|
||||
<property name="workspace_count" type="int" value="1"/>
|
||||
<property name="wrap_cycle" type="bool" value="true"/>
|
||||
<property name="wrap_layout" type="bool" value="true"/>
|
||||
<property name="wrap_resistance" type="int" value="10"/>
|
||||
<property name="wrap_windows" type="bool" value="false"/>
|
||||
<property name="wrap_workspaces" type="bool" value="false"/>
|
||||
<property name="zoom_desktop" type="bool" value="true"/>
|
||||
<property name="zoom_pointer" type="bool" value="true"/>
|
||||
<property name="workspace_names" type="array">
|
||||
<value type="string" value="工作区 1"/>
|
||||
<value type="string" value="工作区 2"/>
|
||||
<value type="string" value="工作区 3"/>
|
||||
<value type="string" value="工作区 4"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.1" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xsettings" version="1.0">
|
||||
<property name="Net" type="empty">
|
||||
<property name="ThemeName" type="empty"/>
|
||||
<property name="IconThemeName" type="empty"/>
|
||||
<property name="DoubleClickTime" type="empty"/>
|
||||
<property name="DoubleClickDistance" type="empty"/>
|
||||
<property name="DndDragThreshold" type="empty"/>
|
||||
<property name="CursorBlink" type="empty"/>
|
||||
<property name="CursorBlinkTime" type="empty"/>
|
||||
<property name="SoundThemeName" type="empty"/>
|
||||
<property name="EnableEventSounds" type="empty"/>
|
||||
<property name="EnableInputFeedbackSounds" type="empty"/>
|
||||
</property>
|
||||
<property name="Xft" type="empty">
|
||||
<property name="DPI" type="empty"/>
|
||||
<property name="Antialias" type="empty"/>
|
||||
<property name="Hinting" type="empty"/>
|
||||
<property name="HintStyle" type="empty"/>
|
||||
<property name="RGBA" type="empty"/>
|
||||
</property>
|
||||
<property name="Gtk" type="empty">
|
||||
<property name="CanChangeAccels" type="empty"/>
|
||||
<property name="ColorPalette" type="empty"/>
|
||||
<property name="FontName" type="empty"/>
|
||||
<property name="MonospaceFontName" type="empty"/>
|
||||
<property name="IconSizes" type="empty"/>
|
||||
<property name="KeyThemeName" type="empty"/>
|
||||
<property name="MenuImages" type="empty"/>
|
||||
<property name="ButtonImages" type="empty"/>
|
||||
<property name="MenuBarAccel" type="empty"/>
|
||||
<property name="CursorThemeName" type="empty"/>
|
||||
<property name="CursorThemeSize" type="empty"/>
|
||||
<property name="DecorationLayout" type="string" value="icon,menu:minimize,maximize,close"/>
|
||||
<property name="DialogsUseHeader" type="empty"/>
|
||||
<property name="TitlebarMiddleClick" type="empty"/>
|
||||
</property>
|
||||
<property name="Gdk" type="empty">
|
||||
<property name="WindowScalingFactor" type="empty"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -0,0 +1,5 @@
|
||||
[Desktop Entry]
|
||||
Name=TMS
|
||||
Comment=TMS applications
|
||||
Icon=/home/smart/.tms3/starter/314.png
|
||||
Type=Directory
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
||||
1
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"schema":6,"addons":[{"id":"langpack-zh-CN@firefox.mozilla.org","icons":{"32":"https://addons.mozilla.org/static-server/img/addon-icons/default-32.png","64":"https://addons.mozilla.org/static-server/img/addon-icons/default-64.png","128":"https://addons.mozilla.org/static-server/img/addon-icons/default-128.png"},"name":"Chinese Simplified (zh-CN) Language Pack","version":"147.0.20251208.163038","sourceURI":"https://addons.mozilla.org/firefox/downloads/file/4637927/chinese_simplified_zh_cn_la-147.0.20251208.163038.xpi","homepageURL":null,"supportURL":null,"amoListingURL":"https://addons.mozilla.org/zh-CN/firefox/addon/chinese-simplified-zh-cn-la/","description":"Chinese Simplified (zh-CN) Language Pack","fullDescription":null,"weeklyDownloads":80,"type":"locale","creator":{"name":"Firefox","url":"https://addons.mozilla.org/zh-CN/firefox/user/4757633/"},"developers":[],"screenshots":[],"contributionURL":"","averageRating":4.5621,"reviewCount":49,"reviewURL":"https://addons.mozilla.org/zh-CN/firefox/addon/chinese-simplified-zh-cn-la/reviews/","updateDate":1765222275000}]}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
{"version":1,"listeners":{"remote-settings/monitor_changes":{"version":"\"1765307376617\"","sourceInfo":{"moduleURI":"resource://services-settings/remote-settings.sys.mjs","symbolName":"remoteSettingsBroadcastHandler"}}}}
|
||||
BIN
archiso/airootfs/home/smart/.mozilla/firefox/96ynxzd1.default-release/cert9.db
Executable file
BIN
archiso/airootfs/home/smart/.mozilla/firefox/96ynxzd1.default-release/cert9.db
Executable file
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
# PSM Certificate Override Settings file
|
||||
# This is a generated file! Do not edit.
|
||||
@@ -0,0 +1,5 @@
|
||||
[Compatibility]
|
||||
LastVersion=145.0_20251115020857/20251115020857
|
||||
LastOSABI=Linux_x86_64-gcc3
|
||||
LastPlatformDir=/usr/lib/firefox
|
||||
LastAppDir=/usr/lib/firefox/browser
|
||||
@@ -0,0 +1 @@
|
||||
{"version":5,"lastUserContextId":5,"identities":[{"userContextId":1,"public":true,"icon":"fingerprint","color":"blue","telemetryId":1,"l10nId":"user-context-personal"},{"userContextId":2,"public":true,"icon":"briefcase","color":"orange","telemetryId":2,"l10nId":"user-context-work"},{"userContextId":3,"public":true,"icon":"dollar","color":"green","telemetryId":3,"l10nId":"user-context-banking"},{"userContextId":4,"public":true,"icon":"cart","color":"pink","telemetryId":4,"l10nId":"user-context-shopping"},{"userContextId":5,"public":false,"icon":"","color":"","name":"userContextIdInternal.thumbnail"},{"userContextId":4294967295,"public":false,"icon":"","color":"","name":"userContextIdInternal.webextStorageLocal"}]}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user