Minimized packages
This commit is contained in:
@@ -1,157 +0,0 @@
|
||||
// Debian automatic APT upgrades configuration (unattended-upgrades)
|
||||
// Unattended-Upgrade::Origins-Pattern controls which packages are
|
||||
// upgraded.
|
||||
//
|
||||
// Lines below have the format format is "keyword=value,...". A
|
||||
// package will be upgraded only if the values in its metadata match
|
||||
// all the supplied keywords in a line. (In other words, omitted
|
||||
// keywords are wild cards.) The keywords originate from the Release
|
||||
// file, but several aliases are accepted. The accepted keywords are:
|
||||
// a,archive,suite (eg, "stable")
|
||||
// c,component (eg, "main", "contrib", "non-free")
|
||||
// l,label (eg, "Debian", "Debian-Security")
|
||||
// o,origin (eg, "Debian", "Unofficial Multimedia Packages")
|
||||
// n,codename (eg, "jessie", "jessie-updates")
|
||||
// site (eg, "http.debian.net")
|
||||
// The available values on the system are printed by the command
|
||||
// "apt-cache policy", and can be debugged by running
|
||||
// "unattended-upgrades -d" and looking at the log file.
|
||||
//
|
||||
// Within lines unattended-upgrades allows 2 macros whose values are
|
||||
// derived from /etc/debian_version:
|
||||
// ${distro_id} Installed origin.
|
||||
// ${distro_codename} Installed codename (eg, "bullseye")
|
||||
Unattended-Upgrade::Origins-Pattern {
|
||||
// Codename based matching:
|
||||
// This will follow the migration of a release through different
|
||||
// archives (e.g. from testing to stable and later oldstable).
|
||||
// Software will be the latest available for the named release,
|
||||
// but the Debian release itself will not be automatically upgraded.
|
||||
"origin=Debian,codename=${distro_codename}-updates";
|
||||
"origin=Debian,codename=${distro_codename}-proposed-updates";
|
||||
"origin=Debian,codename=${distro_codename},label=Debian";
|
||||
"origin=Debian,codename=${distro_codename},label=Debian-Security";
|
||||
"origin=Debian,codename=${distro_codename},label=Debian Backports";
|
||||
|
||||
// Archive or Suite based matching:
|
||||
// Note that this will silently match a different release after
|
||||
// migration to the specified archive (e.g. testing becomes the
|
||||
// new stable).
|
||||
// "o=Debian,a=stable";
|
||||
// "o=Debian,a=stable-updates";
|
||||
// "o=Debian,a=proposed-updates";
|
||||
// "o=Debian Backports,a=${distro_codename}-backports,l=Debian Backports";
|
||||
};
|
||||
|
||||
// Python regular expressions, matching packages to exclude from upgrading
|
||||
Unattended-Upgrade::Package-Blacklist {
|
||||
// The following matches all packages starting with linux-
|
||||
// "linux-";
|
||||
|
||||
// Use $ to explicitely define the end of a package name. Without
|
||||
// the $, "libc6" would match all of them.
|
||||
// "libc6$";
|
||||
// "libc6-dev$";
|
||||
// "libc6-i686$";
|
||||
|
||||
// Special characters need escaping
|
||||
// "libstdc\+\+6$";
|
||||
|
||||
// The following matches packages like xen-system-amd64, xen-utils-4.1,
|
||||
// xenstore-utils and libxenstore3.0
|
||||
// "(lib)?xen(store)?";
|
||||
|
||||
// For more information about Python regular expressions, see
|
||||
// https://docs.python.org/3/howto/regex.html
|
||||
};
|
||||
|
||||
// This option allows you to control if on a unclean dpkg exit
|
||||
// unattended-upgrades will automatically run
|
||||
// dpkg --force-confold --configure -a
|
||||
// The default is true, to ensure updates keep getting installed
|
||||
//Unattended-Upgrade::AutoFixInterruptedDpkg "true";
|
||||
|
||||
// Split the upgrade into the smallest possible chunks so that
|
||||
// they can be interrupted with SIGTERM. This makes the upgrade
|
||||
// a bit slower but it has the benefit that shutdown while a upgrade
|
||||
// is running is possible (with a small delay)
|
||||
Unattended-Upgrade::MinimalSteps "true";
|
||||
|
||||
// Install all updates when the machine is shutting down
|
||||
// instead of doing it in the background while the machine is running.
|
||||
// This will (obviously) make shutdown slower.
|
||||
// Unattended-upgrades increases logind's InhibitDelayMaxSec to 30s.
|
||||
// This allows more time for unattended-upgrades to shut down gracefully
|
||||
// or even install a few packages in InstallOnShutdown mode, but is still a
|
||||
// big step back from the 30 minutes allowed for InstallOnShutdown previously.
|
||||
// Users enabling InstallOnShutdown mode are advised to increase
|
||||
// InhibitDelayMaxSec even further, possibly to 30 minutes.
|
||||
//Unattended-Upgrade::InstallOnShutdown "false";
|
||||
|
||||
// Send email to this address for problems or packages upgrades
|
||||
// If empty or unset then no email is sent, make sure that you
|
||||
// have a working mail setup on your system. A package that provides
|
||||
// 'mailx' must be installed. E.g. "user@example.com"
|
||||
Unattended-Upgrade::Mail "root";
|
||||
|
||||
// Set this value to "true" to get emails only on errors. Default
|
||||
// is to always send a mail if Unattended-Upgrade::Mail is set
|
||||
Unattended-Upgrade::MailOnlyOnError "true";
|
||||
|
||||
// Remove unused automatically installed kernel-related packages
|
||||
// (kernel images, kernel headers and kernel version locked tools).
|
||||
//Unattended-Upgrade::Remove-Unused-Kernel-Packages "true";
|
||||
|
||||
// Do automatic removal of newly unused dependencies after the upgrade
|
||||
//Unattended-Upgrade::Remove-New-Unused-Dependencies "true";
|
||||
|
||||
// Do automatic removal of unused packages after the upgrade
|
||||
// (equivalent to apt-get autoremove)
|
||||
//Unattended-Upgrade::Remove-Unused-Dependencies "false";
|
||||
|
||||
// Automatically reboot *WITHOUT CONFIRMATION* if
|
||||
// the file /var/run/reboot-required is found after the upgrade
|
||||
//Unattended-Upgrade::Automatic-Reboot "false";
|
||||
|
||||
// Automatically reboot even if there are users currently logged in
|
||||
// when Unattended-Upgrade::Automatic-Reboot is set to true
|
||||
//Unattended-Upgrade::Automatic-Reboot-WithUsers "true";
|
||||
|
||||
// If automatic reboot is enabled and needed, reboot at the specific
|
||||
// time instead of immediately
|
||||
// Default: "now"
|
||||
//Unattended-Upgrade::Automatic-Reboot-Time "02:00";
|
||||
|
||||
// Use apt bandwidth limit feature, this example limits the download
|
||||
// speed to 70kb/sec
|
||||
//Acquire::http::Dl-Limit "70";
|
||||
|
||||
// Enable logging to syslog. Default is False
|
||||
Unattended-Upgrade::SyslogEnable "true";
|
||||
|
||||
// Specify syslog facility. Default is daemon
|
||||
// Unattended-Upgrade::SyslogFacility "daemon";
|
||||
|
||||
// Download and install upgrades only on AC power
|
||||
// (i.e. skip or gracefully stop updates on battery)
|
||||
// Unattended-Upgrade::OnlyOnACPower "true";
|
||||
|
||||
// Download and install upgrades only on non-metered connection
|
||||
// (i.e. skip or gracefully stop updates on a metered connection)
|
||||
// Unattended-Upgrade::Skip-Updates-On-Metered-Connections "true";
|
||||
|
||||
// Verbose logging
|
||||
// Unattended-Upgrade::Verbose "false";
|
||||
|
||||
// Print debugging information both in unattended-upgrades and
|
||||
// in unattended-upgrade-shutdown
|
||||
// Unattended-Upgrade::Debug "false";
|
||||
|
||||
// automatically update package lists
|
||||
APT::Periodic::Update-Package-Lists "1";
|
||||
// automatically download upgradeable packages
|
||||
APT::Periodic::Download-Upgradeable-Packages "1";
|
||||
// Do "apt-get autoclean" every n-days (0=disable)
|
||||
APT::Periodic::AutocleanInterval "7";
|
||||
// automatically run package upgrades
|
||||
APT::Periodic::Unattended-Upgrade "1";
|
||||
@@ -1,2 +0,0 @@
|
||||
# Uncomment to receive updates fro packages installed from https://nodiscc.gitlab.io/toolbox
|
||||
#deb https://nodiscc.gitlab.io/toolbox/ bullseye main
|
||||
@@ -3,7 +3,7 @@
|
||||
# Consult the keyboard(5) manual page.
|
||||
|
||||
XKBMODEL="pc104"
|
||||
XKBLAYOUT="fr"
|
||||
XKBLAYOUT="us,fr"
|
||||
XKBVARIANT="oss"
|
||||
XKBOPTIONS=""
|
||||
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../conf.avail/10-unhinted.conf
|
||||
8
config/includes.chroot/etc/fonts/conf.d/10-unhinted.conf
Normal file
8
config/includes.chroot/etc/fonts/conf.d/10-unhinted.conf
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<fontconfig>
|
||||
<!-- Disable hinting -->
|
||||
<match target="font">
|
||||
<edit name="hinting" mode="assign"><bool>false</bool></edit>
|
||||
</match>
|
||||
</fontconfig>
|
||||
@@ -1 +0,0 @@
|
||||
../conf.avail/11-lcdfilter-default.conf
|
||||
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<fontconfig>
|
||||
<!-- Use lcddefault as default for LCD filter -->
|
||||
<match target="font">
|
||||
<edit mode="assign" name="lcdfilter">
|
||||
<const>lcddefault</const>
|
||||
</edit>
|
||||
</match>
|
||||
</fontconfig>
|
||||
@@ -1 +0,0 @@
|
||||
../conf.avail/42-antialias.conf
|
||||
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0"?>
|
||||
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
|
||||
<fontconfig>
|
||||
<match target="font">
|
||||
<edit name="antialias" mode="assign"><bool>true</bool></edit>
|
||||
</match>
|
||||
</fontconfig>
|
||||
@@ -1,2 +1 @@
|
||||
en_US.UTF-8 UTF-8
|
||||
fr_FR.UTF-8 UTF-8
|
||||
|
||||
@@ -62,6 +62,3 @@ SHOWFREEDSPACE
|
||||
en
|
||||
en_US
|
||||
en_US.UTF-8
|
||||
fr
|
||||
fr_FR
|
||||
fr_FR.UTF-8
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
# Administrator customizations go in this file
|
||||
[Daemon]
|
||||
Theme=homeworld
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 20 KiB |
@@ -1,4 +0,0 @@
|
||||
[GUI]
|
||||
ShowSplashScreen=1
|
||||
[Theme]
|
||||
LoadAtStart=1
|
||||
@@ -1,103 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
#shortcuts
|
||||
alias d="colordiff" #pretty diffs
|
||||
alias n="nano" # nano text editor
|
||||
alias m="mousepad" # mousepad text editor
|
||||
alias o="xdg-open" # open file with associated program
|
||||
alias encrypt="gpg -c" # encrypt file with GPG
|
||||
alias decrypt="gpg -d" # decrypt GPG encrypted file
|
||||
alias chx='chmod a+x' # set execute permission
|
||||
alias clipboard='xclip -selection c; notify-send --icon=gtk-paste "Copied to clipboard." 2>/dev/null' # send stdin to clipboard
|
||||
function f { find ./ -name "*$1*"; } # find files in the currect directory
|
||||
function psg { ps -fp $(pgrep -f "$@"); } # find running process matching a name
|
||||
# alias rm="trash-put" # do not delete files with rm, put them to trash
|
||||
# alias frm="\rm" # add an alias for rm
|
||||
# alias mkdir='mkdir -pv' # create directories and their parents by default
|
||||
|
||||
#ls and grep aliases
|
||||
if [ -x /usr/bin/dircolors ]; then
|
||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||
alias ls='ls -F --color=auto'
|
||||
alias ll='ls -lhF --color=auto'
|
||||
alias ls='ls -F --color=auto'
|
||||
alias grep='grep --color=auto'
|
||||
alias fgrep='fgrep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
fi
|
||||
|
||||
# Aliases for going up multiple directories
|
||||
# alias .1='cd ../'
|
||||
# alias .2='cd ../../'
|
||||
# alias .3='cd ../../../'
|
||||
# alias .4='cd ../../../../'
|
||||
# alias .5='cd ../../../../../'
|
||||
|
||||
#load autojump
|
||||
if [ -f /usr/share/autojump/autojump.sh ]; then . /usr/share/autojump/autojump.sh; fi
|
||||
|
||||
#use a colored prompt
|
||||
force_color_prompt=yes
|
||||
|
||||
# Prevent ">" from overwriting existing files, use ">|" instead
|
||||
set -o noclobber
|
||||
|
||||
# Append commands to history file instead of overwriting it
|
||||
shopt -s histappend
|
||||
|
||||
# Don't put duplicate lines in the history and do not add lines that start with a space
|
||||
export HISTCONTROL=erasedups:ignoredups:ignorespace
|
||||
|
||||
# History length and file size
|
||||
#HISTSIZE=1000
|
||||
#HISTFILESIZE=2000
|
||||
|
||||
# Use windows-style (cycling) Tab-completion (default disabled)
|
||||
#bind '"\t":menu-complete'
|
||||
|
||||
# Automatically correct typos in directories names
|
||||
#shopt -s cdspell
|
||||
|
||||
# Check recursively for subdirectories when using cd
|
||||
#export CDPATH=.:~
|
||||
|
||||
# Automatically cd to a directory when you enter it's name on its own
|
||||
#shopt -s autocd
|
||||
|
||||
# Check the window size after each command and, if necessary, update the values of LINES and COLUMNS
|
||||
#shopt -s checkwinsize
|
||||
|
||||
# Ignore case on auto-completion
|
||||
#bind "set completion-ignore-case on"; fi
|
||||
#bind "set show-all-if-ambiguous On"; fi
|
||||
|
||||
# show a ✔ or ✕ symbol before the prompt depending on return code of previous command
|
||||
# $(__exit_code_block) must be added to your $PS1
|
||||
#function __exit_code_block() {
|
||||
# if [[ "$?" == 0 ]]; then echo -e "✔ ";
|
||||
# else echo -e "✕ "; fi
|
||||
#}
|
||||
|
||||
####### Colored manpages ##########
|
||||
export LESS_TERMCAP_mb=$'\E[01;31m' # begin blinking
|
||||
export LESS_TERMCAP_md=$'\E[01;38;5;74m' # begin bold
|
||||
export LESS_TERMCAP_me=$'\E[0m' # end mode
|
||||
export LESS_TERMCAP_se=$'\E[0m' # end standout-mode
|
||||
export LESS_TERMCAP_so=$'\E[36;7;246m' # begin standout-mode - info box
|
||||
export LESS_TERMCAP_ue=$'\E[0m' # end underline
|
||||
export LESS_TERMCAP_us=$'\E[04;38;5;146m' # begin underline
|
||||
|
||||
# Syntax colors in less (possibly insecure, disabled)
|
||||
# if [ -f /usr/share/source-highlight/src-hilite-lesspipe.sh ]
|
||||
# then
|
||||
# export LESSOPEN="| /usr/share/source-highlight/src-hilite-lesspipe.sh %s"
|
||||
# export LESS=' -R '
|
||||
# fi
|
||||
|
||||
|
||||
#git prompt configuration
|
||||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w $(__git_ps1 "(%s)")\[\033[00m\]\$ '
|
||||
GIT_PS1_SHOWDIRTYSTATE=1
|
||||
GIT_PS1_SHOWSTASHSTATE=1
|
||||
GIT_PS1_SHOWUNTRACKEDFILES=1
|
||||
GIT_PS1_SHOWUPSTREAM="auto"
|
||||
@@ -1,47 +0,0 @@
|
||||
<?xml encoding="UTF-8" version="1.0"?>
|
||||
<actions>
|
||||
<action>
|
||||
<icon>utilities-terminal</icon>
|
||||
<name>Open terminal here</name>
|
||||
<unique-id>1376925988838423-2</unique-id>
|
||||
<command>exo-open --working-directory %f --launch TerminalEmulator</command>
|
||||
<description>Open a terminal emulator window</description>
|
||||
<patterns>*</patterns>
|
||||
<startup-notify/>
|
||||
<directories/>
|
||||
</action>
|
||||
<action>
|
||||
<icon>system-search</icon>
|
||||
<name>Search...</name>
|
||||
<unique-id>1376145324304167-1</unique-id>
|
||||
<command>catfish %f</command>
|
||||
<description>Search files and directories</description>
|
||||
<patterns>*</patterns>
|
||||
<directories/>
|
||||
</action>
|
||||
<action>
|
||||
<icon>deja-dup</icon>
|
||||
<name>Restore files...</name>
|
||||
<unique-id>1623864079910491-1</unique-id>
|
||||
<command>deja-dup --restore %F</command>
|
||||
<description>Restore files from backups</description>
|
||||
<patterns>*</patterns>
|
||||
<startup-notify/>
|
||||
<directories/>
|
||||
<audio-files/>
|
||||
<image-files/>
|
||||
<other-files/>
|
||||
<text-files/>
|
||||
<video-files/>
|
||||
</action>
|
||||
<action>
|
||||
<icon>disk-usage-analyzer</icon>
|
||||
<name>Analyze disk usage</name>
|
||||
<unique-id>1630524112313436-1</unique-id>
|
||||
<command>baobab %f</command>
|
||||
<description>Analyze disk usage by subdirectory under this directory</description>
|
||||
<patterns>*</patterns>
|
||||
<startup-notify/>
|
||||
<directories/>
|
||||
</action>
|
||||
</actions>
|
||||
@@ -1,4 +0,0 @@
|
||||
[Qt]
|
||||
font="Roboto,10,-1,5,50,0,0,0,0,0"
|
||||
style=GTK+
|
||||
GUIEffects=none
|
||||
@@ -1,11 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=Conky
|
||||
Comment=Display information on your desktop
|
||||
Exec=conky -p 20
|
||||
Icon=user-desktop
|
||||
Path=
|
||||
Terminal=false
|
||||
StartupNotify=false
|
||||
Hidden=true
|
||||
@@ -1,123 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=GPG Password Agent
|
||||
Name[af]=GPG-wagwoordagent
|
||||
Name[ar]=عميل كلمة السر GPG
|
||||
Name[as]=GPG পাছৱাৰ্ড সহায়ক
|
||||
Name[ast]=Axente de contraseñes GPG
|
||||
Name[be]=GPG-агент пароляў
|
||||
Name[bg]=Агент за пароли на GPG
|
||||
Name[bn]=GPG পাসওয়ার্ড এজেন্ট
|
||||
Name[ca]=Agent de contrasenyes GPG
|
||||
Name[ca@valencia]=Agent de contrasenyes GPG
|
||||
Name[cs]=Agent hesel GPG
|
||||
Name[da]=GPG-adgangskodeagent
|
||||
Name[de]=GPG-Passwort-Agent
|
||||
Name[el]=Πρόγραμμα κωδικού GPG
|
||||
Name[en_GB]=GPG Password Agent
|
||||
Name[es]=Agente de contraseñas GPG
|
||||
Name[et]=GPG-võtmete agent
|
||||
Name[eu]=GPG pasahitzaren agentea
|
||||
Name[fa]=مامور گذرواژه GPG
|
||||
Name[fi]=GPG-salasanojen agentti
|
||||
Name[fr]=Agent de mot de passe GPG
|
||||
Name[gl]=Axente de contrasinais GPG
|
||||
Name[gu]=GPG પાસવર્જ ઍજન્ટ
|
||||
Name[he]=סוכן ססמאות ה־PGP
|
||||
Name[hu]=GPG jelszóügynök
|
||||
Name[id]=Agen Sandi GPG
|
||||
Name[it]=Agente password GPG
|
||||
Name[ja]=GPG パスワードエージェント
|
||||
Name[km]=ភ្នាក់ងារពាក្យសម្ងាត់របស់ GPG
|
||||
Name[ko]=GPG 암호 에이전트
|
||||
Name[lt]=GPG slaptažodžių agentas
|
||||
Name[lv]=GPG paroles aģents
|
||||
Name[mk]=Агент за лозинки за GPG
|
||||
Name[nb]=GPG passordagent
|
||||
Name[nl]=GPG-wachtwoordagent
|
||||
Name[nn]=Passordagent for GPG
|
||||
Name[pa]=GPG ਪਾਸਵਰਡ ਏਜੰਟ
|
||||
Name[pl]=Agent hasła GPG
|
||||
Name[pt]=Agente de Senha GPG
|
||||
Name[pt_BR]=Agente de senha GPG
|
||||
Name[ro]=Agent parole GPG
|
||||
Name[ru]=Агент пароля GPG
|
||||
Name[sl]=GPG agent gesel
|
||||
Name[sr]=Агент за ГПГ лозинке
|
||||
Name[sr@latin]=Agent za GPG lozinke
|
||||
Name[sv]=GPG-lösenordsagent
|
||||
Name[ta]=ஜிபிஜி கடவுச்சொல்லின் பலம்
|
||||
Name[te]=GPG సంకేతపదం వాహకం
|
||||
Name[th]=เอเจนต์รหัสผ่าน GPG
|
||||
Name[tr]=GPG Parola Aracı
|
||||
Name[ug]=GPG ئىم ياردەمچىسى
|
||||
Name[uk]=Агента паролів GPG
|
||||
Name[vi]=Agent cho mật khẩu GPG
|
||||
Name[zh_CN]=GPG 密码代理
|
||||
Name[zh_HK]=GPG 密碼代理程式
|
||||
Name[zh_TW]=GPG 密碼代理程式
|
||||
Comment=GNOME Keyring: GPG Agent
|
||||
Comment[af]=GNOME-sleutelring: GPG-agent
|
||||
Comment[ar]=حلقة مفاتيح جنوم: عميل GPG
|
||||
Comment[as]=GNOME Keyring: GPG সহায়ক
|
||||
Comment[ast]=Aniellu de claves de GNOME: Axente GPG
|
||||
Comment[be]=Вязкі ключоў GNOME: GPG-агент
|
||||
Comment[bg]=Ключодържател на GNOME: агент на GPG
|
||||
Comment[bn]=GNOME কীরিং: GPG এজেন্ট
|
||||
Comment[ca]=Anell de claus del GNOME: agent GPG
|
||||
Comment[ca@valencia]=Anell de claus del GNOME: agent GPG
|
||||
Comment[cs]=Klíčenka GNOME: Agent GPG
|
||||
Comment[da]=GNOME-nøglering: GPG-agent
|
||||
Comment[de]=GNOME-Schlüsselbunddienst: GPG-Agent
|
||||
Comment[el]=Κλειδοθήκη GNOME: Πράκτορας (agent) GPG
|
||||
Comment[en_GB]=GNOME Keyring: GPG Agent
|
||||
Comment[es]=Depósito de claves de GNOME: agente GPG
|
||||
Comment[et]=GNOME võtmerõngas: GPG-agent
|
||||
Comment[eu]=GNOMEren gako-sorta: GPG agentea
|
||||
Comment[fa]=دستهکلید گنوم: مامور GPG
|
||||
Comment[fi]=Gnomen avainnippu: GPG-agentti
|
||||
Comment[fr]=Trousseau de clés GNOME : agent GPG
|
||||
Comment[gl]=Anel de chaves de GNOME: axente GPG
|
||||
Comment[gu]=GNOME કીરીંગ: GPG ઍજન્ટ
|
||||
Comment[he]=קבוצת מפתחות GNOME: סוכן GPG
|
||||
Comment[hu]=GNOME kulcstartó: GPG-ügynök
|
||||
Comment[id]=Ring Kunci GNOME: Agen GPG
|
||||
Comment[it]=Portachiavi di GNOME: agente GPG
|
||||
Comment[ja]=GNOME キーリング: GPG エージェント
|
||||
Comment[km]=GNOME Keyring ៖ ភ្នាក់ងារ GPG
|
||||
Comment[ko]=그놈 키 모음: GPG 에이전트
|
||||
Comment[lt]=GNOME raktinė: GPG agentas
|
||||
Comment[lv]=GNOME Keyring: GPG aģents
|
||||
Comment[mk]=Приврзок за GNOME: GPG агент
|
||||
Comment[nb]=GNOME nøkkelring: GPG-agent
|
||||
Comment[nl]=Gnome-sleutelbos: GPG-agent
|
||||
Comment[nn]=GNOME Nøkkelring: GPG-agent
|
||||
Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ: GPG ਏਜੰਟ
|
||||
Comment[pl]=Baza kluczy dla środowiska GNOME: agent GPG
|
||||
Comment[pt]=GNOME Keyring: Agente GPG
|
||||
Comment[pt_BR]=Chaveiro do GNOME: Agente GPG
|
||||
Comment[ro]=Inelul de chei GNOME: Agent GPG
|
||||
Comment[ru]=Связка ключей GNOME: GPG-агент
|
||||
Comment[sl]=GNOME zbirka ključev: GPG agent
|
||||
Comment[sr]=Гномови привесци: ГПГ агент
|
||||
Comment[sr@latin]=Gnomovi privesci: GPG agent
|
||||
Comment[sv]=GNOME-nyckelring: GPG-agent
|
||||
Comment[ta]=GNOME கீரிங்: ஜிபிஜி முகவர்
|
||||
Comment[te]=GNOME కీరింగ్: GPG వాహకం
|
||||
Comment[th]=พวงกุญแจของ GNOME: เอเจนต์ GPG
|
||||
Comment[tr]=GNOME Anahtarlığı: GPG Aracı
|
||||
Comment[ug]=NOME ئاچقۇچ ھالقىسى:GPG ياردەمچىسى
|
||||
Comment[uk]=Служба в'язки ключів GNOME: агент GPG
|
||||
Comment[vi]=Vòng Khoá GNOME: GPG Agent
|
||||
Comment[zh_CN]=GNOME 密钥环:GPG 代理
|
||||
Comment[zh_HK]=GNOME 密碼匙圈:GPG 代理程式
|
||||
Comment[zh_TW]=GNOME 鑰匙圈:GPG 代理程式
|
||||
Exec=/usr/bin/gnome-keyring-daemon --start --components=gpg
|
||||
OnlyShowIn=GNOME;Unity;
|
||||
X-GNOME-Autostart-Phase=Initialization
|
||||
X-GNOME-AutoRestart=false
|
||||
X-GNOME-Autostart-Notify=true
|
||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||
X-GNOME-Bugzilla-Product=gnome-keyring
|
||||
X-GNOME-Bugzilla-Component=general
|
||||
X-GNOME-Bugzilla-Version=3.4.1
|
||||
@@ -1,127 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Certificate and Key Storage
|
||||
Name[af]=Sertifikaat- en sleutelberging
|
||||
Name[ar]=مخزن الشهادات والمفاتيح
|
||||
Name[as]=প্ৰমাণপত্ৰ আৰু চাবি সংৰক্ষণ
|
||||
Name[ast]=Certificaos y almacenamientu de claves
|
||||
Name[be]=Сховішча сертыфікатаў і ключоў
|
||||
Name[bg]=Съхранение на сертификати и ключове
|
||||
Name[bn]=সার্টিফিকেট এবং কী স্টোরেজ
|
||||
Name[ca]=Magatzem de certificats i de claus
|
||||
Name[ca@valencia]=Magatzem de certificats i de claus
|
||||
Name[cs]=Odemknout certifikáty a umístění klíčů
|
||||
Name[da]=Certifikat- og nøglelager
|
||||
Name[de]=Zertifikat-/Schlüsselverwahrung
|
||||
Name[el]=Αποθήκη πιστοποιητικών και κλειδιών
|
||||
Name[en_GB]=Certificate and Key Storage
|
||||
Name[eo]=Memorejo de atestiloj kaj ŝlosiloj
|
||||
Name[es]=Certificados y almacenamiento de claves
|
||||
Name[et]=Sertifikaadi- ja võtmehoidla
|
||||
Name[eu]=Ziurtagirien/gakoen biltegia
|
||||
Name[fa]=مخزن گواهینامه و کلید
|
||||
Name[fi]=Varmenne- ja avainsäilö
|
||||
Name[fr]=Stockage de certificats et de clés
|
||||
Name[gl]=Almacenamento de chave ou certificado
|
||||
Name[gu]=પ્રમાણપત્ર અને કી સંગ્રહ
|
||||
Name[he]=אחסון תעודה ומפתח
|
||||
Name[hu]=Tanúsítvány- és kulcstároló
|
||||
Name[id]=Penyimpanan Kunci dan Sertifikat
|
||||
Name[it]=Archivio certificati e chiavi
|
||||
Name[ja]=証明書および鍵を格納するストレージ
|
||||
Name[km]=វិញ្ញាបនបត្រ និងការផ្ទុកសោ
|
||||
Name[ko]=인증서 및 키 저장소
|
||||
Name[lt]=Liudijimų ir raktų saugykla
|
||||
Name[lv]=Sertifikātu un atslēgu glabātava
|
||||
Name[mk]=Склад на клучеви и сертификати
|
||||
Name[ms]=Sijil dan Penyimpanan Kekunci
|
||||
Name[nb]=Lager for sertifikat/nøkkel
|
||||
Name[nl]=Certificaat- en sleutelopslag
|
||||
Name[nn]=Serifikat- og nøkkellager
|
||||
Name[pa]=ਸਰਟੀਫਿਕੇਟ ਅਤੇ ਕੁੰਜੀ ਸਟੋਰੇਜ਼
|
||||
Name[pl]=Przechowalnia certyfikatów i kluczy
|
||||
Name[pt]=Armazenamento de Chaves e Certificados
|
||||
Name[pt_BR]=Certificados e armazenamento de chaves
|
||||
Name[ro]=Mediu de stocare pentru certificate și chei
|
||||
Name[ru]=Хранилище сертификатов и ключей
|
||||
Name[sk]=Úložisko certifikátov a kľúčov
|
||||
Name[sl]=Hranjenje potrdil in ključev
|
||||
Name[sr]=Складиште сертификата и кључева
|
||||
Name[sr@latin]=Skladište sertifikata i ključeva
|
||||
Name[sv]=Certifikat och nyckellagring
|
||||
Name[ta]=சான்றிதழ்/விசை சேமிப்பகம்
|
||||
Name[te]=ధృవీకరణపత్రం మరియు కీ నిల్వ
|
||||
Name[th]=แหล่งใบรับรองและกุญแจ
|
||||
Name[tr]=Sertifika ve Anahtar Deposu
|
||||
Name[ug]=گۇۋاھنامە ۋە شىفىرلىق ئاچقۇچ ئامبىرى
|
||||
Name[uk]=Сертифікат та сховище ключів
|
||||
Name[vi]=Lưu trữ Chứng nhận và Khoá
|
||||
Name[zh_CN]=证书和密钥存储
|
||||
Name[zh_HK]=證書與密碼匙儲存區
|
||||
Name[zh_TW]=憑證與金鑰儲存區
|
||||
Comment=GNOME Keyring: PKCS#11 Component
|
||||
Comment[af]=GNOME-sleutelring: PKCS#11-komponent
|
||||
Comment[ar]=حلقة مفاتيح جنوم: مكون PKCS#11
|
||||
Comment[as]=GNOME Keyring: PKCS#11 উপাদান
|
||||
Comment[ast]=Depósitu de claves de GNOME: Componente PKCS#11
|
||||
Comment[be]=Вязкі ключоў GNOME: кампанент PKCS#11
|
||||
Comment[bg]=Ключодържател на GNOME: компонент за PKCS#11
|
||||
Comment[bn]=GNOME কী রিং: PKCS#11 কম্পোনেন্ট
|
||||
Comment[ca]=Anell de claus del GNOME: component PKCS#11
|
||||
Comment[ca@valencia]=Anell de claus del GNOME: component PKCS#11
|
||||
Comment[cs]=Klíčenka GNOME: komponenta PKCS#11
|
||||
Comment[da]=GNOME-nøgleringsdæmon: PKCS#11-komponent
|
||||
Comment[de]=GNOME-Schlüsselbunddienst: PKCS#11-Komponente
|
||||
Comment[el]=Κλειδοθήκη GNOME: Συνιστώσα PKCS#11
|
||||
Comment[en_GB]=GNOME Keyring: PKCS#11 Component
|
||||
Comment[es]=Depósito de claves de GNOME: Componente PKCS#11
|
||||
Comment[et]=GNOME võtmerõngas: PKCS#11 komponent
|
||||
Comment[eu]=GNOMEren gako-sorta: PKCS#11 osagaia
|
||||
Comment[fa]=دستهکلید گنوم: عناصر PKCS#11
|
||||
Comment[fi]=Gnomen avainnippu: PKCS#11-komponentti
|
||||
Comment[fr]=Trousseau de clés GNOME : composant PKCS#11
|
||||
Comment[gl]=GNOME Keyring: compoñente PKCS#11
|
||||
Comment[gu]=GNOME કીરીંગ: PKCS#11 ઘટક
|
||||
Comment[he]=קבוצת מפתחות של GNOME:רכיב PKCS#11
|
||||
Comment[hu]=GNOME kulcstartó – PKCS#11 összetevő
|
||||
Comment[id]=GNOME Keyring: Komponen PKCS#11
|
||||
Comment[it]=Portachiavi di GNOME: componente PKCS#11
|
||||
Comment[ja]=GNOME キーリング: PKCS#11 コンポーネント
|
||||
Comment[km]=GNOME Keyring ៖ សមាសភាគ PKCS#11
|
||||
Comment[ko]=그놈 키 모음: PKCS#11 컴포넌트
|
||||
Comment[lt]=GNOME raktinė: PKCS#11 komponentas
|
||||
Comment[lv]=GNOME Keyring: PKCS#11 komponente
|
||||
Comment[mk]=Приврзок на GNOME: PKCS#11 компонента
|
||||
Comment[ms]=GNOME Keyring: Komponen PKCS#11
|
||||
Comment[nb]=GNOME nøkkelring: PKCS#11-komponent
|
||||
Comment[nl]=Sleutelbos-service: PKCS#11-component
|
||||
Comment[nn]=GNOME Nøkkelring: PKCS#11-komponent
|
||||
Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ: PKCS#11 ਭਾਗ
|
||||
Comment[pl]=Baza kluczy dla środowiska GNOME: składnik PKCS#11
|
||||
Comment[pt]=GNOME Keyring: Componente PKCS#11
|
||||
Comment[pt_BR]=Chaveiro do GNOME: Componente PKCS#11
|
||||
Comment[ro]=Inelul de chei GNOME: Componenta PKCS#11
|
||||
Comment[ru]=Связка ключей GNOME: компонент PKCS#11
|
||||
Comment[sl]=GNOME zbirka ključev: PKCS#11 enota
|
||||
Comment[sr]=Гномови привесци: ПКЦС#11 компонента
|
||||
Comment[sr@latin]=Gnomovi privesci: PKCS#11 komponenta
|
||||
Comment[sv]=GNOME-nyckelring: PKCS#11-komponent
|
||||
Comment[ta]=GNOME கீரிங்: PKCS#11 கூறு
|
||||
Comment[te]=GNOME కీరింగ్: PKCS#11 అంశం
|
||||
Comment[th]=พวงกุญแจของ GNOME: องค์ประกอบ PKCS#11
|
||||
Comment[tr]=GNOME Anahtarlığı: PKCS#11 Bileşeni
|
||||
Comment[ug]=GNOME ئاچقۇچ ھالقىسى:PKCS#11 دېتالى
|
||||
Comment[uk]=Служба в'язки ключів GNOME: компонент PKCS#11
|
||||
Comment[vi]=Vòng Khoá GNOME: thành phần PKCS#11
|
||||
Comment[zh_CN]=GNOME 密钥环:PKCS#11 组件
|
||||
Comment[zh_HK]=GNOME 密碼匙圈:PKCS#11 元件
|
||||
Comment[zh_TW]=GNOME 鑰匙圈:PKCS#11 元件
|
||||
Exec=/usr/bin/gnome-keyring-daemon --start --components=pkcs11
|
||||
OnlyShowIn=GNOME;Unity;
|
||||
X-GNOME-Autostart-Phase=Initialization
|
||||
X-GNOME-AutoRestart=false
|
||||
X-GNOME-Autostart-Notify=true
|
||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||
X-GNOME-Bugzilla-Product=gnome-keyring
|
||||
X-GNOME-Bugzilla-Component=general
|
||||
X-GNOME-Bugzilla-Version=3.4.1
|
||||
@@ -1,126 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=Secret Storage Service
|
||||
Name[af]=Geheimbergingsdiens
|
||||
Name[ar]=خدمة حفظ سرية
|
||||
Name[as]=গুপ্ত সংৰক্ষণ সেৱা
|
||||
Name[ast]=Serviciu d'almacenamientu de secretos
|
||||
Name[be]=Служба сховішча для сакрэтаў
|
||||
Name[bg]=Услуга за шифриран носител
|
||||
Name[bn]=গোপন সংরক্ষণ সম্পর্কিত সার্ভিস
|
||||
Name[ca]=Servei d'emmagatzematge de secrets
|
||||
Name[ca@valencia]=Servei d'emmagatzematge de secrets
|
||||
Name[cs]=Služba utajení dat
|
||||
Name[da]=Secret Storage Service
|
||||
Name[de]=Sicherheitsdienst
|
||||
Name[el]=Υπηρεσία κρυφής αποθήκευσης
|
||||
Name[en_GB]=Secret Storage Service
|
||||
Name[eo]=Servo pri sekreta memorejo
|
||||
Name[es]=Servicio de almacenamiento de secretos
|
||||
Name[et]=Saladuste hoidmise teenus
|
||||
Name[eu]=Ezkutuko biltegiaren zerbitzua
|
||||
Name[fa]=سرویس مخزن محرمانه
|
||||
Name[fi]=Salaisuuksien säilöntäpalvelu
|
||||
Name[fr]=Service de stockage secret
|
||||
Name[gl]=Servizo de almacenamento segredo
|
||||
Name[gu]=ખાનગી સંગ્રહ સેવા
|
||||
Name[he]=שרות אחסון חשאי
|
||||
Name[hu]=Titoktároló szolgáltatás
|
||||
Name[id]=Layanan Penyimpanan Rahasia
|
||||
Name[it]=Servizio archivio segreto
|
||||
Name[ja]=シークレットストレージサービス
|
||||
Name[km]=សេវាផ្ទុកសម្ងាត់
|
||||
Name[ko]=비밀 저장고 서비스
|
||||
Name[lt]=Slaptoji saugojimo tarnyba
|
||||
Name[lv]=Slepenās glabātavas serviss
|
||||
Name[mk]=Сервис за склад на тајни
|
||||
Name[ms]=Servis Rahsia Penyimpanan
|
||||
Name[nb]=Lagringstjeneste for hemmeligheter
|
||||
Name[nl]=Secret Storage Service
|
||||
Name[nn]=Hemmeleg lagerteneste
|
||||
Name[pa]=ਗੁਪਤ ਸਟੋਰੇਜ਼ ਸਰਵਿਸ
|
||||
Name[pl]=Usługa przechowywania haseł
|
||||
Name[pt]=Serviço de Armazenamento Secreto
|
||||
Name[pt_BR]=Serviço de armazenamento secreto
|
||||
Name[ro]=Serviciul secret de stocare
|
||||
Name[ru]=Служба безопасного хранения
|
||||
Name[sl]=Shranjevanje skritih storitev
|
||||
Name[sr]=Сервис са тајно складиштење
|
||||
Name[sr@latin]=Servis sa tajno skladištenje
|
||||
Name[sv]=Lagringstjänst för hemligheter
|
||||
Name[ta]= ரகசிய சேமிப்பு சேவை
|
||||
Name[te]=రహస్య నిల్వ సేవ
|
||||
Name[th]=บริการเก็บข้อมูลลับ
|
||||
Name[tr]=Gizli Depolama Hizmeti
|
||||
Name[ug]=مەخپىيەتلىكنى ساقلاش مۇلازىمېتى
|
||||
Name[uk]=Служба шифрування дисків
|
||||
Name[vi]=Dịch vụ lưu trữ mật
|
||||
Name[zh_CN]=保密存储服务
|
||||
Name[zh_HK]=保密儲存區服務
|
||||
Name[zh_TW]=保密儲存區服務
|
||||
Comment=GNOME Keyring: Secret Service
|
||||
Comment[af]=GNOME-sleutelring: geheimdiens
|
||||
Comment[ar]=حلقة مفاتيح جنوم: خدمة سرية
|
||||
Comment[as]=GNOME Keyring: গুপ্ত সেৱা
|
||||
Comment[ast]=Depósitu de claves de GNOME: Serviciu de secretos
|
||||
Comment[be]=Вязкі ключоў GNOME: служба сакрэтаў
|
||||
Comment[bg]=Ключодържател на GNOME: услуга за тайни
|
||||
Comment[bn]=GNOME কী রিং: গোপন সার্ভিস
|
||||
Comment[ca]=Anell de claus del GNOME: servei de secrets
|
||||
Comment[ca@valencia]=Anell de claus del GNOME: servei de secrets
|
||||
Comment[cs]=Klíčenka GNOME: Služba utajení dat
|
||||
Comment[da]=GNOME-nøglering: Secret Service
|
||||
Comment[de]=GNOME-Schlüsselbunddienst: Sicherheitsdienst
|
||||
Comment[el]=Κλειδοθήκη GNOME: Κρυφή υπηρεσία
|
||||
Comment[en_GB]=GNOME Keyring: Secret Service
|
||||
Comment[es]=Depósito de claves de GNOME: Servicio de secretos
|
||||
Comment[et]=GNOME võtmerõngas: saladuste teenus
|
||||
Comment[eu]=GNOMEren gako-sorta: ezkutuko zerbitzua
|
||||
Comment[fa]=دستهکلید گنوم: سرویس محرمانه
|
||||
Comment[fi]=Gnomen avainnippu: Salainen palvelu
|
||||
Comment[fr]=Trousseau de clés GNOME : service secret
|
||||
Comment[gl]=GNOME Keyring: servizo segredo
|
||||
Comment[gu]=GNOME કીરીંગ: ખાનગી સેવા
|
||||
Comment[he]=קבוצת מפתחות של GNOME: שירות חשאי
|
||||
Comment[hu]=GNOME kulcstartó – titokszolgáltatás
|
||||
Comment[id]=GNOME Keyring: Layanan Rahasia
|
||||
Comment[it]=Portachiavi di GNOME: servizio segreto
|
||||
Comment[ja]=GNOME キーリング: シークレットサービス
|
||||
Comment[km]=GNOME Keyring ៖ សេវាសម្ងាត់
|
||||
Comment[ko]=그놈 키 모음: 비밀 서비스
|
||||
Comment[lt]=GNOME raktinė: slaptoji tarnyba
|
||||
Comment[lv]=GNOME Keyring: slepenais serviss
|
||||
Comment[mk]=Приврзок на GNOME: таен сервис
|
||||
Comment[ms]=GNOME Keyring: Servis Rahsia
|
||||
Comment[nb]=GNOME nøkkelring: Hemmelige tjenester
|
||||
Comment[nl]=Sleutelbos-service: Secret Service
|
||||
Comment[nn]=GNOME Nøkkelring: Hemmeleg teneste
|
||||
Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ ਡੈਮਨ: ਗੁਪਤ ਸਰਵਿਸ
|
||||
Comment[pl]=Baza kluczy dla środowiska GNOME: usługa haseł
|
||||
Comment[pt]=GNOME Keyring: Serviço Secreto
|
||||
Comment[pt_BR]=Chaveiro do GNOME: Serviço secreto
|
||||
Comment[ro]=Inelul de chei GNOME: Serviciul secret
|
||||
Comment[ru]=Связка ключей GNOME: служба безопасности
|
||||
Comment[sl]=GNOME zbirka ključev: skrite storitve
|
||||
Comment[sr]=Гномови привесци: сервис за тајност
|
||||
Comment[sr@latin]=Gnomovi privesci: servis za tajnost
|
||||
Comment[sv]=GNOME-nyckelring: Hemlighetstjänst
|
||||
Comment[ta]=GNOME கீரிங்: ரகசிய சேவை
|
||||
Comment[te]=GNOME కీరింగ్: రహస్య సేవ
|
||||
Comment[th]=พวงกุญแจของ GNOME: บริการเก็บข้อมูลลับ
|
||||
Comment[tr]=GNOME Anahtarlığı: Gizli Hizmet
|
||||
Comment[ug]=GNOME ئاچقۇچ ھالقىسى:مەخپىيەت مۇلازىمېتى
|
||||
Comment[uk]=Служба в'язки ключів GNOME: служба шифрування
|
||||
Comment[vi]=Vòng Khoá GNOME: dịch vụ mật
|
||||
Comment[zh_CN]=GNOME 密钥环:保密服务
|
||||
Comment[zh_HK]=GNOME 密碼匙圈:保密服務
|
||||
Comment[zh_TW]=GNOME 鑰匙圈:保密服務
|
||||
Exec=/usr/bin/gnome-keyring-daemon --start --components=secrets
|
||||
OnlyShowIn=GNOME;Unity;
|
||||
X-GNOME-Autostart-Phase=Initialization
|
||||
X-GNOME-AutoRestart=false
|
||||
X-GNOME-Autostart-Notify=true
|
||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||
X-GNOME-Bugzilla-Product=gnome-keyring
|
||||
X-GNOME-Bugzilla-Component=general
|
||||
X-GNOME-Bugzilla-Version=3.4.1
|
||||
@@ -1,125 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Name=SSH Key Agent
|
||||
Name[af]=SSH-sleutelagent
|
||||
Name[ar]=عميل مفاتيح SSH
|
||||
Name[as]=SSH চাবি সহায়ক
|
||||
Name[ast]=Axente de claves SSH
|
||||
Name[be]=SSH-агент ключоў
|
||||
Name[bg]=Агентът на SSH за ключове
|
||||
Name[bn]=SSH কী এজেন্ট
|
||||
Name[ca]=Agent de claus SSH
|
||||
Name[ca@valencia]=Agent de claus SSH
|
||||
Name[cs]=Agent klíčů SSH
|
||||
Name[da]=SSH-nøgleagent
|
||||
Name[de]=SSH-Schlüsselagent
|
||||
Name[el]=Πράκτορας (agent) κλειδιού SSH
|
||||
Name[en_GB]=SSH Key Agent
|
||||
Name[es]=Agente de claves SSH
|
||||
Name[et]=SSH-võtmete agent
|
||||
Name[eu]=SSH gako-agentea
|
||||
Name[fa]=مامور کلید SSH
|
||||
Name[fi]=SSH-avainten agentti
|
||||
Name[fr]=Agent de clés SSH
|
||||
Name[gl]=Axente de chave SSH
|
||||
Name[gu]=SSH કી ઍજન્ટ
|
||||
Name[he]=סוכן מפתחות SSH
|
||||
Name[hu]=SSH-kulcs ügynök
|
||||
Name[id]=Agen Kunci SSH
|
||||
Name[it]=Agente chiavi SSH
|
||||
Name[ja]=SSH 鍵エージェント
|
||||
Name[km]=ភ្នាក់ងារសោ SSH
|
||||
Name[ko]=SSH 키 에이전트
|
||||
Name[lt]=SSH raktų tarnyba
|
||||
Name[lv]=SSH atslēgu aģents
|
||||
Name[mk]=Агент за SSH клучеви
|
||||
Name[ms]=Agen Kekunci SSH
|
||||
Name[nb]=SSH-nøkkelagent
|
||||
Name[nl]=SSH-sleutelagent
|
||||
Name[nn]=Nøkkelagent for SSH
|
||||
Name[pa]=SSH ਕੁੰਜੀ ਏਜੰਟ
|
||||
Name[pl]=Agent kluczy SSH
|
||||
Name[pt]=Agente de Chaves SSH
|
||||
Name[pt_BR]=Agente de chaves SSH
|
||||
Name[ro]=Agent pentru chei SSH
|
||||
Name[ru]=Агент ключей SSH
|
||||
Name[sl]=SSH Agent ključev
|
||||
Name[sr]=Агент за ССХ кључеве
|
||||
Name[sr@latin]=Agent za SSH ključeve
|
||||
Name[sv]=SSH-nyckelagent
|
||||
Name[ta]=SSH முகவர்
|
||||
Name[te]=SSH కీ వాహకము
|
||||
Name[th]=เอเจนต์กุญแจ SSH
|
||||
Name[tr]=SSH Anahtar Aracı
|
||||
Name[ug]=SSH ئاچقۇچ ياردەمچىسى
|
||||
Name[uk]=Агент ключів SSH
|
||||
Name[vi]=Tác nhân khoá SSH
|
||||
Name[zh_CN]=SSH 密钥代理
|
||||
Name[zh_HK]=SSH 密碼匙代理程式
|
||||
Name[zh_TW]=SSH 金鑰代理程式
|
||||
Comment=GNOME Keyring: SSH Agent
|
||||
Comment[af]=GNOME-sleutelring: SSH-agent
|
||||
Comment[ar]=حلقة مفاتيح جنوم: عميل SSH
|
||||
Comment[as]=GNOME Keyring: SSH সহায়ক
|
||||
Comment[ast]=Depósitu de claves de GNOME: axente SSH
|
||||
Comment[be]=Вязкі ключоў GNOME: SSH-агент
|
||||
Comment[bg]=Ключодържател на GNOME: агент на SSH
|
||||
Comment[bn]=GNOME কী রিং: SSH এজেন্ট
|
||||
Comment[ca]=Anell de claus del GNOME: agent SSH
|
||||
Comment[ca@valencia]=Anell de claus del GNOME: agent SSH
|
||||
Comment[cs]=Klíčenka GNOME: Agent SSH
|
||||
Comment[da]=GNOME-nøgleringsdæmon: SSH-agent
|
||||
Comment[de]=GNOME-Schlüsselbunddienst: SSH-Agent
|
||||
Comment[el]=Κλειδοθήκη GNOME: Πράκτορας (agent) SSH
|
||||
Comment[en_GB]=GNOME Keyring: SSH Agent
|
||||
Comment[es]=Depósito de claves de GNOME: agente SSH
|
||||
Comment[et]=GNOME võtmerõngas: SSH-agent
|
||||
Comment[eu]=GNOMEren gako-sorta: SSH agentea
|
||||
Comment[fa]=دستهکلید گنوم: مامور SSH
|
||||
Comment[fi]=Gnomen avainnippu: SSH-agentti
|
||||
Comment[fr]=Trousseau de clés GNOME : agent SSH
|
||||
Comment[gl]=GNOME Keyring: Axente SSH
|
||||
Comment[gu]=GNOME કીરીંગ: SSH ઍજન્ટ
|
||||
Comment[he]=קבוצת מפתחות של GNOME: סוכן SSH
|
||||
Comment[hu]=GNOME kulcstartó – SSH-ügynök
|
||||
Comment[id]=Ring Kunci GNOME: Agen SSH
|
||||
Comment[it]=Portachiavi di GNOME: agente SSH
|
||||
Comment[ja]=GNOME キーリング: SSH エージェント
|
||||
Comment[km]=GNOME Keyring ៖ ភ្នាក់ងារ SSH
|
||||
Comment[ko]=그놈 키 모음: SSH 에이전트
|
||||
Comment[lt]=GNOME raktinė: SSH tarnyba
|
||||
Comment[lv]=GNOME Keyring: SSH aģents
|
||||
Comment[mk]=Приврзок на GNOME: SSH агент
|
||||
Comment[ms]=GNOME Keyring: Agen SSH
|
||||
Comment[nb]=GNOME nøkkelring: SSH-agent
|
||||
Comment[nl]=Sleutelbos-service: SSH-agent
|
||||
Comment[nn]=GNOME Nøkkelring: SSH-agent
|
||||
Comment[pa]=ਗਨੋਮ ਕੀਰਿੰਗ: SSH ਏਜੰਟ
|
||||
Comment[pl]=Baza kluczy dla środowiska GNOME: agent SSH
|
||||
Comment[pt]=GNOME Keyring: Agente SSH
|
||||
Comment[pt_BR]=Chaveiro do GNOME: Agente SSH
|
||||
Comment[ro]=Inelul de chei GNOME: Agent SSH
|
||||
Comment[ru]=Связка ключей GNOME: SSH-агент
|
||||
Comment[sl]=GNOME zbirka ključev: SSH agent
|
||||
Comment[sr]=Гномови привесци: ССХ агент
|
||||
Comment[sr@latin]=Gnomovi privesci: SSH agent
|
||||
Comment[sv]=GNOME-nyckelring: SSH-agent
|
||||
Comment[ta]=GNOME கீரிங்: SSH முகவர்
|
||||
Comment[te]=GNOME కీరింగ్: SSH వాహకం
|
||||
Comment[th]=พวงกุญแจของ GNOME: เอเจนต์ SSH
|
||||
Comment[tr]=GNOME Anahtarlığı: SSH Aracı
|
||||
Comment[ug]=GNOME ئاچقۇچ ھالقىسى:SSH ياردەمچىسى
|
||||
Comment[uk]=Служба в'язки ключів GNOME: агент SSH
|
||||
Comment[vi]=Vòng Khoá GNOME: SSH Agent
|
||||
Comment[zh_CN]=GNOME 密钥环:SSH 代理
|
||||
Comment[zh_HK]=GNOME 密碼匙圈:SSH 代理程式
|
||||
Comment[zh_TW]=GNOME 鑰匙圈:SSH 代理程式
|
||||
Exec=/usr/bin/gnome-keyring-daemon --start --components=ssh
|
||||
OnlyShowIn=GNOME;Unity;
|
||||
X-GNOME-Autostart-Phase=Initialization
|
||||
X-GNOME-AutoRestart=false
|
||||
X-GNOME-Autostart-Notify=true
|
||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||
X-GNOME-Bugzilla-Product=gnome-keyring
|
||||
X-GNOME-Bugzilla-Component=general
|
||||
X-GNOME-Bugzilla-Version=3.4.1
|
||||
@@ -1,10 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=liferea --mainwindow-state=iconified
|
||||
NotShowIn=GNOME
|
||||
Hidden=true
|
||||
Name[fr_FR]=Lecteur de Flux Liferea
|
||||
Name=Lecteur de Flux Liferea
|
||||
Comment[fr_FR]=Lecteur de nouvelles RSS
|
||||
Comment=Lecteur de nouvelles RSS
|
||||
Icon=liferea
|
||||
@@ -1,2 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Hidden=True
|
||||
@@ -1,176 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Name=Pidgin Internet Messenger
|
||||
Name[af]=Pidgin Internetboodskapper
|
||||
Name[ar]=مرسال الإنترنت بِدْجِن
|
||||
Name[be@latin]=Internet-kamunikatar Pidgin
|
||||
Name[bn]=পিজিন ইন্টারনেট বার্তাবাহক
|
||||
Name[bn_IN]=Pidgin ইন্টারনেট মেসেঞ্জার
|
||||
Name[ca]=Missatger d'Internet Pidgin
|
||||
Name[ca@valencia]=Missatger d'Internet Pidgin
|
||||
Name[cs]=Pidgin Internet Messenger
|
||||
Name[da]=Pidgin Internet Besked
|
||||
Name[de]=Pidgin Internet-Sofortnachrichtendienst
|
||||
Name[el]=Αποστολέας μηνυμάτων διαδικτύου Pidgin
|
||||
Name[en_GB]=Pidgin Internet Messenger
|
||||
Name[eo]=Piĝin Interreta Mesaĝilo
|
||||
Name[es]=Cliente de mensajería de Internet Pidgin
|
||||
Name[et]=Pidgin, Interneti sõnumivahetus
|
||||
Name[eu]=Pidgin Internet-Mezularia
|
||||
Name[fa]=پیغامرسان اینترنتی پیجین
|
||||
Name[fi]=Pidgin-pikaviestin
|
||||
Name[fr]=Messagerie internet Pidgin
|
||||
Name[gl]=Mensaxería na Internet de Pidgin
|
||||
Name[gu]=Pidgin Internet Messenger
|
||||
Name[he]=פידג'ין למסרים באינטרנט
|
||||
Name[hi]=पिडगिन इंटरनेट मैसेंजर
|
||||
Name[hu]=Pidgin üzenetküldő
|
||||
Name[id]=Pesan Internet Pidgin
|
||||
Name[it]=Pidgin Internet Messenger
|
||||
Name[ja]=Pidgin インターネット・メッセンジャー
|
||||
Name[km]=កម្មវិធីផ្ញើសារអ៊ីនធឺណិតរបស់ Pidgin
|
||||
Name[kn]=ಪಿಜಿನ್ ಇಂಟರ್ನೆಟ್ ಮೆಸೆಂಜರ್
|
||||
Name[ko]=Pidgin 인터넷 메신저
|
||||
Name[lt]=Pidgin pokalbiai internete
|
||||
Name[mai]=पिजिन इंटरनेट मेसेंजर
|
||||
Name[mhr]=Pidgin писе каласымаш алмаш клиент
|
||||
Name[mk]=Pidgin инстант пораки
|
||||
Name[mn]=Пизин Интернет Мессенжер
|
||||
Name[mr]=Pidgin इंटरनेट संदेशवाहक
|
||||
Name[nb]=Pidgin Lynmeldingsklient
|
||||
Name[nl]=Pidgin Internet Messenger
|
||||
Name[nn]=Pidgin Internett meldingsklient
|
||||
Name[or]=ପିଜିନ୍ ଇଣ୍ଟରନେଟ ସଂଦେଶବାହକ
|
||||
Name[pa]=ਪਿਡਗਿਨ ਇੰਟਰਨੈਟ ਮੈਸੰਜ਼ਰ
|
||||
Name[pl]=Komunikator internetowy Pidgin
|
||||
Name[pt_BR]=Mensageiro da Internet Pidgin
|
||||
Name[ro]=Mesagerul Pidgin
|
||||
Name[ru]=Клиент обмена мгновенными сообщениями Pidgin
|
||||
Name[sk]=Internetový komunikátor Pidgin
|
||||
Name[sl]=Spletni sel Pidgin
|
||||
Name[sq]=Pidgin Internet Messenger
|
||||
Name[sr]=Пиџин Интернет писмоноша
|
||||
Name[sr@latin]=Pidžin Internet pismonoša
|
||||
Name[sv]=Pidgin Meddelandeklient
|
||||
Name[ta]=Pidgin இணையத்தள மேலாளர்
|
||||
Name[te]=పిడ్జిన్ ఇంటర్నెట్ మెసెంజర్
|
||||
Name[tr]=Pidgin İnternet Mesajlaşma Aracı
|
||||
Name[uk]=Клієнт обміну миттєвими повідомленнями Pidgin
|
||||
Name[vi]=Tin Nhắn Pidgin
|
||||
Name[zh_CN]=Pidgin 互联网通讯程序
|
||||
Name[zh_HK]=Pidgin 網絡即時通
|
||||
Name[zh_TW]=Pidgin 網路即時通
|
||||
GenericName=Internet Messenger
|
||||
GenericName[af]=Internetboodskapper
|
||||
GenericName[ar]=مرسال إنترنت
|
||||
GenericName[be@latin]=Internet-kamunikatar
|
||||
GenericName[bg]=Бързи съобщения
|
||||
GenericName[bn]=ইন্টারনেট বার্তাবাহক
|
||||
GenericName[bn_IN]=ইন্টারনেট মেসেঞ্জার
|
||||
GenericName[ca]=Missatger d'Internet
|
||||
GenericName[ca@valencia]=Missatger d'Internet
|
||||
GenericName[cs]=Internet Messenger
|
||||
GenericName[da]=Internet beskeder
|
||||
GenericName[de]=Internet-Sofortnachrichtendienst
|
||||
GenericName[dz]=ཨིན་ཊར་ནེཊི་འཕྲིན་སྐྱེལ་པ།
|
||||
GenericName[el]=Αποστολέας μηνυμάτων διαδικτύου
|
||||
GenericName[en_GB]=Internet Messenger
|
||||
GenericName[eo]=Interreta Mesaĝilo
|
||||
GenericName[es]=Cliente de mensajería de Internet
|
||||
GenericName[et]=Interneti sõnumivahetus
|
||||
GenericName[eu]=Internet-Mezularia
|
||||
GenericName[fa]=پیغامرسان اینترنتی
|
||||
GenericName[fi]=Pikaviestin
|
||||
GenericName[fr]=Messagerie internet
|
||||
GenericName[gl]=Mensaxería na Internet
|
||||
GenericName[gu]=Internet Messenger
|
||||
GenericName[he]=למסרים באינטרנט
|
||||
GenericName[hi]=इंटरनेट मेसेंजर
|
||||
GenericName[hu]=Azonnali üzenetküldés
|
||||
GenericName[id]=Pengirim Pesan Internet
|
||||
GenericName[it]=Internet Messenger
|
||||
GenericName[ja]=インターネット・メッセンジャー
|
||||
GenericName[km]=កម្មវិធីផ្ញើសារអ៊ីនធឺណិត
|
||||
GenericName[kn]=ಇಂಟರ್ನೆಟ್ ಮೆಸ್ಸೆಂಜರ್
|
||||
GenericName[ko]=인터넷 메신저
|
||||
GenericName[ku]=Peyamnêra înternetê
|
||||
GenericName[lt]=Pokalbiai internete
|
||||
GenericName[mai]=इंटरनेट मेसेंजर
|
||||
GenericName[mhr]=Писе каласымаш алмаш клиент
|
||||
GenericName[mk]=Инстант пораки
|
||||
GenericName[mn]=Интернет Мессенжер
|
||||
GenericName[mr]=इंटरनेट मेसेंजर
|
||||
GenericName[nb]=Lynmeldingsklient
|
||||
GenericName[nl]=Internet Messenger
|
||||
GenericName[nn]=Lynmeldingsklient
|
||||
GenericName[or]=ଇଣ୍ଟରନେଟ ସଂଦେଶବାହାକ
|
||||
GenericName[pa]=ਇੰਟਰਨੈਟ ਮੈਸੰਜ਼ਰ
|
||||
GenericName[pl]=Komunikator internetowy
|
||||
GenericName[ps]=د انترنت زری
|
||||
GenericName[pt]=Mensageiro Internet
|
||||
GenericName[pt_BR]=Mensageiro da Internet
|
||||
GenericName[ro]=Mesagerie instant
|
||||
GenericName[ru]=Клиент обмена мгновенными сообщениями
|
||||
GenericName[si]=අන්තර්ජාල පණිවිඩකරු
|
||||
GenericName[sk]=Internetový komunikátor
|
||||
GenericName[sl]=Spletni sel
|
||||
GenericName[sq]=Lajmësjellës Internet
|
||||
GenericName[sr]=Интернет писмоноша
|
||||
GenericName[sr@latin]=Internet pismonoša
|
||||
GenericName[sv]=Meddelandeklient
|
||||
GenericName[ta]=இணையதள தூதுவர்
|
||||
GenericName[te]=ఇంటర్నెట్ మెసెంజర్
|
||||
GenericName[th]=โปรแกรมข้อความด่วน
|
||||
GenericName[tr]=İnternet Mesajlaşma Aracı
|
||||
GenericName[uk]=Спілкування миттєвими повідомленнями
|
||||
GenericName[ur]=ا نٹرنیٹ میسینجر
|
||||
GenericName[vi]=Tin Nhắn
|
||||
GenericName[zh_CN]=互联网通讯程序
|
||||
GenericName[zh_HK]=網絡即時通
|
||||
GenericName[zh_TW]=網路即時通
|
||||
Comment=Chat over IM. Supports AIM, Google Talk, Jabber/XMPP, MSN, Yahoo and more
|
||||
Comment[af]=Gesels met kitsboodsappe. Daar is ondersteuning vir AIM, Google Talk, Jabber/XMPP, MSN, Yahoo en meer
|
||||
Comment[bn]=IM-এর মাধ্যমে আড্ডা দিন। যা AIM, Google Talk, Jabber/XMPP, MSN, Yahoo এবং আরও অনেক কিছু সমর্থন করে
|
||||
Comment[bn_IN]=IM-র মাধ্যমে আলাপ। AIM, Google Talk, Jabber/XMPP, MSN, Yahoo এবং আরো অনেক সমর্থিত হয়
|
||||
Comment[ca]=Xategeu amb missatgeria instantània, amb AIM, Google Talk, Jabber/XMPP, MSN, Yahoo i més
|
||||
Comment[ca@valencia]=Xategeu amb missatgeria instantània, amb AIM, Google Talk, Jabber/XMPP, MSN, Yahoo i més
|
||||
Comment[cs]=Chat pomocí IM. Podporuje AIM, Google Talk, Jabber/XMPP, MSN, Yahoo a další
|
||||
Comment[de]=Chatten mit Kurznachrichten. Unterstützt AIM, Google Talk, Jabber/XMPP, MSN, Yahoo und weitere
|
||||
Comment[en_GB]=Chat over IM. Supports AIM, Google Talk, Jabber/XMPP, MSN, Yahoo and more
|
||||
Comment[es]=Chat sobre MI. Ofrece soporte para AMI, Google Talk, Jabber/XMPP, MSN, Yahoo! y más
|
||||
Comment[fr]=Conversation par messages instantanés. Supporte AIM, Google Talk, Jabber/XMPP, MSN, Yahoo et d'autres
|
||||
Comment[gu]=IM પર વાતચીત. AIM, Google Talk, Jabber/XMPP, MSN, Yahoo અને વધારેને આધાર આપે છે
|
||||
Comment[he]=צ'אט בעזרת הודעות-מיידיות. תומך AIM, Google Talk, Jabber/XMPP, MSN, Yahoo ועוד
|
||||
Comment[hi]=IM पर चैट. AIM, Google Talk, Jabber/XMPP, MSN, Yahoo और कुछ और का समर्थन करता है
|
||||
Comment[hu]=Azonnali üzenetküldés AIM, Google Talk, Jabber/XMPP, MSN, Yahoo és más protokollok támogatásával
|
||||
Comment[it]=Chat attraverso MI. Supporta AIM, Google Talk, Jabber/XMPP, MSN, Yahoo ed altri ancora
|
||||
Comment[km]=ជជែកកំសាន្តតាម IM ។ គាំទ្រ AIM, Google Talk, Jabber/XMPP, MSN, យ៉ាហ៊ូ និងផ្សេងៗទៀត
|
||||
Comment[kn]=IM ಮೂಲಕ ಮಾತುಕತೆ. AIM, Google Talk, Jabber/XMPP, MSN, Yahoo ಹಾಗು ಇನ್ನೂ ಬಹಳಷ್ಟನ್ನು ಬೆಂಬಲಿಸುತ್ತದೆ
|
||||
Comment[mhr]=Писе каласымаш дене тототлымвер. AIM, Google Talk, Jabber/XMPP, MSN, Yahoo да молылын эҥерта
|
||||
Comment[mr]=IM वरील संभाषण. AIM, Google Talk, Jabber/XMPP, MSN, Yahoo व आणखीकरीता समर्थन पुरवतो
|
||||
Comment[nb]=Samtale over IM. Støtter AIM, Google Talk, Jabber/XMPP, MSN, Yahoo! og mer
|
||||
Comment[nl]=Chat over IM. Ondersteunt AIM, Google Talk, Jabber/XMPP, MSN, Yahoo en meer
|
||||
Comment[nn]=Prat ved hjelp av lynmeldingar. Støttar AIM, Google Talk, Jabber/XMPP, MSN, Yahoo og fleire
|
||||
Comment[or]=IM ଉପରେ ଚାର୍ଟ। AIM, Google Talk, Jabber/XMPP, MSN, Yahoo ଏବଂ ସେହିପରି ଅନେକକୁ ସମର୍ଥନ କରିଥାଏ
|
||||
Comment[pa]=IM ਰਾਹੀਂ ਗੱਲਬਾਤ। AIM, ਗੂਗਲ ਟਾਕ, ਜੱਬਰ/XMPP, MSN, ਯਾਹੂ ਅਤੇ ਹੋਰ ਲਈ ਸਹਾਇਕ।
|
||||
Comment[pl]=Rozmawianie przez komunikator. Obsługuje sieci AIM, Google Talk, Jabber/XMPP, MSN, Yahoo oraz więcej
|
||||
Comment[ro]=Chat prin mesaje instant. Suportă rețelele AIM, Google Talk, Jabber/XMPP, MSN, Yahoo și altele.
|
||||
Comment[ru]=Переписка мгновенными сообщениями. Поддерживает AIM, Google Talk, Jabber/XMPP, MSN, Yahoo и не только
|
||||
Comment[sk]=Chat cez IM. Podporuje AIM, Google Talk, Jabber/XMPP, MSN, Yahoo a ďalšie
|
||||
Comment[sl]=Klepetajte s svetom. Podpira AIM, Google Talk, Jabber/XMPP, MSN, Yahoo in druge.
|
||||
Comment[sq]=Fjalosje përmes IM-së. Mbulon AIM, Google Talk, Jabber/XMPP, MSN, Yahoo dhe të tjera
|
||||
Comment[sv]=Skicka snabbmeddelanden. Stödjer AIM, Google Talk, Jabber/XMPP, MSN, Yahoo med fler
|
||||
Comment[ta]=அரட்டை IM முடிந்தது. AIMக்கு துணைபுரிகிறது, Google Talk, Jabber/XMPP, MSN, Yahoo மற்றும் மேலும்
|
||||
Comment[te]=IM నందు చాట్. AIM, Google Talk, Jabber/XMPP, MSN, Yahoo మరియు మరిన్ని మద్దతిస్తుంది
|
||||
Comment[uk]=Балачка через миттєві повідомлення. Підтримує AIM, Google Talk, Jabber/XMPP, MSN, Yahoo та інші
|
||||
Comment[vi]=Trò chuyện qua mạng tin nhắn tức khắc: hỗ trợ AIM, Google Talk, Jabber/XMPP, MSN, Yahoo và nhiều mạng khác
|
||||
Comment[zh_CN]=互联网通讯程序。 支持 AIM、Google Talk、Jabber/XMPP、MSN、Yahoo 和更多
|
||||
Comment[zh_HK]=讓你可以透過即時通訊與好友聊天,支援 AIM、Google Talk、Jabber/XMPP、MSN、Yahoo 等等
|
||||
Comment[zh_TW]=讓您可以透過即時通訊與好友聊天,支援 AIM、Google Talk、Jabber/XMPP、MSN、Yahoo 等等
|
||||
Exec=pidgin
|
||||
Icon=pidgin
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Network;InstantMessaging;
|
||||
NotShowIn=GNOME
|
||||
Hidden=true
|
||||
@@ -1,99 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Print Queue Applet
|
||||
Name[ar]=بريمج طابور الطباعة
|
||||
Name[as]=মূদ্ৰণ কৰক
|
||||
Name[bg]=Аплет за печат на опашката
|
||||
Name[br]=Arloadig al lostennad moullañ
|
||||
Name[ca]=Miniaplicació de la cua d'impressió
|
||||
Name[cs]=Applet tiskové fronty
|
||||
Name[da]=Panelprogram for udskriftskø
|
||||
Name[de]=Applet für Druckerwarteschlange
|
||||
Name[el]=Μικροεφαρμογή ουράς εκτύπωσης
|
||||
Name[en_GB]=Print Queue Applet
|
||||
Name[es]=Applet de la Cola de Impresión
|
||||
Name[et]=Trükijärjekorra aplett
|
||||
Name[fi]=Tulostusjonosovelma
|
||||
Name[fr]=Applet de file d'attente d'impression
|
||||
Name[gu]=છાપન કતાર એપ્લેટ
|
||||
Name[he]=יישומון תורי הדפסה
|
||||
Name[hr]=Aplet čekanja ispisa
|
||||
Name[hu]=Nyomtatásisor-alkalmazás
|
||||
Name[is]=Prentbiðraðarsmáforrit
|
||||
Name[it]=Applet coda di stampa
|
||||
Name[ja]=印刷待ち行列アプレット
|
||||
Name[kn]=ಮುದ್ರಕ ಸರತಿ Applet
|
||||
Name[ko]=인쇄 대기 상태 애플릿
|
||||
Name[nb]=Panelprogram for utskriftskø
|
||||
Name[nl]=Printwachtrij-applet
|
||||
Name[nn]=Panelprogram for utskriftskø
|
||||
Name[or]=ମୂଦ୍ରଣୀ ଧାଡି ଆପ୍ଲେଟ
|
||||
Name[pl]=Aplet kolejki drukowania
|
||||
Name[pt]=Applet da fila de impressão
|
||||
Name[pt_BR]=Miniaplicativo da fila de impressão
|
||||
Name[ro]=Mini-aplicație coadă tipărire
|
||||
Name[ru]=Апплет очереди печати
|
||||
Name[sk]=Applet tlačovej fronty
|
||||
Name[sr]=Програмче за ред штампања
|
||||
Name[sr@latin]=Programče za red štampanja
|
||||
Name[sv]=Panelprogram för utskriftskö
|
||||
Name[th]=แอพเพลตคิวพิมพ์
|
||||
Name[uk]=Аплет черги друку
|
||||
Name[vi]=Tiểu dụng hàng đợi in
|
||||
Name[zh_CN]=打印队列 Applet
|
||||
Name[zh_TW]=列印佇列面板程式
|
||||
Comment=System tray icon for managing print jobs
|
||||
Comment[ar]=أيقونة لوحة النظام لإدارة مهام الطباعة
|
||||
Comment[as]=মূদ্ৰণ কাৰ্য্য পৰিচালনাৰ বাবে ব্যৱস্থাপ্ৰণালী-ট্ৰে তে প্ৰদৰ্শনযোগ্য আইকন
|
||||
Comment[bg]=Systray икона за управление на задачите на принтера
|
||||
Comment[bn_IN]=প্রিন্ট কর্ম পরিচালনার জন্য সিস্টেম-ট্রে তে প্রদর্শনযোগ্য আইকন
|
||||
Comment[br]=Arlun ar maez rebuziñ evit ardeiñ al labourioù moullañ
|
||||
Comment[ca]=Icona de l'àrea de notificació per a gestionar les tasques d'impressió
|
||||
Comment[cs]=Ikona v oznamovací oblasti pro správu tiskových úloh
|
||||
Comment[da]=Statusikon til håndtering af udskriftsjob
|
||||
Comment[de]=Info-Symbol zur Verwaltung von Druckaufträgen
|
||||
Comment[el]=Εικονίδιο μπάρας συστήματος για διαχείριση εργασιών εκτύπωσης
|
||||
Comment[en_GB]=System tray icon for managing print jobs
|
||||
Comment[es]=Icono del area de notificación para administrar trabajos de impresión
|
||||
Comment[et]=Süsteemse salve ikoon trükitööde haldamiseks
|
||||
Comment[fi]=Ilmoitusalueen kuvake tulostustöiden hallintaan
|
||||
Comment[fr]=Zone de notification pour la gestion des tâches d'impression
|
||||
Comment[gu]=છાપન ક્રિયાઓની વ્યવસ્થા કરવા માટે સિસ્ટમ ટ્રે ચિહ્ન
|
||||
Comment[he]=צלמית במגש המערכת עבור ניהול משימות הדפסה
|
||||
Comment[hi]=छपाई काम प्रबंधन के लिये सिस्टम ट्रे प्रतीक
|
||||
Comment[hr]=Ikona trake sustava za upravljanje zadacima ispisivanja
|
||||
Comment[hu]=Rendszertálca-ikon nyomtatási feladatok kezeléséhez
|
||||
Comment[is]=Táknmynd á spjaldið til að stýra prentverkum
|
||||
Comment[it]=Icona dell'area di notifica di sistema per gestire i lavori di stampa
|
||||
Comment[ja]=印刷ジョブを管理するシステムトレイアイコン
|
||||
Comment[kn]=ಮುದ್ರಣ ಕಾರ್ಯಗಳನ್ನು ನಿರ್ವಹಿಸಲು ಗಣಕ ಟ್ರೇ ಲಾಂಛನ
|
||||
Comment[ko]=인쇄 작업 관리를 위한 시스템 트레이 아이콘
|
||||
Comment[ml]=പ്റിന്റ് ചെയ്യുവാനുളളവ കൈകാര്യം ചെയ്യുന്നതിനുളള സിസ്റ്റം ട്റെ ഐക്കണ്
|
||||
Comment[nb]=Varselikon for utskriftsjobber for systemområdet
|
||||
Comment[nl]=Systeemvak icoon voor het beheren van printopdrachten
|
||||
Comment[nn]=Systemtrauikon for handsaming av utskriftsjobbar
|
||||
Comment[or]=ମୁଦ୍ରଣ କାର୍ଯ୍ଯ ମାନଙ୍କୁ ପରିଚାଳନା କରିବା ପାଇଁ ତନ୍ତ୍ର ଟ୍ରେ ଚିତ୍ରସଙ୍କେତ
|
||||
Comment[pl]=Ikona w obszarze powiadamiania do zarządzania zadaniami wydruku
|
||||
Comment[pt]=Ícone para gerir as tarefas de impressão
|
||||
Comment[pt_BR]=Ícone de bandeja do sistema para o gerenciamento de trabalhos de impressão
|
||||
Comment[ro]=Iconiță în zona de notificare pentru gestionarea proceselor de tipărire
|
||||
Comment[ru]=Иконка области уведомления для управления заданиями печати
|
||||
Comment[sk]=Ikona na paneli úloh pre správu tlačových úloh
|
||||
Comment[sr]=Икона системске обавештајне зоне за управљање штампарским пословима
|
||||
Comment[sr@latin]=Ikona sistemske obaveštajne zone za upravljanje štamparskim poslovima
|
||||
Comment[sv]=Aktivitetsfältsikon för administration av utskriftsjobb
|
||||
Comment[ta]=அச்சு பணிகளை மேலாண்மை செய்ய கணின தட்டு சின்னம்
|
||||
Comment[th]=ไอคอนแถบสถานะสำหรับจัดการงานพิมพ์
|
||||
Comment[uk]=Значок у системній області для керування завданнями друку
|
||||
Comment[vi]=Biểu tượng khay hệ thống để quản lý các công việc in
|
||||
Comment[zh_CN]=管理打印任务的系统托盘图标
|
||||
Comment[zh_TW]=管理列印工作的系統匣圖示
|
||||
Exec=system-config-printer-applet
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=printer
|
||||
NotShowIn=KDE;
|
||||
StartupNotify=false
|
||||
Categories=GTK;Monitor;System;
|
||||
NotShowIn=GNOME
|
||||
Hidden=True
|
||||
@@ -1,18 +0,0 @@
|
||||
[bleachbit]
|
||||
first_start = False
|
||||
check_beta = False
|
||||
check_online_updates = False
|
||||
auto_hide = True
|
||||
version = 1.10
|
||||
auto_start = False
|
||||
shred = True
|
||||
exit_done = True
|
||||
delete_confirmation = True
|
||||
|
||||
[preserve_languages]
|
||||
fr = True
|
||||
en = True
|
||||
|
||||
[whitelist/paths]
|
||||
0_type = folder
|
||||
0_path = ~/.gvfs
|
||||
@@ -1,5 +0,0 @@
|
||||
#pulseaudio-button * {
|
||||
|
||||
-gtk-icon-transform: scale(.6);
|
||||
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
[General]
|
||||
MinimizeOnCopy=false
|
||||
OpenPreviousDatabasesOnStartup=true
|
||||
RememberLastDatabases=true
|
||||
SingleInstance=true
|
||||
|
||||
[Browser]
|
||||
Enabled=true
|
||||
SearchInAllDatabases=true
|
||||
|
||||
[GUI]
|
||||
HidePasswords=true
|
||||
HideUsernames=false
|
||||
MinimizeOnClose=true
|
||||
MinimizeOnStartup=true
|
||||
MinimizeToTray=true
|
||||
ShowTrayIcon=true
|
||||
TrayIconAppearance=monochrome-light
|
||||
@@ -1 +0,0 @@
|
||||
uri_default = 'qemu:///system'
|
||||
@@ -1,23 +1,7 @@
|
||||
[Added Associations]
|
||||
application/pdf=org.gnome.Evince.desktop;
|
||||
application/x-extension-htm=firefox-esr.desktop
|
||||
application/x-extension-html=firefox-esr.desktop
|
||||
application/x-extension-htm=google-chrome.desktop
|
||||
application/x-extension-html=google-chrome.desktop
|
||||
application/x-shellscript=mousepad.desktop
|
||||
audio/flac=vlc.desktop;
|
||||
audio/mp4=vlc.desktop;
|
||||
audio/mpeg=vlc.desktop
|
||||
audio/ogg=vlc.desktop;
|
||||
audio/x-aiff=vlc.desktop;
|
||||
audio/x-opus+ogg=vlc.desktop;
|
||||
audio/x-vorbis+ogg=vlc.desktop;
|
||||
audio/x-wav=vlc.desktop;
|
||||
image/bmp=ristretto.desktop
|
||||
image/gif=ristretto.desktop
|
||||
image/jpeg=ristretto.desktop
|
||||
image/png=ristretto.desktop
|
||||
image/svg+xml=ristretto.desktop
|
||||
image/tiff=ristretto.desktop
|
||||
image/x-pixmap=ristretto.desktop
|
||||
text/css=mousepad.desktop
|
||||
text/plain=mousepad.desktop
|
||||
text/x-log=mousepad.desktop
|
||||
@@ -26,10 +10,3 @@ text/x-markdown=mousepad.desktop
|
||||
text/x-python=mousepad.desktop
|
||||
text/x-python3=mousepad.desktop
|
||||
text/x-yaml=mousepad.desktop
|
||||
video/mp4=vlc.desktop;
|
||||
video/quicktime=vlc.desktop;
|
||||
video/webm=vlc.desktop;
|
||||
video/x-flv=vlc.desktop;
|
||||
video/x-matroska=vlc.desktop
|
||||
video/x-ms-wmv=vlc.desktop;
|
||||
video/x-msvideo=vlc.desktop;
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
; Global settings
|
||||
[redshift]
|
||||
temp-day=5500
|
||||
temp-night=3000
|
||||
transition=1
|
||||
; gamma=0.8:0.7:0.8
|
||||
location-provider=manual
|
||||
adjustment-method=randr
|
||||
|
||||
; The location provider and adjustment method settings
|
||||
; are in their own sections.
|
||||
[manual]
|
||||
lat=48.48
|
||||
lon=2.20
|
||||
|
||||
@@ -1,31 +0,0 @@
|
||||
{
|
||||
"compact-view": true,
|
||||
"dht-enabled": true,
|
||||
"encryption": 1,
|
||||
"inhibit-desktop-hibernation": true,
|
||||
"lpd-enabled": false,
|
||||
"peer-limit-global": 350,
|
||||
"peer-limit-per-torrent": 160,
|
||||
"peer-port": 52943,
|
||||
"peer-port-random-on-start": false,
|
||||
"pex-enabled": true,
|
||||
"play-download-complete-sound": true,
|
||||
"port-forwarding-enabled": false,
|
||||
"preallocation": 0,
|
||||
"prompt-before-exit": false,
|
||||
"rename-partial-files": true,
|
||||
"rpc-enabled": false,
|
||||
"rpc-whitelist-enabled": true,
|
||||
"show-desktop-notification": true,
|
||||
"show-extra-peer-details": false,
|
||||
"show-filterbar": true,
|
||||
"show-notification-area-icon": true,
|
||||
"show-options-window": true,
|
||||
"show-statusbar": true,
|
||||
"show-toolbar": true,
|
||||
"sort-mode": "sort-by-state",
|
||||
"sort-reversed": false,
|
||||
"start-added-torrents": true,
|
||||
"statusbar-stats": "total-ratio",
|
||||
"user-has-given-informed-consent": true,
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
[qt]
|
||||
# Ask for network policy at start (boolean)
|
||||
qt-privacy-ask=0
|
||||
@@ -1,14 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=Firefox Web Browser
|
||||
Name[fr]=Navigateur Web Firefox
|
||||
Comment=Browse the World Wide Web
|
||||
Comment[fr]=Naviguer sur le Web
|
||||
GenericName=Web Browser
|
||||
GenericName[fr]=Navigateur Web
|
||||
Exec=firefox %u
|
||||
Terminal=false
|
||||
X-MultipleArgs=false
|
||||
Type=Application
|
||||
Icon=firefox
|
||||
StartupNotify=true
|
||||
@@ -0,0 +1,14 @@
|
||||
[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;
|
||||
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,14 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch WebBrowser %u
|
||||
Icon=web-browser
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Network;X-XFCE;X-Xfce-Toplevel;
|
||||
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/exo-web-browser.desktop
|
||||
@@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Exec=exo-open --launch TerminalEmulator
|
||||
Icon=utilities-terminal
|
||||
StartupNotify=true
|
||||
Terminal=false
|
||||
Categories=Utility;X-XFCE;X-Xfce-Toplevel;
|
||||
OnlyShowIn=XFCE;
|
||||
X-AppStream-Ignore=True
|
||||
Name=Terminal Emulator
|
||||
Comment=Use the command line
|
||||
X-XFCE-Source=file:///usr/share/applications/exo-terminal-emulator.desktop
|
||||
@@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Name=Mousepad
|
||||
Comment=Simple Text Editor
|
||||
GenericName=Text Editor
|
||||
Exec=mousepad %F
|
||||
Icon=accessories-text-editor
|
||||
Terminal=false
|
||||
StartupNotify=true
|
||||
Type=Application
|
||||
Categories=Utility;TextEditor;GTK;
|
||||
MimeType=text/plain;
|
||||
X-Desktop-File-Install-Version=0.23
|
||||
X-XFCE-Source=file:///usr/share/applications/mousepad.desktop
|
||||
@@ -1,66 +0,0 @@
|
||||
favorites=exo-file-manager.desktop,thunderbird.desktop,firefox.desktop,pidgin.desktop,backintime-qt4.desktop,org.xfce.Catfish.desktop,io.github.quodlibet.QuodLibet.desktop,exo-terminal-emulator.desktop,org.gnome.Packages.desktop
|
||||
button-title=Applications
|
||||
button-icon=distributor-logo-debian
|
||||
button-single-row=true
|
||||
show-button-title=false
|
||||
show-button-icon=true
|
||||
launcher-show-name=true
|
||||
launcher-show-description=true
|
||||
launcher-show-tooltip=true
|
||||
item-icon-size=0
|
||||
hover-switch-category=false
|
||||
category-icon-size=0
|
||||
load-hierarchy=false
|
||||
recent-items-max=10
|
||||
favorites-in-recent=true
|
||||
display-recent-default=false
|
||||
position-search-alternate=true
|
||||
position-commands-alternate=true
|
||||
position-categories-alternate=true
|
||||
menu-width=464
|
||||
menu-height=510
|
||||
menu-opacity=100
|
||||
command-settings=xfce4-settings-manager
|
||||
show-command-settings=true
|
||||
command-lockscreen=xflock4
|
||||
show-command-lockscreen=true
|
||||
command-switchuser=gdmflexiserver
|
||||
show-command-switchuser=false
|
||||
command-logout=xfce4-session-logout
|
||||
show-command-logout=true
|
||||
command-menueditor=menulibre
|
||||
show-command-menueditor=true
|
||||
command-profile=users-admin
|
||||
show-command-profile=false
|
||||
search-actions=5
|
||||
|
||||
[action0]
|
||||
name=Manual pages
|
||||
pattern=man
|
||||
command=exo-open --launch TerminalEmulator man %s
|
||||
regex=false
|
||||
|
||||
[action1]
|
||||
name=Web search (Duckduckgo)
|
||||
pattern=?
|
||||
command=exo-open --launch WebBrowser https://duckduckgo.com/?q=%u
|
||||
regex=false
|
||||
|
||||
[action2]
|
||||
name=Wikipedia
|
||||
pattern=!w
|
||||
command=exo-open --launch WebBrowser https://wikipedia.org/wiki/%u
|
||||
regex=false
|
||||
|
||||
[action3]
|
||||
name=Open location
|
||||
pattern=^(file|http|https):\\/\\/(.*)$
|
||||
command=exo-open \\0
|
||||
regex=true
|
||||
|
||||
[action4]
|
||||
name=Search files
|
||||
pattern=/
|
||||
command=catfish --start / "%u"
|
||||
regex=false
|
||||
|
||||
@@ -1,22 +0,0 @@
|
||||
[Configuration]
|
||||
FontName=Hack 9
|
||||
MiscAlwaysShowTabs=FALSE
|
||||
MiscCursorBlinks=FALSE
|
||||
MiscCursorShape=TERMINAL_CURSOR_SHAPE_BLOCK
|
||||
MiscDefaultGeometry=100x24
|
||||
MiscInheritGeometry=FALSE
|
||||
MiscMenubarDefault=TRUE
|
||||
MiscMouseAutohide=FALSE
|
||||
MiscToolbarDefault=FALSE
|
||||
MiscConfirmClose=TRUE
|
||||
MiscCycleTabs=TRUE
|
||||
MiscTabCloseButtons=TRUE
|
||||
MiscTabCloseMiddleClick=TRUE
|
||||
MiscTabPosition=GTK_POS_TOP
|
||||
MiscHighlightUrls=TRUE
|
||||
ScrollingOnOutput=FALSE
|
||||
ColorForeground=#e5e5e5
|
||||
ColorBackground=#1d1d1d
|
||||
ColorCursor=#e5e5e5
|
||||
ColorPalette=#121212;#a35b66;#99ab6f;#ca9733;#495d6e;#825969;#839191;#E0E0E0;#2e3436;#ab6b74;#acb792;#ccaa69;#687987;#977381;#98A4A4;#e5e5e5
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
<channel name="keyboard-layout" version="1.0">
|
||||
<property name="Default" type="empty">
|
||||
<property name="XkbDisable" type="bool" value="false"/>
|
||||
<property name="XkbLayout" type="string" value="fr"/>
|
||||
<property name="XkbLayout" type="string" value="us,fr"/>
|
||||
<property name="XkbVariant" type="string" value="oss"/>
|
||||
<property name="XkbOptions" type="empty">
|
||||
<property name="Compose" type="string" value=""/>
|
||||
|
||||
@@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" 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 name="statusbar" type="empty">
|
||||
<property name="show" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="thumbnails" type="empty">
|
||||
<property name="size" type="uint" value="4"/>
|
||||
<property name="show" type="bool" value="false"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -25,6 +25,7 @@
|
||||
<property name="icon-size" type="uint" value="32"/>
|
||||
<property name="file-icons" type="empty">
|
||||
<property name="show-filesystem" type="bool" value="false"/>
|
||||
<property name="show-removable" type="bool" value="false"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="desktop-menu" type="empty">
|
||||
|
||||
@@ -1,205 +0,0 @@
|
||||
<?xml version="1.0" 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="XF86Display" type="empty"/>
|
||||
<property name="<Super>p" type="empty"/>
|
||||
<property name="<Primary>Escape" type="empty"/>
|
||||
<property name="XF86WWW" type="empty"/>
|
||||
<property name="XF86Mail" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="override" type="bool" value="true"/>
|
||||
<property name="<Primary><Alt>Delete" type="string" value="xfce4-taskmanager"/>
|
||||
<property name="<Super>e" type="string" value="Thunar">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Super>f" type="string" value="catfish">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Super>i" type="string" value="firefox">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Super>l" type="string" value="xflock4"/>
|
||||
<property name="<Super>m" type="string" value="thunderbird">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Super>Pause" type="string" value="xfce4-settings-manager">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Super>p" type="string" value="xfce4-display-settings">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="<Super>q" type="string" value="xfce4-session-logout"/>
|
||||
<property name="<Super>r" type="string" value="gmrun"/>
|
||||
<property name="<Super>space" type="string" value="xfce4-popup-whiskermenu"/>
|
||||
<property name="<Super>s" type="string" value="amixer set Master toggle"/>
|
||||
<property name="<Super>t" type="string" value="xfce4-terminal">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="XF86Display" type="string" value="xfce4-display-settings"/>
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
<property name="XF86Mail" type="string" value="thunderbird">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="XF86WWW" type="string" value="firefox">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="XF86Tools" type="string" value="quodlibet">
|
||||
<property name="startup-notify" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="Print" type="string" value="xfce4-screenshooter -d 0 -f"/>
|
||||
</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="<Control><Alt>Down" type="empty"/>
|
||||
<property name="<Control><Alt>Left" type="empty"/>
|
||||
<property name="<Control><Shift><Alt>Left" type="empty"/>
|
||||
<property name="<Alt><Control>End" type="empty"/>
|
||||
<property name="<Alt><Control>Home" type="empty"/>
|
||||
<property name="<Control><Shift><Alt>Right" type="empty"/>
|
||||
<property name="<Control><Shift><Alt>Up" type="empty"/>
|
||||
<property name="<Alt><Control>KP_1" type="empty"/>
|
||||
<property name="<Alt><Control>KP_2" type="empty"/>
|
||||
<property name="<Alt><Control>KP_3" type="empty"/>
|
||||
<property name="<Alt><Control>KP_4" type="empty"/>
|
||||
<property name="<Alt><Control>KP_5" type="empty"/>
|
||||
<property name="<Alt><Control>KP_6" type="empty"/>
|
||||
<property name="<Alt><Control>KP_7" type="empty"/>
|
||||
<property name="<Alt><Control>KP_8" type="empty"/>
|
||||
<property name="<Alt><Control>KP_9" type="empty"/>
|
||||
<property name="<Control><Alt>Right" type="empty"/>
|
||||
<property name="<Control><Alt>d" type="empty"/>
|
||||
<property name="<Control><Alt>Up" type="empty"/>
|
||||
<property name="<Control>F1" type="empty"/>
|
||||
<property name="<Control>F2" type="empty"/>
|
||||
<property name="<Control>F3" type="empty"/>
|
||||
<property name="<Control>F4" type="empty"/>
|
||||
<property name="<Control>F5" type="empty"/>
|
||||
<property name="<Control>F6" type="empty"/>
|
||||
<property name="<Control>F7" type="empty"/>
|
||||
<property name="<Control>F8" type="empty"/>
|
||||
<property name="<Control>F9" type="empty"/>
|
||||
<property name="<Control>F10" type="empty"/>
|
||||
<property name="<Control>F11" type="empty"/>
|
||||
<property name="<Control>F12" type="empty"/>
|
||||
</property>
|
||||
<property name="custom" type="empty">
|
||||
<property name="<Alt>Tab" type="string" value="cycle_windows_key"/>
|
||||
<property name="<Control><Alt>Right" type="string" value="right_workspace_key"/>
|
||||
<property name="Left" type="string" value="left_key"/>
|
||||
<property name="<Control><Shift><Alt>Left" type="string" value="move_window_left_key"/>
|
||||
<property name="<Control><Shift><Alt>Right" type="string" value="move_window_right_key"/>
|
||||
<property name="Up" type="string" value="up_key"/>
|
||||
<property name="<Alt>F4" type="string" value="close_window_key"/>
|
||||
<property name="<Alt>F6" type="string" value="stick_window_key"/>
|
||||
<property name="<Control><Alt>Down" type="string" value="down_workspace_key"/>
|
||||
<property name="<Alt>F7" type="string" value="move_window_key"/>
|
||||
<property name="<Alt>F9" type="string" value="hide_window_key"/>
|
||||
<property name="<Alt>F11" type="string" value="fullscreen_key"/>
|
||||
<property name="<Alt>F8" type="string" value="resize_window_key"/>
|
||||
<property name="Escape" type="string" value="cancel_key"/>
|
||||
<property name="<Alt><Control>KP_1" type="string" value="move_window_workspace_1_key"/>
|
||||
<property name="<Alt><Control>KP_2" type="string" value="move_window_workspace_2_key"/>
|
||||
<property name="<Alt><Control>KP_3" type="string" value="move_window_workspace_3_key"/>
|
||||
<property name="<Alt><Control>KP_4" type="string" value="move_window_workspace_4_key"/>
|
||||
<property name="<Alt><Control>KP_5" type="string" value="move_window_workspace_5_key"/>
|
||||
<property name="<Alt><Control>KP_6" type="string" value="move_window_workspace_6_key"/>
|
||||
<property name="Down" type="string" value="down_key"/>
|
||||
<property name="<Control><Shift><Alt>Up" type="string" value="move_window_up_key"/>
|
||||
<property name="<Shift><Alt>Page_Down" type="string" value="lower_window_key"/>
|
||||
<property name="<Alt>F12" type="string" value="above_key"/>
|
||||
<property name="<Alt><Control>KP_8" type="string" value="move_window_workspace_8_key"/>
|
||||
<property name="<Alt><Control>KP_9" type="string" value="move_window_workspace_9_key"/>
|
||||
<property name="Right" type="string" value="right_key"/>
|
||||
<property name="<Alt>F10" type="string" value="maximize_window_key"/>
|
||||
<property name="<Control><Alt>Up" type="string" value="up_workspace_key"/>
|
||||
<property name="<Control>F10" type="string" value="workspace_10_key"/>
|
||||
<property name="<Alt><Control>KP_7" type="string" value="move_window_workspace_7_key"/>
|
||||
<property name="<Alt><Control>End" type="string" value="move_window_next_workspace_key"/>
|
||||
<property name="<Alt>Delete" type="string" value="del_workspace_key"/>
|
||||
<property name="<Control><Alt>Left" type="string" value="left_workspace_key"/>
|
||||
<property name="<Control>F12" type="string" value="workspace_12_key"/>
|
||||
<property name="<Alt>space" type="string" value="popup_menu_key"/>
|
||||
<property name="<Alt><Shift>Tab" type="string" value="cycle_reverse_windows_key"/>
|
||||
<property name="<Shift><Alt>Page_Up" type="string" value="raise_window_key"/>
|
||||
<property name="<Alt>Insert" type="string" value="add_workspace_key"/>
|
||||
<property name="<Alt><Control>Home" type="string" value="move_window_prev_workspace_key"/>
|
||||
<property name="<Control>F11" type="string" value="workspace_11_key"/>
|
||||
<property name="override" type="bool" value="true"/>
|
||||
<property name="<Super>d" type="string" value="show_desktop_key"/>
|
||||
<property name="<Primary><Alt>Tab" type="string" value="switch_application_key"/>
|
||||
<property name="<Primary><Shift><Alt>Up" type="string" value="move_window_up_workspace_key"/>
|
||||
<property name="<Primary><Shift><Alt>Down" type="string" value="move_window_down_workspace_key"/>
|
||||
<property name="<Primary><Shift><Alt>Left" type="string" value="move_window_left_workspace_key"/>
|
||||
<property name="<Primary><Shift><Alt>Right" type="string" value="move_window_right_workspace_key"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="providers" type="array">
|
||||
<value type="string" value="xfwm4"/>
|
||||
<value type="string" value="commands"/>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -1,63 +1,91 @@
|
||||
<?xml version="1.0" 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"/>
|
||||
<property name="panel-1" type="empty">
|
||||
<property name="position" type="string" value="p=8;x=683;y=752"/>
|
||||
<property name="position" type="string" value="p=8;x=960;y=1059"/>
|
||||
<property name="length" type="uint" value="100"/>
|
||||
<property name="position-locked" type="bool" value="true"/>
|
||||
<property name="size" type="uint" value="28"/>
|
||||
<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="2"/>
|
||||
<value type="int" value="18"/>
|
||||
<value type="int" value="8"/>
|
||||
<value type="int" value="3"/>
|
||||
<value type="int" value="15"/>
|
||||
<value type="int" value="6"/>
|
||||
<value type="int" value="1"/>
|
||||
<value type="int" value="7"/>
|
||||
<value type="int" value="5"/>
|
||||
<value type="int" value="2"/>
|
||||
<value type="int" value="3"/>
|
||||
<value type="int" value="4"/>
|
||||
<value type="int" value="5"/>
|
||||
<value type="int" value="6"/>
|
||||
<value type="int" value="7"/>
|
||||
<value type="int" value="8"/>
|
||||
<value type="int" value="9"/>
|
||||
<value type="int" value="10"/>
|
||||
<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"/>
|
||||
</property>
|
||||
<property name="autohide-behavior" type="uint" value="0"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugins" type="empty">
|
||||
<property name="plugin-3" type="string" value="tasklist">
|
||||
<property name="flat-buttons" type="bool" value="true"/>
|
||||
<property name="show-handle" type="bool" value="false"/>
|
||||
<property name="grouping" type="uint" value="0"/>
|
||||
<property name="show-wireframes" type="bool" value="false"/>
|
||||
<property name="middle-click" type="uint" value="1"/>
|
||||
<property name="plugin-1" type="string" value="applicationsmenu">
|
||||
<property name="custom-menu" type="bool" value="false"/>
|
||||
</property>
|
||||
<property name="plugin-15" type="string" value="separator">
|
||||
<property name="plugin-2" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="15797758814.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-3" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="15797759346.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-4" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="15797759488.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-5" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="16336291841.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-6" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-7" type="string" value="tasklist">
|
||||
<property name="grouping" type="uint" value="1"/>
|
||||
</property>
|
||||
<property name="plugin-8" type="string" value="separator">
|
||||
<property name="expand" type="bool" value="true"/>
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-4" type="string" value="pager">
|
||||
<property name="rows" type="uint" value="2"/>
|
||||
<property name="plugin-9" type="string" value="pager">
|
||||
<property name="rows" type="uint" value="1"/>
|
||||
</property>
|
||||
<property name="plugin-5" type="string" value="clock">
|
||||
<property name="plugin-10" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-11" type="string" value="systray">
|
||||
<property name="show-frame" type="bool" value="false"/>
|
||||
<property name="digital-format" type="string" value="%R %a %d"/>
|
||||
<property name="square-icons" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="plugin-6" type="string" value="systray">
|
||||
<property name="show-frame" type="bool" value="false"/>
|
||||
<property name="plugin-12" type="string" value="separator">
|
||||
<property name="style" type="uint" value="0"/>
|
||||
</property>
|
||||
<property name="plugin-16" type="string" value="showdesktop"/>
|
||||
<property name="plugin-18" type="string" value="launcher">
|
||||
<property name="items" type="array">
|
||||
<value type="string" value="14230559391.desktop"/>
|
||||
</property>
|
||||
</property>
|
||||
<property name="plugin-7" type="string" value="pulseaudio">
|
||||
<property name="plugin-13" type="string" value="pulseaudio">
|
||||
<property name="enable-keyboard-shortcuts" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="plugin-8" type="string" value="places"/>
|
||||
<property name="plugin-2" type="string" value="whiskermenu"/>
|
||||
<property name="plugin-1" type="string" value="battery"/>
|
||||
</property>1
|
||||
</channel>
|
||||
<property name="plugin-14" type="string" value="battery"/>
|
||||
<property name="plugin-15" type="string" value="clock">
|
||||
<property name="mode" type="uint" value="2"/>
|
||||
<property name="digital-format" type="string" value="%R"/>
|
||||
</property>
|
||||
<property name="plugin-16" type="string" value="xkb">
|
||||
<property name="display-type" type="uint" value="2"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
@@ -1,10 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<channel name="xfce4-session" version="1.0">
|
||||
<property name="splash" type="empty">
|
||||
<property name="Engine" type="string" value=""/>
|
||||
</property>
|
||||
<property name="general" type="empty">
|
||||
<property name="FailsafeSessionName" type="empty"/>
|
||||
<property name="LockCommand" type="empty"/>
|
||||
<property name="SessionName" type="string" value="Default"/>
|
||||
<property name="SaveOnExit" type="bool" value="false"/>
|
||||
</property>
|
||||
@@ -12,26 +11,21 @@
|
||||
<property name="Failsafe" type="empty">
|
||||
<property name="IsFailsafe" type="empty"/>
|
||||
<property name="Count" type="empty"/>
|
||||
<property name="Client0_Command" type="array">
|
||||
<value type="string" value="xfwm4"/>
|
||||
</property>
|
||||
<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="array">
|
||||
<value type="string" value="xfce4-panel"/>
|
||||
</property>
|
||||
<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>
|
||||
<property name="compat" type="empty">
|
||||
<property name="LaunchGNOME" type="bool" value="true"/>
|
||||
</property>
|
||||
<property name="shutdown" type="empty">
|
||||
<property name="LockScreen" type="bool" value="true"/>
|
||||
</property>
|
||||
</channel>
|
||||
</channel>
|
||||
@@ -26,9 +26,8 @@
|
||||
<property name="snap_to_windows" type="bool" value="true"/>
|
||||
<property name="snap_width" type="int" value="8"/>
|
||||
<property name="sync_to_vblank" type="bool" value="true"/>
|
||||
<property name="theme" type="string" value="Arc-Darker"/>
|
||||
<property name="theme" type="string" value="Adwaita-dark"/>
|
||||
<property name="title_alignment" type="string" value="left"/>
|
||||
<property name="title_font" type="string" value="Roboto 10"/>
|
||||
<property name="title_horizontal_offset" type="int" value="0"/>
|
||||
<property name="title_shadow_active" type="string" value="false"/>
|
||||
<property name="titleless_maximize" type="bool" value="false"/>
|
||||
@@ -36,10 +35,9 @@
|
||||
<property name="urgent_blink" type="bool" value="true"/>
|
||||
<property name="use_compositing" type="bool" value="true"/>
|
||||
<property name="zoom_desktop" type="bool" value="true"/>
|
||||
<property name="workspace_count" type="int" value="2"/>
|
||||
<property name="workspace_count" type="int" value="1"/>
|
||||
<property name="workspace_names" type="array">
|
||||
<value type="string" value="Workspace 1"/>
|
||||
<value type="string" value="Workspace 2"/>
|
||||
</property>
|
||||
</property>
|
||||
</channel>
|
||||
|
||||
@@ -2,8 +2,8 @@
|
||||
|
||||
<channel name="xsettings" version="1.0">
|
||||
<property name="Net" type="empty">
|
||||
<property name="ThemeName" type="string" value="Arc-Darker"/>
|
||||
<property name="IconThemeName" type="string" value="Papirus-Dark"/>
|
||||
<property name="ThemeName" type="string" value="Adwaita-dark"/>
|
||||
<property name="IconThemeName" type="string" value="Adwaita"/>
|
||||
</property>
|
||||
<property name="Xft" type="empty">
|
||||
<property name="DPI" type="empty"/>
|
||||
@@ -13,7 +13,6 @@
|
||||
<property name="RGBA" type="string" value="none"/>
|
||||
</property>
|
||||
<property name="Gtk" type="empty">
|
||||
<property name="FontName" type="string" value="Roboto 10"/>
|
||||
<property name="ToolbarStyle" type="string" value="icons"/>
|
||||
<property name="ToolbarIconSize" type="int" value="3"/>
|
||||
<property name="MenuImages" type="bool" value="true"/>
|
||||
|
||||
@@ -1,2 +0,0 @@
|
||||
--add-metadata
|
||||
--output '%(title)s-%(id)s-%(extractor)s.%(ext)s'
|
||||
@@ -1,133 +0,0 @@
|
||||
conky.config = {
|
||||
-- Conky configuration
|
||||
-- https://gitlab.com/nodiscc/debian-live-config
|
||||
-- Enable more items by commenting out their respective lines
|
||||
-- To install/enable scripts for extra functionality:
|
||||
-- git clone https://gitlab.com/nodiscc/toolbox; sudo cp -r toolbox/ARCHIVE/conky-scripts /opt/
|
||||
background = false,
|
||||
border_margin = '5',
|
||||
border_width = 5,
|
||||
cpu_avg_samples = 2,
|
||||
-- default_outline_color 000000
|
||||
-- default_shade_color 000000
|
||||
double_buffer = true,
|
||||
draw_borders = false,
|
||||
draw_graph_borders = false,
|
||||
draw_outline = false,
|
||||
draw_shades = false,
|
||||
gap_x = 30,
|
||||
gap_y = 50,
|
||||
max_specials = '1024',
|
||||
max_user_text = 10000,
|
||||
maximum_width = 900,
|
||||
minimum_width = 350,
|
||||
net_avg_samples = 2,
|
||||
no_buffers = true,
|
||||
override_utf8_locale = true,
|
||||
own_window_class = 'Conky',
|
||||
own_window = true,
|
||||
own_window_argb_visual = true,
|
||||
-- own_window_argb_value 0
|
||||
-- own_window_colour 000000
|
||||
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
|
||||
own_window_transparent = true,
|
||||
own_window_type = 'normal',
|
||||
pad_percents = 2,
|
||||
short_units = true,
|
||||
stippled_borders = 3,
|
||||
text_buffer_size = 8000,
|
||||
total_run_times = 0,
|
||||
uppercase = false,
|
||||
use_spacer = 'right',
|
||||
use_xft = true,
|
||||
xftalpha = 1,
|
||||
update_interval = 5.0,
|
||||
-- update_interval 1.0 # for second-precision clock
|
||||
alignment = 'top_right',
|
||||
default_color = '#FFFFFF',
|
||||
-- default_color 000000
|
||||
color1 = '#C6B59B',
|
||||
color2 = '#FF0000',
|
||||
color3 = '#00FF00',
|
||||
font = 'Roboto:pixelsize=17',
|
||||
font = 'Roboto:pixelsize=17',
|
||||
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
##### CLOCK #####
|
||||
### DAY OF WEEK ###
|
||||
${font Roboto:pixelsize=40}${time %A}${font}
|
||||
${hr}
|
||||
### DATE ###
|
||||
${font}${time %B %d, %Y}
|
||||
### TIME ###
|
||||
${font Roboto:pixelsize=40}${time %H:%M}${font}
|
||||
### TIME WITH SECONDS ###
|
||||
#${font Roboto:pixelsize=40}${time %H:%M:%S}${font}
|
||||
|
||||
##### SYSTEM MONITOR #####
|
||||
### MEMORY/CPU USAGE (%) ###
|
||||
#${color1}MEM ${color}${memperc}% ${color1}CPU ${color}${cpu cpu0}%${color1}
|
||||
#
|
||||
### MEMORY USAGE (ABSOLUTE) ###
|
||||
#${color1}MEM USED ${color}${mem} ${color1}MEM FREE ${color}${memeasyfree}${color1}
|
||||
#
|
||||
### SWAP USAGE (ABSOLUTE) ###
|
||||
#${color1}SWP USED ${color}${swap} ${color1}SWP FREE ${color}${swapfree}${color1}
|
||||
#
|
||||
### NETWORK UP/DOWN SPEED ###
|
||||
#${color1}NET UP ${color}${upspeedf eth0} ${color1}NET DWN ${color}${downspeedf eth0}
|
||||
#
|
||||
### PRIVATE IP ADDRESS ###
|
||||
#${color1}LAN IP ${color}${addr eth0}
|
||||
#
|
||||
### PUBLIC IP ADDRESS ###
|
||||
#${color1}WAN IP ${color}${texeci 10800 curl -s https://ifconfig.me}
|
||||
#
|
||||
### FREE DISK SPACE ###
|
||||
#${execpi 30 /opt/conky-scripts/conky-alldisks-free.sh}
|
||||
#
|
||||
### BATTERY/UPTIME ###
|
||||
#${color1}BAT ${color}${battery_percent BAT0}% ${color1}UPTIME ${color}${uptime}
|
||||
#
|
||||
### NUMBER OF RUNNING PROCESSES ###
|
||||
#${color1}PROCESSES ${color}${processes}
|
||||
#
|
||||
### TOP PROCESSES ###
|
||||
#${font sans-serif:bold:size=8}TOP PROCESS ${hr}
|
||||
#${font sans-serif:normal:size=8}NAME $alignr PID CPU
|
||||
#${top name 1} $alignr [${top pid 1}] ${top cpu 1}
|
||||
#${top name 2} $alignr ${top pid 2} ${top cpu 2}
|
||||
#${top name 3} $alignr ${top pid 3} ${top cpu 3}
|
||||
#${top name 4} $alignr ${top pid 4} ${top cpu 4}
|
||||
#${top name 5} $alignr ${top pid 5} ${top cpu 5}
|
||||
#${font}${color}
|
||||
#
|
||||
##### UTILITY/SCRIPTS #####
|
||||
#
|
||||
### MASTER VOLUME LEVEL ###
|
||||
#${color1}VOLUME ${color}${texeci 5 /opt/conky-scripts/conky-master-volume.sh}
|
||||
#
|
||||
### QUODLIBET CURRENT TRACK + COVER ART ###
|
||||
# argument: vertical position of the cover art, in pixels
|
||||
#${execpi 5 /opt/conky-scripts/conky-quodlibet.sh 185}
|
||||
#
|
||||
#
|
||||
### TIMESTAMP CHECKS ###
|
||||
#${execpi 10 /opt/conky-scripts/check-max-age.py ~/.local/cache/last_backup_timestamp 2678400}
|
||||
#${execpi 10 /opt/conky-scripts/check-max-age.py ~/.local/share/last_cron_success 604800}
|
||||
#
|
||||
### MESSAGE OF THE DAY ###
|
||||
#${color1}NEWS ${color}${hr}
|
||||
#${font sans-serif:normal:size=8}${texeci 300 cat /etc/motd | fold -w55}
|
||||
#
|
||||
### THUNDERBIRD EVENTS ###
|
||||
#${color1}EVENTS ${color}${hr}
|
||||
#${font Roboto:pixelsize=12}${execpi 35 /opt/conky-scripts/thundercal -l 5 events}${font}
|
||||
#
|
||||
### THUNDERBIRD TASKS ###
|
||||
#${color1}TASKS ${color}${hr}
|
||||
#${font Roboto:pixelsize=12}${execpi 30 /opt/conky-scripts/thundercal -l 5 tasks}${font}
|
||||
|
||||
]];
|
||||
@@ -1,11 +0,0 @@
|
||||
# GIMP sessionrc
|
||||
#
|
||||
# This file takes session-specific info (that is info, you want to keep
|
||||
# between two GIMP sessions). You are not supposed to edit it manually, but
|
||||
# of course you can do. The sessionrc will be entirely rewritten every time
|
||||
# you quit GIMP. If this file isn't found, defaults are used.
|
||||
|
||||
(hide-docks no)
|
||||
(single-window-mode yes)
|
||||
|
||||
# end of sessionrc
|
||||
@@ -1,27 +0,0 @@
|
||||
[color]
|
||||
ui = true
|
||||
[merge]
|
||||
tool = meld
|
||||
[alias]
|
||||
st = status
|
||||
a = add
|
||||
ch = checkout
|
||||
b = branch -a
|
||||
c = commit
|
||||
ru = remote update
|
||||
l = "log --graph --abbrev-commit --decorate --date=relative --pretty=oneline --all"
|
||||
d = diff
|
||||
wd = diff --color-words=.
|
||||
sl = shortlog
|
||||
gc = gc --aggressive
|
||||
thanks = shortlog -sne
|
||||
|
||||
# force GPG signing of all commits and tags
|
||||
#[commit]
|
||||
# gpgSign = true
|
||||
#[tag]
|
||||
# forceSignAnnotated = true
|
||||
#[gpg]
|
||||
# program = gpg
|
||||
#[user]
|
||||
# signingKey = EE73FC8FD71E3CC83606FDF361B23168A539DBBD
|
||||
@@ -1,3 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Hidden=True
|
||||
@@ -1,3 +0,0 @@
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Hidden=True
|
||||
@@ -1,114 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8' ?>
|
||||
|
||||
<pref version='1' name='/'>
|
||||
|
||||
<pref name='purple'>
|
||||
<pref name='away'>
|
||||
<pref name='idle_reporting' type='string' value='none'/>
|
||||
<pref name='away_when_idle' type='bool' value='0'/>
|
||||
<pref name='mins_before_away' type='int' value='5'/>
|
||||
<pref name='auto_reply' type='string' value='never'/>
|
||||
</pref>
|
||||
|
||||
<pref name='savedstatus'>
|
||||
<pref name='startup_current_status' type='bool' value='1'/>
|
||||
</pref>
|
||||
|
||||
<pref name='conversations'>
|
||||
<pref name='im'>
|
||||
<pref name='send_typing' type='bool' value='1'/>
|
||||
</pref>
|
||||
</pref>
|
||||
|
||||
<pref name='logging'>
|
||||
<pref name='log_ims' type='bool' value='1'/>
|
||||
<pref name='log_chats' type='bool' value='1'/>
|
||||
<pref name='log_system' type='bool' value='1'/>
|
||||
<pref name='format' type='string' value='html'/>
|
||||
</pref>
|
||||
</pref>
|
||||
|
||||
<pref name='plugins'>
|
||||
<pref name='core'>
|
||||
<pref name='statenotify'>
|
||||
<pref name='notify_away' type='bool' value='1'/>
|
||||
<pref name='notify_idle' type='bool' value='0'/>
|
||||
<pref name='notify_signon' type='bool' value='1'/>
|
||||
</pref>
|
||||
|
||||
<pref name='newline'>
|
||||
<pref name='im' type='bool' value='1'/>
|
||||
<pref name='chat' type='bool' value='1'/>
|
||||
</pref>
|
||||
</pref>
|
||||
|
||||
<pref name='lopl'/>
|
||||
<pref name='gtk'>
|
||||
<pref name='libnotify'>
|
||||
<pref name='newmsg' type='bool' value='1'/>
|
||||
<pref name='blocked' type='bool' value='1'/>
|
||||
<pref name='newconvonly' type='bool' value='0'/>
|
||||
<pref name='signon' type='bool' value='0'/>
|
||||
<pref name='signoff' type='bool' value='0'/>
|
||||
<pref name='only_available' type='bool' value='1'/>
|
||||
<pref name='auto_loaded' type='bool' value='1'/>
|
||||
</pref>
|
||||
</pref>
|
||||
</pref>
|
||||
|
||||
<pref name='pidgin'>
|
||||
<pref name='browsers'>
|
||||
<pref name='browser' type='string' value='custom'/>
|
||||
<pref name='place' type='int' value='0'/>
|
||||
<pref name='manual_command' type='string' value='gnome-www-browser %s'/>
|
||||
</pref>
|
||||
|
||||
<pref name='plugins'>
|
||||
<pref name='loaded' type='pathlist'>
|
||||
<item value='/usr/lib/purple-2/statenotify.so'/>
|
||||
<item value='/usr/lib/pidgin/gnome-keyring.so'/>
|
||||
<item value='/usr/lib/pidgin/history.so'/>
|
||||
<item value='/usr/lib/purple-2/irchelper.so'/>
|
||||
<item value='/usr/lib/purple-2/irc-more.so'/>
|
||||
<item value='/usr/lib/purple-2/joinpart.so'/>
|
||||
<item value='/usr/lib/pidgin/lastseen.so'/>
|
||||
<item value='/usr/lib/pidgin/notify.so'/>
|
||||
<item value='/usr/lib/pidgin/pidgin-otr.so'/>
|
||||
<item value='/usr/lib/purple-2/pidgin-libnotify.so'/>
|
||||
<item value='/usr/lib/pidgin/sendbutton.so'/>
|
||||
<item value='/usr/lib/pidgin/vvconfig.so'/>
|
||||
</pref>
|
||||
</pref>
|
||||
|
||||
<pref name='sound'>
|
||||
<pref name='mute' type='bool' value='1'/>
|
||||
<pref name='method' type='string' value='automatic'/>
|
||||
<pref name='volume' type='int' value='40'/>
|
||||
</pref>
|
||||
|
||||
<pref name='blist'>
|
||||
<pref name='show_buddy_icons' type='bool' value='1'/>
|
||||
<pref name='show_empty_groups' type='bool' value='0'/>
|
||||
<pref name='show_idle_time' type='bool' value='1'/>
|
||||
<pref name='show_offline_buddies' type='bool' value='1'/>
|
||||
<pref name='show_protocol_icons' type='bool' value='1'/>
|
||||
<pref name='list_visible' type='bool' value='0'/>
|
||||
<pref name='list_maximized' type='bool' value='0'/>
|
||||
<pref name='sort_type' type='string' value='status'/>
|
||||
</pref>
|
||||
|
||||
<pref name='conversations'>
|
||||
<pref name='toolbar'>
|
||||
<pref name='wide' type='bool' value='0'/>
|
||||
</pref>
|
||||
</pref>
|
||||
</pref>
|
||||
|
||||
<pref name='OTR'>
|
||||
<pref name='enabled' type='bool' value='1'/>
|
||||
<pref name='automatic' type='bool' value='0'/>
|
||||
<pref name='onlyprivate' type='bool' value='0'/>
|
||||
<pref name='avoidloggingotr' type='bool' value='1'/>
|
||||
</pref>
|
||||
|
||||
</pref>
|
||||
@@ -1,71 +0,0 @@
|
||||
[header_maps]
|
||||
|
||||
[__config__]
|
||||
version = 0
|
||||
|
||||
[player]
|
||||
replaygain = false
|
||||
time_remaining = false
|
||||
|
||||
[settings]
|
||||
jump = true
|
||||
columns = ~rating,~#track,~title~version,artist,~album~discsubtitle,~#disc,genre,~#length,~#bitrate,~filename,~#lastplayed,~format
|
||||
ratings = 5
|
||||
repeat = False
|
||||
default_rating = 0.0
|
||||
|
||||
[browsers]
|
||||
panes = artist <album> genre ~rating
|
||||
rating_click = true
|
||||
color = true
|
||||
album_covers = true
|
||||
|
||||
[memory]
|
||||
browser = Paned
|
||||
maximized = 0
|
||||
quodlibet_maximized = 4
|
||||
open_browsers =
|
||||
order = inorder
|
||||
queue = True
|
||||
queue_expanded = False
|
||||
shuffle = False
|
||||
shufflequeue = false
|
||||
songlist = true
|
||||
sortby = 0~#track
|
||||
volume = 1.0
|
||||
|
||||
[editing]
|
||||
alltags = true
|
||||
save_to_songs = true
|
||||
|
||||
[plugins]
|
||||
active_plugins = Title Case
|
||||
Burn CD
|
||||
ExportMeta
|
||||
Browse Folders
|
||||
MusicBrainz lookup
|
||||
Alarm Clock
|
||||
Picture Saver
|
||||
CDDB lookup
|
||||
Download Album art
|
||||
Tray Icon
|
||||
filterbrowser
|
||||
Equalizer
|
||||
SeekBar
|
||||
Export to HTML
|
||||
Duplicates
|
||||
mpris
|
||||
Notify
|
||||
Playlist Export
|
||||
Force Write
|
||||
Search artist in Wikipedia
|
||||
browsefolders = thunar
|
||||
cover_fn = folder.jpg
|
||||
icon_tooltip = <album|<album~discnumber~part~tracknumber~title~version>|<artist~title~version>>
|
||||
k3b = xfburn
|
||||
notify_show_notifications = all
|
||||
wikipedia = en
|
||||
|
||||
[library]
|
||||
refresh_on_start = true
|
||||
|
||||
@@ -1,5 +0,0 @@
|
||||
Host *
|
||||
PubkeyAuthentication yes
|
||||
ControlPath ~/.ssh/master-%r@%h:%p
|
||||
ControlMaster auto
|
||||
ControlPersist 60
|
||||
@@ -1 +0,0 @@
|
||||
/dev/null
|
||||
Reference in New Issue
Block a user