first commit
This commit is contained in:
4
home_org/thinclient/.bash_history
Normal file
4
home_org/thinclient/.bash_history
Normal file
@ -0,0 +1,4 @@
|
||||
ls -al
|
||||
startx
|
||||
/etc/init.d/lightdm start
|
||||
exit
|
7
home_org/thinclient/.bash_logout
Normal file
7
home_org/thinclient/.bash_logout
Normal file
@ -0,0 +1,7 @@
|
||||
# ~/.bash_logout: executed by bash(1) when login shell exits.
|
||||
|
||||
# when leaving the console clear the screen to increase privacy
|
||||
|
||||
if [ "$SHLVL" = 1 ]; then
|
||||
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
||||
fi
|
117
home_org/thinclient/.bashrc
Normal file
117
home_org/thinclient/.bashrc
Normal file
@ -0,0 +1,117 @@
|
||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
||||
# for examples
|
||||
|
||||
# If not running interactively, don't do anything
|
||||
case $- in
|
||||
*i*) ;;
|
||||
*) return;;
|
||||
esac
|
||||
|
||||
# don't put duplicate lines or lines starting with space in the history.
|
||||
# See bash(1) for more options
|
||||
HISTCONTROL=ignoreboth
|
||||
|
||||
# append to the history file, don't overwrite it
|
||||
shopt -s histappend
|
||||
|
||||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
||||
HISTSIZE=1000
|
||||
HISTFILESIZE=2000
|
||||
|
||||
# check the window size after each command and, if necessary,
|
||||
# update the values of LINES and COLUMNS.
|
||||
shopt -s checkwinsize
|
||||
|
||||
# If set, the pattern "**" used in a pathname expansion context will
|
||||
# match all files and zero or more directories and subdirectories.
|
||||
#shopt -s globstar
|
||||
|
||||
# make less more friendly for non-text input files, see lesspipe(1)
|
||||
[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
||||
|
||||
# set variable identifying the chroot you work in (used in the prompt below)
|
||||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
||||
debian_chroot=$(cat /etc/debian_chroot)
|
||||
fi
|
||||
|
||||
# set a fancy prompt (non-color, unless we know we "want" color)
|
||||
case "$TERM" in
|
||||
xterm-color|*-256color) color_prompt=yes;;
|
||||
esac
|
||||
|
||||
# uncomment for a colored prompt, if the terminal has the capability; turned
|
||||
# off by default to not distract the user: the focus in a terminal window
|
||||
# should be on the output of commands, not on the prompt
|
||||
#force_color_prompt=yes
|
||||
|
||||
if [ -n "$force_color_prompt" ]; then
|
||||
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
||||
# We have color support; assume it's compliant with Ecma-48
|
||||
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
||||
# a case would tend to support setf rather than setaf.)
|
||||
color_prompt=yes
|
||||
else
|
||||
color_prompt=
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "$color_prompt" = yes ]; then
|
||||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
||||
else
|
||||
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
||||
fi
|
||||
unset color_prompt force_color_prompt
|
||||
|
||||
# If this is an xterm set the title to user@host:dir
|
||||
case "$TERM" in
|
||||
xterm*|rxvt*)
|
||||
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\h: \w\a\]$PS1"
|
||||
;;
|
||||
*)
|
||||
;;
|
||||
esac
|
||||
|
||||
# enable color support of ls and also add handy aliases
|
||||
if [ -x /usr/bin/dircolors ]; then
|
||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
||||
alias ls='ls --color=auto'
|
||||
#alias dir='dir --color=auto'
|
||||
#alias vdir='vdir --color=auto'
|
||||
|
||||
alias grep='grep --color=auto'
|
||||
alias fgrep='fgrep --color=auto'
|
||||
alias egrep='egrep --color=auto'
|
||||
fi
|
||||
|
||||
# colored GCC warnings and errors
|
||||
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
||||
|
||||
# some more ls aliases
|
||||
alias ll='ls -alF'
|
||||
alias la='ls -A'
|
||||
alias l='ls -CF'
|
||||
|
||||
# Add an "alert" alias for long running commands. Use like so:
|
||||
# sleep 10; alert
|
||||
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'
|
||||
|
||||
# Alias definitions.
|
||||
# You may want to put all your additions into a separate file like
|
||||
# ~/.bash_aliases, instead of adding them here directly.
|
||||
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
||||
|
||||
if [ -f ~/.bash_aliases ]; then
|
||||
. ~/.bash_aliases
|
||||
fi
|
||||
|
||||
# enable programmable completion features (you don't need to enable
|
||||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
||||
# sources /etc/bash.bashrc).
|
||||
if ! shopt -oq posix; then
|
||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
||||
. /usr/share/bash-completion/bash_completion
|
||||
elif [ -f /etc/bash_completion ]; then
|
||||
. /etc/bash_completion
|
||||
fi
|
||||
fi
|
36
home_org/thinclient/.config/Trolltech.conf
Normal file
36
home_org/thinclient/.config/Trolltech.conf
Normal file
@ -0,0 +1,36 @@
|
||||
[Qt]
|
||||
font="Ubuntu,11,-1,5,63,0,0,0,0,0"
|
||||
Palette\active=#4c4c4c, #f2f1f0, #ffffff, #f8f8f7, #797878, #a1a1a0, #3c3c3c, #ffffff, #4c4c4c, #ffffff, #f2f1f0, #000000, #87a752, #ffffff, #acc089, #87a752, #efefef, #000000, #ffffdc, #ffffff
|
||||
Palette\inactive=#4c4c4c, #f2f1f0, #ffffff, #ffffff, #797878, #a1a1a0, #3c3c3c, #ffffff, #4c4c4c, #ffffff, #f2f1f0, #000000, #87a752, #ffffff, #acc089, #87a752, #efefef, #000000, #ffffdc, #ffffff
|
||||
Palette\disabled=#808080, #f2f1f0, #ffffff, #ffffff, #797878, #a1a1a0, #808080, #ffffff, #808080, #ffffff, #f2f1f0, #000000, #87a752, #808080, #acc089, #87a752, #efefef, #000000, #ffffdc, #ffffff
|
||||
fontPath=@Invalid()
|
||||
embedFonts=true
|
||||
style=GTK+
|
||||
doubleClickInterval=400
|
||||
cursorFlashTime=1000
|
||||
wheelScrollLines=3
|
||||
resolveSymlinks=false
|
||||
globalStrut\width=0
|
||||
globalStrut\height=0
|
||||
useRtlExtensions=false
|
||||
XIMInputStyle=On The Spot
|
||||
DefaultInputMethod=xim
|
||||
audiosink=Auto
|
||||
videomode=Auto
|
||||
GUIEffects=none
|
||||
customColors\0=4289511561
|
||||
customColors\1=4294967295
|
||||
customColors\2=4287080274
|
||||
customColors\3=4294967295
|
||||
customColors\4=4294967295
|
||||
customColors\5=4294967295
|
||||
customColors\6=4294967295
|
||||
customColors\7=4294967295
|
||||
customColors\8=4294967295
|
||||
customColors\9=4294967295
|
||||
customColors\10=4294967295
|
||||
customColors\11=4294967295
|
||||
customColors\12=4294967295
|
||||
customColors\13=4294967295
|
||||
customColors\14=4294967295
|
||||
customColors\15=4294967295
|
@ -0,0 +1,9 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=/home/thinclient/.wp/sysinfo4wp.sh /home/thinclient/.wp/hg.png
|
||||
Hidden=false
|
||||
X-MATE-Autostart-enabled=true
|
||||
Name[de_DE]=Hintergrundbild
|
||||
Name=Hintergrundbild
|
||||
Comment[de_DE]=Hintergrundbild erzeugen
|
||||
Comment=Hintergrundbild erzeugen
|
174
home_org/thinclient/.config/caja/accels
Normal file
174
home_org/thinclient/.config/caja/accels
Normal file
@ -0,0 +1,174 @@
|
||||
; caja GtkAccelMap rc-file -*- scheme -*-
|
||||
; this file is an automated accelerator map dump
|
||||
;
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Trash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Save Search" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Emblems" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/TabsNext" "<Primary>Page_Down")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Poll" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Trash" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Go to Location" "<Primary>l")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Stretch" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab8" "<Alt>9")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/MoveToMenu" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomInAccel" "<Primary>equal")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationTrash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/RenameSelectAll" "<Shift>F2")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Back" "<Alt>Left")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Undo" "<Primary>z")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab7" "<Alt>8")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/CopyToMenu" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Add Bookmark" "<Primary>d")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Empty Trash" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Close" "<Primary>w")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationRestoreFromTrash" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Manual Layout" "")
|
||||
; (gtk_accel_path "<Actions>/ExtensionsMenuGroup/CajaOpenTerminal::open_terminal" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom Normal" "<Primary>0")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab1" "<Alt>2")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Show Hide Extra Pane" "F3")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Create Link" "<Primary>m")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Clear History" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationDelete" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Trash Time" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OtherApplication2" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenInNewTab" "<Primary><Shift>o")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OtherApplication1" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Show Hide Statusbar" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Folder Window" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab9" "<Alt>0")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Connect to Server" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Help" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab6" "<Alt>7")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab5" "<Alt>6")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomInAccel2" "<Primary>KP_Add")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab3" "<Alt>4")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab2" "<Alt>3")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/ShowSearch" "<Primary>f")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab0" "<Alt>1")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Tab4" "<Alt>5")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Close All Folders" "<Primary>q")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/File" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/TabsPrevious" "<Primary>Page_Up")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/TabsMoveRight" "<Primary><Shift>Page_Down")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Caja Manual" "F1")
|
||||
; (gtk_accel_path "<Actions>/ClipboardActions/Paste" "<Primary>v")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Network" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy" "<Primary>c")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Type" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/View" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Empty File" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/About Caja" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Unstretch" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom Out" "<Primary>minus")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Show Hide Location Bar" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenCloseParent" "<Shift><Alt>Down")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Close Parent Folders" "<Primary><Shift>w")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open" "<Primary>o")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Bookmarks" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Connect To Server Link" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Edit Bookmarks" "<Primary>b")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Reset to Defaults" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/SplitViewNextPane" "F6")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationCut" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Zoom In" "<Primary>plus")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenFolderWindow" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/ClipboardActions/Select All" "<Primary>a")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Tighter Layout" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Paste Files Into" "")
|
||||
; (gtk_accel_path "<Actions>/ClipboardActions/Copy" "<Primary>c")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationCopy" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenAccel" "<Alt>Down")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open With" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Edit" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Up" "<Alt>Up")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Open Scripts Folder" "")
|
||||
; (gtk_accel_path "<Actions>/ClipboardActions/Cut" "<Primary>x")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Forward" "<Alt>Right")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Documents" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Go to Location" "<Primary>l")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Reload" "<Primary>r")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to Home" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Backgrounds and Emblems" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/No Templates" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Format Volume" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/ZoomOutAccel" "<Primary>KP_Subtract")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/SplitViewSameLocation" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationPasteFilesInto" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Size" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Select All" "<Primary>a")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenAlternate" "<Primary><Shift>o")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Preferences" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Poll" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Select Pattern" "<Primary>s")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/Change Background" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Reversed Order" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Computer" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Go" "")
|
||||
; (gtk_accel_path "<Actions>/ExtensionsMenuGroup/DejaDupCajaMenu::Missing" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Restore From Trash" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Location Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationProperties" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Rename" "F2")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Redo" "<Primary>y")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Go to Templates" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Show Hidden Files" "<Primary>h")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Start Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to next pane" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/OpenFolderWindow" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenInNewTab" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Duplicate" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Eject Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/New Tab" "<Primary>t")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/PropertiesAccel" "<Primary>i")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/New Window" "<Primary>n")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Home" "<Alt>Home")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Clean Up" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Modification Date" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Save Search As" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Search" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Keep Aligned" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Launcher" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Properties" "<Alt>Return")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Add Bookmark" "<Primary>d")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/TabsMoveLeft" "<Primary><Shift>Page_Up")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/ShellActions/Stop" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/New Folder" "<Primary><Shift>n")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Poll" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Move to Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Cut" "<Primary>x")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_4" "<Primary>4")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Delete" "<Shift>Delete")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/New Launcher Desktop" "")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Sort by Name" "")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_2" "<Primary>2")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_3" "<Primary>3")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Paste" "<Primary>v")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Invert Selection" "<Primary><Shift>i")
|
||||
; (gtk_accel_path "<Caja-Window>/view_as_1" "<Primary>1")
|
||||
; (gtk_accel_path "<Actions>/DesktopViewActions/Empty Trash Conditional" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Close All Windows" "<Primary>q")
|
||||
; (gtk_accel_path "<Actions>/IconViewActions/Arrange Items" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Show Hide Sidebar" "F9")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Stop Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Places" "")
|
||||
; (gtk_accel_path "<Actions>/NavigationActions/Show Hide Toolbar" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Edit Bookmarks" "<Primary>b")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to Home" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Mount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/SpatialActions/Search" "<Primary>f")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Self Unmount Volume" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/Copy to next pane" "")
|
||||
; (gtk_accel_path "<Actions>/DirViewActions/LocationOpenAlternate" "")
|
8
home_org/thinclient/.config/caja/desktop-metadata
Normal file
8
home_org/thinclient/.config/caja/desktop-metadata
Normal file
@ -0,0 +1,8 @@
|
||||
[directory]
|
||||
caja-icon-view-keep-aligned=true
|
||||
caja-icon-view-layout-timestamp=1485093624
|
||||
|
||||
[home]
|
||||
caja-icon-position=64,22
|
||||
icon-scale=1
|
||||
caja-icon-position-timestamp=1485093624
|
BIN
home_org/thinclient/.config/dconf/user
Normal file
BIN
home_org/thinclient/.config/dconf/user
Normal file
Binary file not shown.
66
home_org/thinclient/.config/galculator/galculator.conf
Normal file
66
home_org/thinclient/.config/galculator/galculator.conf
Normal file
@ -0,0 +1,66 @@
|
||||
|
||||
[general]
|
||||
|
||||
display_bkg_color="#ffffff"
|
||||
display_result_font="Sans Bold 26"
|
||||
display_result_color="black"
|
||||
display_stack_font="Sans Bold 11"
|
||||
display_stack_color="black"
|
||||
display_module_font="Sans Bold 8"
|
||||
display_module_active_color="black"
|
||||
display_module_inactive_color="grey"
|
||||
display_module_number=true
|
||||
display_module_angle=true
|
||||
display_module_notation=true
|
||||
display_module_arith=true
|
||||
display_module_open=true
|
||||
custom_button_font=false
|
||||
button_font="Sans 10"
|
||||
button_width=40
|
||||
button_height=25
|
||||
function_button_group=true
|
||||
dispctrl_button_group=true
|
||||
logic_button_group=true
|
||||
standard_button_group=true
|
||||
mode=0
|
||||
dec_sep=false
|
||||
dec_sep_length=3
|
||||
dec_sep_char=" "
|
||||
hex_bits=32
|
||||
hex_signed=true
|
||||
hex_sep=false
|
||||
hex_sep_length=4
|
||||
hex_sep_char=" "
|
||||
oct_bits=32
|
||||
oct_signed=true
|
||||
oct_sep=false
|
||||
oct_sep_length=3
|
||||
oct_sep_char=" "
|
||||
bin_bits=16
|
||||
bin_signed=true
|
||||
bin_fixed=false
|
||||
bin_length=8
|
||||
bin_sep=false
|
||||
bin_sep_length=4
|
||||
bin_sep_char=" "
|
||||
default_number_base=0
|
||||
default_angle_base=1
|
||||
default_notation_mode=0
|
||||
stack_size=3
|
||||
remembers_display=false
|
||||
remembered_valuex="0"
|
||||
remembered_valuey="0"
|
||||
remembered_valuez="0"
|
||||
remembered_valuet="0"
|
||||
show_menu_bar=true
|
||||
|
||||
[constants]
|
||||
|
||||
Pi:pi=3,14159265359
|
||||
Eulersche Zahl:e=2,71828182846
|
||||
|
||||
[user functions]
|
||||
|
||||
abs(x)=sqrt(x^2)
|
||||
sign(x)=x/abs(x)
|
||||
cot(x)=cos(x)/sin(x)
|
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<oor:items xmlns:oor="http://openoffice.org/2001/registry" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
||||
<item oor:path="/org.openoffice.Office.Common/Misc"><prop oor:name="SymbolStyle" oor:op="fuse"><value>human</value></prop></item>
|
||||
</oor:items>
|
86
home_org/thinclient/.config/menus/mate-applications.menu
Normal file
86
home_org/thinclient/.config/menus/mate-applications.menu
Normal file
@ -0,0 +1,86 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>plank.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>seahorse.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-search-tool.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>org.gnome.DiskUtility.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>synapse.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>vim.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,43 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,46 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,49 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,52 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,55 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,58 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,65 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,68 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,71 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>plank.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,74 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>plank.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>seahorse.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,77 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>plank.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>seahorse.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-search-tool.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,80 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>plank.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>seahorse.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-search-tool.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>org.gnome.DiskUtility.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,83 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Applications</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-applications.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Universal Access</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Graphics</Name>
|
||||
<Exclude>
|
||||
<Filename>simple-scan.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>shotwell.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-color-select.desktop</Filename>
|
||||
</Exclude>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Internet</Name>
|
||||
<Exclude>
|
||||
<Filename>thunderbird.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Multimedia</Name>
|
||||
<DirectoryDir>/home/thinclient/.local/share/desktop-directories</DirectoryDir>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>System</Name>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>mate-terminal.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-monitor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>ca.desrt.dconf-editor.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>avahi-discover.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>gdebi.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-system-log.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
<Menu>
|
||||
<Name>Accessories</Name>
|
||||
<Exclude>
|
||||
<Filename>deja-dup-preferences.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>engrampa.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>plank.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>seahorse.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>mate-search-tool.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>org.gnome.DiskUtility.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>synapse.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
26
home_org/thinclient/.config/menus/mate-settings.menu
Normal file
26
home_org/thinclient/.config/menus/mate-settings.menu
Normal file
@ -0,0 +1,26 @@
|
||||
<!DOCTYPE Menu
|
||||
PUBLIC '-//freedesktop//DTD Menu 1.0//EN'
|
||||
'http://standards.freedesktop.org/menu-spec/menu-1.0.dtd'>
|
||||
<Menu>
|
||||
<Name>Desktop</Name>
|
||||
<MergeFile type="parent">/etc/xdg/menus/mate-settings.menu</MergeFile>
|
||||
<Menu>
|
||||
<Name>Administration</Name>
|
||||
<Exclude>
|
||||
<Filename>ubuntu-mate-welcome.desktop</Filename>
|
||||
</Exclude>
|
||||
<AppDir>/home/thinclient/.local/share/applications</AppDir>
|
||||
<Exclude>
|
||||
<Filename>ubuntu-mate-software.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>users.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>software-properties-gtk.desktop</Filename>
|
||||
</Exclude>
|
||||
<Exclude>
|
||||
<Filename>update-manager.desktop</Filename>
|
||||
</Exclude>
|
||||
</Menu>
|
||||
</Menu>
|
@ -0,0 +1,14 @@
|
||||
#This file auto-generated by Plank.
|
||||
#2016-03-13T22:37:47+0000
|
||||
|
||||
[PlankDockItemPreferences]
|
||||
#The uri for this item.
|
||||
Launcher=docklet://clock
|
||||
|
||||
[DockyClockPreferences]
|
||||
#If the clock shows 24hr time (when showing digital and in the hover).
|
||||
ShowMilitary=false
|
||||
#If the clock shows a digital clock (true) or an analog clock (false).
|
||||
ShowDigital=false
|
||||
#If the clock shows the date in digital mode.
|
||||
ShowDate=false
|
@ -0,0 +1,2 @@
|
||||
[PlankDockItemPreferences]
|
||||
Launcher=docklet://desktop
|
@ -0,0 +1,2 @@
|
||||
[PlankDockItemPreferences]
|
||||
Launcher=file:///usr/share/applications/firefox.desktop
|
@ -0,0 +1,2 @@
|
||||
[PlankDockItemPreferences]
|
||||
Launcher=file:///usr/share/applications/matecc.desktop
|
7
home_org/thinclient/.config/synapse/config.json
Normal file
7
home_org/thinclient/.config/synapse/config.json
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"ui" : {
|
||||
"global" : {
|
||||
"ui-type" : "side-doish"
|
||||
}
|
||||
}
|
||||
}
|
82
home_org/thinclient/.config/tilda/config_0
Normal file
82
home_org/thinclient/.config/tilda/config_0
Normal file
@ -0,0 +1,82 @@
|
||||
tilda_config_version = "1.1.11"
|
||||
# image = ""
|
||||
# command = ""
|
||||
font = "Ubuntu Mono 12"
|
||||
key = "F12"
|
||||
addtab_key = "<Shift><Control>t"
|
||||
fullscreen_key = "F11"
|
||||
closetab_key = "<Shift><Control>w"
|
||||
nexttab_key = "<Control>Page_Down"
|
||||
prevtab_key = "<Control>Page_Up"
|
||||
movetableft_key = "<Shift><Control>Page_Up"
|
||||
movetabright_key = "<Shift><Control>Page_Down"
|
||||
gototab_1_key = "<Alt>1"
|
||||
gototab_2_key = "<Alt>2"
|
||||
gototab_3_key = "<Alt>3"
|
||||
gototab_4_key = "<Alt>4"
|
||||
gototab_5_key = "<Alt>5"
|
||||
gototab_6_key = "<Alt>6"
|
||||
gototab_7_key = "<Alt>7"
|
||||
gototab_8_key = "<Alt>8"
|
||||
gototab_9_key = "<Alt>9"
|
||||
gototab_10_key = "<Alt>0"
|
||||
copy_key = "<Shift><Control>c"
|
||||
paste_key = "<Shift><Control>v"
|
||||
quit_key = "<Shift><Control>q"
|
||||
title = "Tilda"
|
||||
background_color = "white"
|
||||
# working_dir = ""
|
||||
web_browser = "x-www-browser"
|
||||
word_chars = "-A-Za-z0-9,./?%&#:_"
|
||||
lines = 1024
|
||||
max_width = 1920
|
||||
max_height = 384
|
||||
min_width = 1
|
||||
min_height = 1
|
||||
transparency = 72
|
||||
x_pos = 0
|
||||
y_pos = 0
|
||||
tab_pos = 1
|
||||
backspace_key = 0
|
||||
delete_key = 1
|
||||
d_set_title = 0
|
||||
command_exit = 2
|
||||
scheme = 0
|
||||
slide_sleep_usec = 20000
|
||||
animation_orientation = 0
|
||||
timer_resolution = 200
|
||||
auto_hide_time = 2000
|
||||
on_last_terminal_exit = 1
|
||||
palette_scheme = 0
|
||||
show_on_monitor_number = 0
|
||||
palette = {11822, 13364, 13878, 52428, 0, 0, 20046, 39578, 1542, 50372, 41120, 0, 13364, 25957, 42148, 30069, 20560, 31611, 1542, 38944, 39578, 54227, 55255, 53199, 21845, 22359, 21331, 61423, 10537, 10537, 35466, 58082, 13364, 64764, 59881, 20303, 29298, 40863, 53199, 44461, 32639, 43176, 13364, 58082, 58082, 61166, 61166, 60652}
|
||||
scrollbar_pos = 2
|
||||
back_red = 13107
|
||||
back_green = 12850
|
||||
back_blue = 12079
|
||||
text_red = 54227
|
||||
text_green = 55255
|
||||
text_blue = 53199
|
||||
scroll_background = true
|
||||
scroll_on_output = false
|
||||
notebook_border = false
|
||||
antialias = true
|
||||
scrollbar = false
|
||||
use_image = false
|
||||
grab_focus = true
|
||||
above = false
|
||||
notaskbar = true
|
||||
bold = false
|
||||
blinks = true
|
||||
scroll_on_key = true
|
||||
bell = false
|
||||
run_command = false
|
||||
pinned = true
|
||||
animation = false
|
||||
hidden = true
|
||||
centered_horizontally = false
|
||||
centered_vertically = false
|
||||
enable_transparency = false
|
||||
double_buffer = false
|
||||
auto_hide_on_focus_lost = false
|
||||
auto_hide_on_mouse_leave = false
|
@ -0,0 +1 @@
|
||||
{"hide_non_free": false}
|
15
home_org/thinclient/.config/user-dirs.dirs
Normal file
15
home_org/thinclient/.config/user-dirs.dirs
Normal file
@ -0,0 +1,15 @@
|
||||
# This file is written by xdg-user-dirs-update
|
||||
# If you want to change or add directories, just edit the line you're
|
||||
# interested in. All local changes will be retained on the next run
|
||||
# Format is XDG_xxx_DIR="$HOME/yyy", where yyy is a shell-escaped
|
||||
# homedir-relative path, or XDG_xxx_DIR="/yyy", where /yyy is an
|
||||
# absolute path. No other format is supported.
|
||||
#
|
||||
XDG_DESKTOP_DIR="$HOME/Schreibtisch"
|
||||
XDG_DOWNLOAD_DIR="$HOME/Downloads"
|
||||
XDG_TEMPLATES_DIR="$HOME/Vorlagen"
|
||||
XDG_PUBLICSHARE_DIR="$HOME/Öffentlich"
|
||||
XDG_DOCUMENTS_DIR="$HOME/Dokumente"
|
||||
XDG_MUSIC_DIR="$HOME/Musik"
|
||||
XDG_PICTURES_DIR="$HOME/Bilder"
|
||||
XDG_VIDEOS_DIR="$HOME/Videos"
|
1
home_org/thinclient/.config/user-dirs.locale
Normal file
1
home_org/thinclient/.config/user-dirs.locale
Normal file
@ -0,0 +1 @@
|
||||
de_DE
|
3
home_org/thinclient/.dmrc
Normal file
3
home_org/thinclient/.dmrc
Normal file
@ -0,0 +1,3 @@
|
||||
[Desktop]
|
||||
Language=de_DE
|
||||
Session=mate
|
16
home_org/thinclient/.local/share/recently-used.xbel
Normal file
16
home_org/thinclient/.local/share/recently-used.xbel
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xbel version="1.0"
|
||||
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
||||
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
|
||||
>
|
||||
<bookmark href="file:///usr/share/mate-panel/pixmaps/footguy.png" added="2017-01-22T14:04:38Z" modified="2017-01-22T14:04:38Z" visited="2017-01-22T14:04:39Z">
|
||||
<info>
|
||||
<metadata owner="http://freedesktop.org">
|
||||
<mime:mime-type type="image/png"/>
|
||||
<bookmark:applications>
|
||||
<bookmark:application name="fish-applet" exec="'fish-applet %u'" modified="2017-01-22T14:04:38Z" count="1"/>
|
||||
</bookmark:applications>
|
||||
</metadata>
|
||||
</info>
|
||||
</bookmark>
|
||||
</xbel>
|
16
home_org/thinclient/.local/share/recently-used.xbel.K8P3UY
Normal file
16
home_org/thinclient/.local/share/recently-used.xbel.K8P3UY
Normal file
@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<xbel version="1.0"
|
||||
xmlns:bookmark="http://www.freedesktop.org/standards/desktop-bookmarks"
|
||||
xmlns:mime="http://www.freedesktop.org/standards/shared-mime-info"
|
||||
>
|
||||
<bookmark href="file:///usr/share/mate-panel/pixmaps/footguy.png" added="2017-01-22T14:04:38Z" modified="2017-01-22T14:04:38Z" visited="2017-01-22T14:04:39Z">
|
||||
<info>
|
||||
<metadata owner="http://freedesktop.org">
|
||||
<mime:mime-type type="image/png"/>
|
||||
<bookmark:applications>
|
||||
<bookmark:application name="fish-applet" exec="'fish-applet %u'" modified="2017-01-22T14:04:38Z" count="1"/>
|
||||
</bookmark:applications>
|
||||
</metadata>
|
||||
</info>
|
||||
</bookmark>
|
||||
</xbel>
|
83
home_org/thinclient/.local/share/xorg/Xorg.0.log
Normal file
83
home_org/thinclient/.local/share/xorg/Xorg.0.log
Normal file
@ -0,0 +1,83 @@
|
||||
[ 636.281]
|
||||
X.Org X Server 1.18.4
|
||||
Release Date: 2016-07-19
|
||||
[ 636.305] X Protocol Version 11, Revision 0
|
||||
[ 636.314] Build Operating System: Linux 4.4.0-45-generic armv7l Ubuntu
|
||||
[ 636.322] Current Operating System: Linux tuxmania-desktop 4.4.43-v7+ #1 SMP Sun Jan 22 01:25:34 CET 2017 armv7l
|
||||
[ 636.322] Kernel command line: 8250.nr_uarts=0 dma.dmachans=0x7f35 bcm2708_fb.fbwidth=1824 bcm2708_fb.fbheight=984 bcm2709.boardrev=0xa02082 bcm2709.serial=0x1027956b smsc95xx.macaddr=B8:27:EB:27:95:6B bcm2708_fb.fbdepth=32 bcm2708_fb.fbswap=1 bcm2709.uart_clock=48000000 vc_mem.mem_base=0x3dc00000 vc_mem.mem_size=0x3f000000 dwc_otg.lpm_enable=0 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 elevator=deadline rootwait noswap fastboot ro
|
||||
[ 636.351] Build Date: 02 November 2016 10:05:15PM
|
||||
[ 636.361] xorg-server 2:1.18.4-0ubuntu0.2 (For technical support please see http://www.ubuntu.com/support)
|
||||
[ 636.370] Current version of pixman: 0.33.6
|
||||
[ 636.390] Before reporting problems, check http://wiki.x.org
|
||||
to make sure that you have the latest version.
|
||||
[ 636.390] Markers: (--) probed, (**) from config file, (==) default setting,
|
||||
(++) from command line, (!!) notice, (II) informational,
|
||||
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
|
||||
[ 636.429] (==) Log file: "/home/thinclient/.local/share/xorg/Xorg.0.log", Time: Sun Jan 22 14:59:42 2017
|
||||
[ 636.440] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
|
||||
[ 636.442] (==) No Layout section. Using the first Screen section.
|
||||
[ 636.442] (==) No screen section available. Using defaults.
|
||||
[ 636.442] (**) |-->Screen "Default Screen Section" (0)
|
||||
[ 636.442] (**) | |-->Monitor "<default monitor>"
|
||||
[ 636.443] (==) No device specified for screen "Default Screen Section".
|
||||
Using the first device section listed.
|
||||
[ 636.443] (**) | |-->Device "Allwinner A10/A13 FBDEV"
|
||||
[ 636.443] (==) No monitor specified for screen "Default Screen Section".
|
||||
Using a default monitor configuration.
|
||||
[ 636.443] (==) Automatically adding devices
|
||||
[ 636.443] (==) Automatically enabling devices
|
||||
[ 636.443] (==) Automatically adding GPU devices
|
||||
[ 636.443] (==) Max clients allowed: 256, resource mask: 0x1fffff
|
||||
[ 636.443] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
|
||||
[ 636.443] Entry deleted from font path.
|
||||
[ 636.443] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
|
||||
[ 636.443] Entry deleted from font path.
|
||||
[ 636.443] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
|
||||
[ 636.444] Entry deleted from font path.
|
||||
[ 636.444] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
|
||||
[ 636.444] Entry deleted from font path.
|
||||
[ 636.444] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
|
||||
[ 636.444] Entry deleted from font path.
|
||||
[ 636.444] (==) FontPath set to:
|
||||
/usr/share/fonts/X11/misc,
|
||||
/usr/share/fonts/X11/Type1,
|
||||
built-ins
|
||||
[ 636.444] (==) ModulePath set to "/usr/lib/arm-linux-gnueabihf/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
|
||||
[ 636.444] (II) The server relies on udev to provide the list of input devices.
|
||||
If no devices become available, reconfigure udev or disable AutoAddDevices.
|
||||
[ 636.444] (II) Loader magic: 0x54c6af70
|
||||
[ 636.444] (II) Module ABI versions:
|
||||
[ 636.444] X.Org ANSI C Emulation: 0.4
|
||||
[ 636.444] X.Org Video Driver: 20.0
|
||||
[ 636.444] X.Org XInput driver : 22.1
|
||||
[ 636.444] X.Org Server Extension : 9.0
|
||||
[ 636.447] (++) using VT number 1
|
||||
|
||||
[ 636.451] (EE) systemd-logind: TakeControl failed: Only owner of session may take control
|
||||
[ 636.452] (II) no primary bus or device found
|
||||
[ 636.452] (II) LoadModule: "glx"
|
||||
[ 636.453] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
|
||||
[ 636.460] (II) Module glx: vendor="X.Org Foundation"
|
||||
[ 636.460] compiled for 1.18.4, module version = 1.0.0
|
||||
[ 636.460] ABI class: X.Org Server Extension, version 9.0
|
||||
[ 636.460] (==) AIGLX enabled
|
||||
[ 636.460] (II) LoadModule: "fbturbo"
|
||||
[ 636.461] (II) Loading /usr/lib/xorg/modules/drivers/fbturbo_drv.so
|
||||
[ 636.462] (II) Module fbturbo: vendor="X.Org Foundation"
|
||||
[ 636.462] compiled for 1.18.1, module version = 0.5.1
|
||||
[ 636.462] Module class: X.Org Video Driver
|
||||
[ 636.462] ABI class: X.Org Video Driver, version 20.0
|
||||
[ 636.462] (II) FBTURBO: driver for framebuffer: fbturbo
|
||||
[ 636.462] (EE)
|
||||
Fatal server error:
|
||||
[ 636.482] (EE) xf86OpenConsole: Cannot open virtual console 1 (Permission denied)
|
||||
[ 636.492] (EE)
|
||||
[ 636.502] (EE)
|
||||
Please consult the The X.Org Foundation support
|
||||
at http://wiki.x.org
|
||||
for help.
|
||||
[ 636.541] (EE) Please also check the log file at "/home/thinclient/.local/share/xorg/Xorg.0.log" for additional information.
|
||||
[ 636.552] (EE)
|
||||
[ 636.562] (WW) xf86CloseConsole: KDSETMODE failed: Bad file descriptor
|
||||
[ 636.562] (WW) xf86CloseConsole: VT_GETMODE failed: Bad file descriptor
|
||||
[ 636.562] (EE) Server terminated with error (1). Closing log file.
|
20
home_org/thinclient/.profile
Normal file
20
home_org/thinclient/.profile
Normal file
@ -0,0 +1,20 @@
|
||||
# ~/.profile: executed by the command interpreter for login shells.
|
||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
||||
# exists.
|
||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
||||
# the files are located in the bash-doc package.
|
||||
|
||||
# the default umask is set in /etc/profile; for setting the umask
|
||||
# for ssh logins, install and configure the libpam-umask package.
|
||||
#umask 022
|
||||
|
||||
# if running bash
|
||||
if [ -n "$BASH_VERSION" ]; then
|
||||
# include .bashrc if it exists
|
||||
if [ -f "$HOME/.bashrc" ]; then
|
||||
. "$HOME/.bashrc"
|
||||
fi
|
||||
fi
|
||||
|
||||
# set PATH so it includes user's private bin directories
|
||||
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
|
30
home_org/thinclient/.remmina/1485781847084.remmina
Normal file
30
home_org/thinclient/.remmina/1485781847084.remmina
Normal file
@ -0,0 +1,30 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Weddersleben
|
||||
password=
|
||||
name=termserv01
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.25.176.8
|
||||
colordepth=15
|
||||
viewmode=1
|
||||
window_maximize=1
|
28
home_org/thinclient/.remmina/1485782073532.remmina
Normal file
28
home_org/thinclient/.remmina/1485782073532.remmina
Normal file
@ -0,0 +1,28 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Weddersleben
|
||||
password=
|
||||
name=termserv02
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.25.176.10
|
||||
colordepth=15
|
28
home_org/thinclient/.remmina/1485782134249.remmina
Normal file
28
home_org/thinclient/.remmina/1485782134249.remmina
Normal file
@ -0,0 +1,28 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Weddersleben
|
||||
password=
|
||||
name=termserv03
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.25.176.3
|
||||
colordepth=15
|
28
home_org/thinclient/.remmina/1485782156775.remmina
Normal file
28
home_org/thinclient/.remmina/1485782156775.remmina
Normal file
@ -0,0 +1,28 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Weddersleben
|
||||
password=
|
||||
name=termserv04
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.25.176.22
|
||||
colordepth=15
|
28
home_org/thinclient/.remmina/1485782191155.remmina
Normal file
28
home_org/thinclient/.remmina/1485782191155.remmina
Normal file
@ -0,0 +1,28 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Weddersleben
|
||||
password=
|
||||
name=termserv05
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.25.176.18
|
||||
colordepth=15
|
30
home_org/thinclient/.remmina/1485782237996.remmina
Normal file
30
home_org/thinclient/.remmina/1485782237996.remmina
Normal file
@ -0,0 +1,30 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Hetzner
|
||||
password=
|
||||
name=termserv06
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.24.176.2
|
||||
colordepth=15
|
||||
viewmode=4
|
||||
window_maximize=1
|
28
home_org/thinclient/.remmina/1485782349235.remmina
Normal file
28
home_org/thinclient/.remmina/1485782349235.remmina
Normal file
@ -0,0 +1,28 @@
|
||||
[remmina]
|
||||
disableclipboard=0
|
||||
ssh_auth=0
|
||||
clientname=
|
||||
quality=0
|
||||
ssh_charset=
|
||||
ssh_privatekey=
|
||||
sharesmartcard=0
|
||||
resolution=
|
||||
group=Terminalserver Hetzner
|
||||
password=
|
||||
name=application02
|
||||
ssh_loopback=0
|
||||
shareprinter=0
|
||||
ssh_username=
|
||||
ssh_server=
|
||||
security=
|
||||
protocol=RDP
|
||||
execpath=
|
||||
sound=off
|
||||
exec=
|
||||
ssh_enabled=0
|
||||
username=
|
||||
sharefolder=
|
||||
console=0
|
||||
domain=
|
||||
server=10.24.176.5
|
||||
colordepth=15
|
45
home_org/thinclient/.remmina/remmina.pref
Normal file
45
home_org/thinclient/.remmina/remmina.pref
Normal file
@ -0,0 +1,45 @@
|
||||
[remmina_pref]
|
||||
secret=Ed3QhjAH3B5CW5kcxteMU9u/FJHp5FKMoHgrcwmvvxo=
|
||||
save_view_mode=true
|
||||
save_when_connect=true
|
||||
invisible_toolbar=false
|
||||
always_show_tab=true
|
||||
hide_connection_toolbar=false
|
||||
default_action=0
|
||||
scale_quality=3
|
||||
hide_toolbar=false
|
||||
hide_statusbar=false
|
||||
show_quick_search=false
|
||||
small_toolbutton=false
|
||||
view_file_mode=0
|
||||
resolutions=640x480,800x600,1024x768,1152x864,1280x960,1400x1050
|
||||
main_width=600
|
||||
main_height=400
|
||||
main_maximize=false
|
||||
main_sort_column_id=2
|
||||
main_sort_order=0
|
||||
expanded_group=
|
||||
toolbar_pin_down=false
|
||||
sshtunnel_port=4732
|
||||
applet_new_ontop=false
|
||||
applet_hide_count=false
|
||||
applet_enable_avahi=false
|
||||
disable_tray_icon=false
|
||||
minimize_to_tray=false
|
||||
recent_maximum=10
|
||||
default_mode=0
|
||||
tab_mode=0
|
||||
auto_scroll_step=10
|
||||
hostkey=65508
|
||||
shortcutkey_fullscreen=102
|
||||
shortcutkey_autofit=49
|
||||
shortcutkey_nexttab=65363
|
||||
shortcutkey_prevtab=65361
|
||||
shortcutkey_scale=115
|
||||
shortcutkey_grab=65508
|
||||
shortcutkey_minimize=65478
|
||||
shortcutkey_disconnect=65473
|
||||
shortcutkey_toolbar=116
|
||||
vte_font=
|
||||
vte_allow_bold_text=true
|
||||
vte_lines=512
|
7
home_org/thinclient/.setting.sh
Executable file
7
home_org/thinclient/.setting.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
gsettings set com.ubuntu.update-manager check-new-release-ignore true
|
||||
gsettings set com.ubuntu.update-manager check-dist-upgrades false
|
||||
gsettings set com.ubuntu.update-notifier show-apport-crashes false
|
||||
gsettings set com.ubuntu.update-notifier no-show-notifications true
|
||||
gsettings set com.ubuntu.update-notifier regular-auto-launch-interval 0
|
BIN
home_org/thinclient/.wp/hg.png
Normal file
BIN
home_org/thinclient/.wp/hg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 212 KiB |
77
home_org/thinclient/.wp/sysinfo4wp.sh
Executable file
77
home_org/thinclient/.wp/sysinfo4wp.sh
Executable file
@ -0,0 +1,77 @@
|
||||
#!/bin/bash
|
||||
|
||||
##############################################################################
|
||||
# Script-Name : sysinfo4wp #
|
||||
# Description : Script zur Erstellung eines Bildschirmhintergrundes mit #
|
||||
# den wichtigsten Systemparametern #
|
||||
# #
|
||||
# Last update : 2012-01-05 #
|
||||
# Version : 0.02 #
|
||||
##############################################################################
|
||||
|
||||
##############################################################################
|
||||
# H I S T O R Y #
|
||||
##############################################################################
|
||||
# Version : 0.01 #
|
||||
# Description : initial release #
|
||||
# -------------------------------------------------------------------------- #
|
||||
# Version : 0.02 #
|
||||
# Description : Bootzeitpunktberechnung berücksichtigt, Dank an fischi #
|
||||
##############################################################################
|
||||
|
||||
source /etc/lsb-release
|
||||
source /etc/os-release
|
||||
|
||||
YRESO=$(xrandr -q 2> /dev/null | awk -F'current' -F',' 'NR==1 {gsub("( |current)","");print $2}' | cut -f 1 -d "x")
|
||||
XRESO=$(echo "scale=5; 1080/1920*$YRESO" | bc | cut -d "." -f 1)
|
||||
RESOLUTION=$YRESO"x"$XRESO
|
||||
HPOSITION=200
|
||||
VPOSITION=320
|
||||
EPATH=$HOME/.wp
|
||||
COLOR=blue
|
||||
|
||||
# Definition der Variablen
|
||||
FILE=$1 # Bildschirmhintergrund in dem die Ausgabe eingebettet werden soll
|
||||
WALLPAPER="$EPATH/hg.jpg" # Name unseres neu erstellten Bildschirmhintergrundes
|
||||
TMPFILE="$EPATH/sysinfgo_4_WP"
|
||||
PRG=/usr/bin/convert
|
||||
BGCOLOR=#eff4f8
|
||||
|
||||
# Variablen für die ermittelten Parameter
|
||||
#HOST=$(hostname)
|
||||
HOST=rpi$(sed "s/^.*macaddr=\([0-9A-F:]*\).*$/\1/" /proc/cmdline |tr -d ":")
|
||||
KERNEL=`uname -r`
|
||||
KERNELVERSION="Linux Version "$KERNEL
|
||||
IPT=$(ifconfig | grep 'inet Adresse' | cut -d ':' -f 2 | cut -d ' ' -f 1)
|
||||
IPADRESSET="IP Adresse: "$IPT
|
||||
# ggf. weitere Netzwerkschnittstellen definieren
|
||||
#IPU=$(/sbin/ifconfig ppp0 | head -n 2 | tail -n 1 | cut -d: -f2 | cut -d" " -f 1)
|
||||
#IPADRESSEU="IP Adresse (ppp0): "$IPU
|
||||
#UPTIME=`uptime | grep '' /proc/uptime | awk '{ print $1 }'`
|
||||
#UPTIME=`echo "$UPTIME" | sed 's/\(.*\)...$/\1/'`
|
||||
#let BOOTDATE=`date +%s`-$UPTIME
|
||||
#BOOTDATE="Bootzeitpunkt: "`date -d @$BOOTDATE "+%d.%m.%y - %H:%M Uhr"`
|
||||
CPU_COUNT=`cat /proc/cpuinfo | grep -cA 0 processor`
|
||||
CPU_MODEL=`cat /proc/cpuinfo | grep -m 1 model.name | sed 's/^model.name*.:*.//'`
|
||||
CPU_SPEED=`cat /proc/cpuinfo | grep -m 1 cpu.MHz | sed 's/^cpu.MHz*.:*.//' | sed 's/^:*.//'`
|
||||
CPU="$CPU_COUNT x $CPU_MODEL"
|
||||
MEM=`grep MemTotal /proc/meminfo`
|
||||
|
||||
gsettings set org.mate.background secondary-color $BGCOLOR
|
||||
gsettings set org.mate.background primary-color $BGCOLOR
|
||||
gsettings set org.mate.background picture-options 'centered'
|
||||
|
||||
# Hintergrundbild erstellen
|
||||
$PRG -filter spline -resize $RESOLUTION -unsharp 0x1 $FILE $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 35 -draw "text $HPOSITION,320 Systemübersicht" $WALLPAPER $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 30 -draw "text $HPOSITION,270 '$HOST'" $WALLPAPER $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 20 -draw "text $HPOSITION,230 '$CPU'" $WALLPAPER $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 20 -draw "text $HPOSITION,200 '$MEM'" $WALLPAPER $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 20 -draw "text $HPOSITION,160 '$NAME $VERSION'" $WALLPAPER $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 20 -draw "text $HPOSITION,135 '$KERNELVERSION'" $WALLPAPER $WALLPAPER
|
||||
# ggf. weiters Netzwerkinterface anzeigen lassen
|
||||
#$PRG -gravity southwest -font /usr/share/fonts/bitstream-vera/VeraBd.ttf -fill $COLOR -pointsize 20 -draw "text 50,110 '$IPADRESSEU'" $WALLPAPER $WALLPAPER
|
||||
$PRG -gravity southwest -fill $COLOR -pointsize 20 -draw "text $HPOSITION,85 '$IPADRESSET'" $WALLPAPER $WALLPAPER
|
||||
|
||||
#Bildschirmhintergrund in mate setzen
|
||||
gsettings set org.mate.background picture-filename "$EPATH"/hg.jpg
|
11
home_org/thinclient/Schreibtisch/com.teamviewer.teamviewer-host.desktop
Executable file
11
home_org/thinclient/Schreibtisch/com.teamviewer.teamviewer-host.desktop
Executable file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Encoding=UTF-8
|
||||
Type=Application
|
||||
Categories=Network;
|
||||
|
||||
Name=TeamViewer 11 Host
|
||||
Comment=Remote control solution.
|
||||
Exec=/opt/teamviewer/tv_bin/script/teamviewer
|
||||
Icon=/opt/teamviewer/tv_bin/desktop/teamviewer.png
|
222
home_org/thinclient/Schreibtisch/firefox.desktop
Executable file
222
home_org/thinclient/Schreibtisch/firefox.desktop
Executable file
@ -0,0 +1,222 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=Firefox Web Browser
|
||||
Name[ar]=متصفح الويب فَيَرفُكْس
|
||||
Name[ast]=Restolador web Firefox
|
||||
Name[bn]=ফায়ারফক্স ওয়েব ব্রাউজার
|
||||
Name[ca]=Navegador web Firefox
|
||||
Name[cs]=Firefox Webový prohlížeč
|
||||
Name[da]=Firefox - internetbrowser
|
||||
Name[el]=Περιηγητής Firefox
|
||||
Name[es]=Navegador web Firefox
|
||||
Name[et]=Firefoxi veebibrauser
|
||||
Name[fa]=مرورگر اینترنتی Firefox
|
||||
Name[fi]=Firefox-selain
|
||||
Name[fr]=Navigateur Web Firefox
|
||||
Name[gl]=Navegador web Firefox
|
||||
Name[he]=דפדפן האינטרנט Firefox
|
||||
Name[hr]=Firefox web preglednik
|
||||
Name[hu]=Firefox webböngésző
|
||||
Name[it]=Firefox Browser Web
|
||||
Name[ja]=Firefox ウェブ・ブラウザ
|
||||
Name[ko]=Firefox 웹 브라우저
|
||||
Name[ku]=Geroka torê Firefox
|
||||
Name[lt]=Firefox interneto naršyklė
|
||||
Name[nb]=Firefox Nettleser
|
||||
Name[nl]=Firefox webbrowser
|
||||
Name[nn]=Firefox Nettlesar
|
||||
Name[no]=Firefox Nettleser
|
||||
Name[pl]=Przeglądarka WWW Firefox
|
||||
Name[pt]=Firefox Navegador Web
|
||||
Name[pt_BR]=Navegador Web Firefox
|
||||
Name[ro]=Firefox – Navigator Internet
|
||||
Name[ru]=Веб-браузер Firefox
|
||||
Name[sk]=Firefox - internetový prehliadač
|
||||
Name[sl]=Firefox spletni brskalnik
|
||||
Name[sv]=Firefox webbläsare
|
||||
Name[tr]=Firefox Web Tarayıcısı
|
||||
Name[ug]=Firefox توركۆرگۈ
|
||||
Name[uk]=Веб-браузер Firefox
|
||||
Name[vi]=Trình duyệt web Firefox
|
||||
Name[zh_CN]=Firefox 网络浏览器
|
||||
Name[zh_TW]=Firefox 網路瀏覽器
|
||||
Comment=Browse the World Wide Web
|
||||
Comment[ar]=تصفح الشبكة العنكبوتية العالمية
|
||||
Comment[ast]=Restola pela Rede
|
||||
Comment[bn]=ইন্টারনেট ব্রাউজ করুন
|
||||
Comment[ca]=Navegueu per la web
|
||||
Comment[cs]=Prohlížení stránek World Wide Webu
|
||||
Comment[da]=Surf på internettet
|
||||
Comment[de]=Im Internet surfen
|
||||
Comment[el]=Μπορείτε να περιηγηθείτε στο διαδίκτυο (Web)
|
||||
Comment[es]=Navegue por la web
|
||||
Comment[et]=Lehitse veebi
|
||||
Comment[fa]=صفحات شبکه جهانی اینترنت را مرور نمایید
|
||||
Comment[fi]=Selaa Internetin WWW-sivuja
|
||||
Comment[fr]=Naviguer sur le Web
|
||||
Comment[gl]=Navegar pola rede
|
||||
Comment[he]=גלישה ברחבי האינטרנט
|
||||
Comment[hr]=Pretražite web
|
||||
Comment[hu]=A világháló böngészése
|
||||
Comment[it]=Esplora il web
|
||||
Comment[ja]=ウェブを閲覧します
|
||||
Comment[ko]=웹을 돌아 다닙니다
|
||||
Comment[ku]=Li torê bigere
|
||||
Comment[lt]=Naršykite internete
|
||||
Comment[nb]=Surf på nettet
|
||||
Comment[nl]=Verken het internet
|
||||
Comment[nn]=Surf på nettet
|
||||
Comment[no]=Surf på nettet
|
||||
Comment[pl]=Przeglądanie stron WWW
|
||||
Comment[pt]=Navegue na Internet
|
||||
Comment[pt_BR]=Navegue na Internet
|
||||
Comment[ro]=Navigați pe Internet
|
||||
Comment[ru]=Доступ в Интернет
|
||||
Comment[sk]=Prehliadanie internetu
|
||||
Comment[sl]=Brskajte po spletu
|
||||
Comment[sv]=Surfa på webben
|
||||
Comment[tr]=İnternet'te Gezinin
|
||||
Comment[ug]=دۇنيادىكى توربەتلەرنى كۆرگىلى بولىدۇ
|
||||
Comment[uk]=Перегляд сторінок Інтернету
|
||||
Comment[vi]=Để duyệt các trang web
|
||||
Comment[zh_CN]=浏览互联网
|
||||
Comment[zh_TW]=瀏覽網際網路
|
||||
GenericName=Web Browser
|
||||
GenericName[ar]=متصفح ويب
|
||||
GenericName[ast]=Restolador Web
|
||||
GenericName[bn]=ওয়েব ব্রাউজার
|
||||
GenericName[ca]=Navegador web
|
||||
GenericName[cs]=Webový prohlížeč
|
||||
GenericName[da]=Webbrowser
|
||||
GenericName[el]=Περιηγητής διαδικτύου
|
||||
GenericName[es]=Navegador web
|
||||
GenericName[et]=Veebibrauser
|
||||
GenericName[fa]=مرورگر اینترنتی
|
||||
GenericName[fi]=WWW-selain
|
||||
GenericName[fr]=Navigateur Web
|
||||
GenericName[gl]=Navegador Web
|
||||
GenericName[he]=דפדפן אינטרנט
|
||||
GenericName[hr]=Web preglednik
|
||||
GenericName[hu]=Webböngésző
|
||||
GenericName[it]=Browser web
|
||||
GenericName[ja]=ウェブ・ブラウザ
|
||||
GenericName[ko]=웹 브라우저
|
||||
GenericName[ku]=Geroka torê
|
||||
GenericName[lt]=Interneto naršyklė
|
||||
GenericName[nb]=Nettleser
|
||||
GenericName[nl]=Webbrowser
|
||||
GenericName[nn]=Nettlesar
|
||||
GenericName[no]=Nettleser
|
||||
GenericName[pl]=Przeglądarka WWW
|
||||
GenericName[pt]=Navegador Web
|
||||
GenericName[pt_BR]=Navegador Web
|
||||
GenericName[ro]=Navigator Internet
|
||||
GenericName[ru]=Веб-браузер
|
||||
GenericName[sk]=Internetový prehliadač
|
||||
GenericName[sl]=Spletni brskalnik
|
||||
GenericName[sv]=Webbläsare
|
||||
GenericName[tr]=Web Tarayıcı
|
||||
GenericName[ug]=توركۆرگۈ
|
||||
GenericName[uk]=Веб-браузер
|
||||
GenericName[vi]=Trình duyệt Web
|
||||
GenericName[zh_CN]=网络浏览器
|
||||
GenericName[zh_TW]=網路瀏覽器
|
||||
Keywords=Internet;WWW;Browser;Web;Explorer
|
||||
Keywords[ar]=انترنت;إنترنت;متصفح;ويب;وب
|
||||
Keywords[ast]=Internet;WWW;Restolador;Web;Esplorador
|
||||
Keywords[ca]=Internet;WWW;Navegador;Web;Explorador;Explorer
|
||||
Keywords[cs]=Internet;WWW;Prohlížeč;Web;Explorer
|
||||
Keywords[da]=Internet;Internettet;WWW;Browser;Browse;Web;Surf;Nettet
|
||||
Keywords[de]=Internet;WWW;Browser;Web;Explorer;Webseite;Site;surfen;online;browsen
|
||||
Keywords[el]=Internet;WWW;Browser;Web;Explorer;Διαδίκτυο;Περιηγητής;Firefox;Φιρεφοχ;Ιντερνετ
|
||||
Keywords[es]=Explorador;Internet;WWW
|
||||
Keywords[fi]=Internet;WWW;Browser;Web;Explorer;selain;Internet-selain;internetselain;verkkoselain;netti;surffaa
|
||||
Keywords[fr]=Internet;WWW;Browser;Web;Explorer;Fureteur;Surfer;Navigateur
|
||||
Keywords[he]=דפדפן;אינטרנט;רשת;אתרים;אתר;פיירפוקס;מוזילה;
|
||||
Keywords[hr]=Internet;WWW;preglednik;Web
|
||||
Keywords[hu]=Internet;WWW;Böngésző;Web;Háló;Net;Explorer
|
||||
Keywords[it]=Internet;WWW;Browser;Web;Navigatore
|
||||
Keywords[is]=Internet;WWW;Vafri;Vefur;Netvafri;Flakk
|
||||
Keywords[ja]=Internet;WWW;Web;インターネット;ブラウザ;ウェブ;エクスプローラ
|
||||
Keywords[nb]=Internett;WWW;Nettleser;Explorer;Web;Browser;Nettside
|
||||
Keywords[nl]=Internet;WWW;Browser;Web;Explorer;Verkenner;Website;Surfen;Online
|
||||
Keywords[pt]=Internet;WWW;Browser;Web;Explorador;Navegador
|
||||
Keywords[pt_BR]=Internet;WWW;Browser;Web;Explorador;Navegador
|
||||
Keywords[ru]=Internet;WWW;Browser;Web;Explorer;интернет;браузер;веб;файрфокс;огнелис
|
||||
Keywords[sk]=Internet;WWW;Prehliadač;Web;Explorer
|
||||
Keywords[sl]=Internet;WWW;Browser;Web;Explorer;Brskalnik;Splet
|
||||
Keywords[tr]=İnternet;WWW;Tarayıcı;Web;Gezgin;Web sitesi;Site;sörf;çevrimiçi;tara
|
||||
Keywords[uk]=Internet;WWW;Browser;Web;Explorer;Інтернет;мережа;переглядач;оглядач;браузер;веб;файрфокс;вогнелис;перегляд
|
||||
Keywords[vi]=Internet;WWW;Browser;Web;Explorer;Trình duyệt;Trang web
|
||||
Keywords[zh_CN]=Internet;WWW;Browser;Web;Explorer;网页;浏览;上网;火狐;Firefox;ff;互联网;网站;
|
||||
Keywords[zh_TW]=Internet;WWW;Browser;Web;Explorer;網際網路;網路;瀏覽器;上網;網頁;火狐
|
||||
Exec=firefox %u
|
||||
Terminal=false
|
||||
X-MultipleArgs=false
|
||||
Type=Application
|
||||
Icon=firefox
|
||||
Categories=GNOME;GTK;Network;WebBrowser;
|
||||
MimeType=text/html;text/xml;application/xhtml+xml;application/xml;application/rss+xml;application/rdf+xml;image/gif;image/jpeg;image/png;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/ftp;x-scheme-handler/chrome;video/webm;application/x-xpinstall;
|
||||
StartupNotify=true
|
||||
Actions=NewWindow;NewPrivateWindow;
|
||||
|
||||
[Desktop Action NewWindow]
|
||||
Name=Open a New Window
|
||||
Name[ar]=افتح نافذة جديدة
|
||||
Name[ast]=Abrir una ventana nueva
|
||||
Name[bn]=Abrir una ventana nueva
|
||||
Name[ca]=Obre una finestra nova
|
||||
Name[cs]=Otevřít nové okno
|
||||
Name[da]=Åbn et nyt vindue
|
||||
Name[de]=Ein neues Fenster öffnen
|
||||
Name[el]=Άνοιγμα νέου παραθύρου
|
||||
Name[es]=Abrir una ventana nueva
|
||||
Name[fi]=Avaa uusi ikkuna
|
||||
Name[fr]=Ouvrir une nouvelle fenêtre
|
||||
Name[gl]=Abrir unha nova xanela
|
||||
Name[he]=פתיחת חלון חדש
|
||||
Name[hr]=Otvori novi prozor
|
||||
Name[hu]=Új ablak nyitása
|
||||
Name[it]=Apri una nuova finestra
|
||||
Name[ja]=新しいウィンドウを開く
|
||||
Name[ko]=새 창 열기
|
||||
Name[ku]=Paceyeke nû veke
|
||||
Name[lt]=Atverti naują langą
|
||||
Name[nb]=Åpne et nytt vindu
|
||||
Name[nl]=Nieuw venster openen
|
||||
Name[pt]=Abrir nova janela
|
||||
Name[pt_BR]=Abrir nova janela
|
||||
Name[ro]=Deschide o fereastră nouă
|
||||
Name[ru]=Новое окно
|
||||
Name[sk]=Otvoriť nové okno
|
||||
Name[sl]=Odpri novo okno
|
||||
Name[sv]=Öppna ett nytt fönster
|
||||
Name[tr]=Yeni pencere aç
|
||||
Name[ug]=يېڭى كۆزنەك ئېچىش
|
||||
Name[uk]=Відкрити нове вікно
|
||||
Name[vi]=Mở cửa sổ mới
|
||||
Name[zh_CN]=新建窗口
|
||||
Name[zh_TW]=開啟新視窗
|
||||
Exec=firefox -new-window
|
||||
OnlyShowIn=Unity;
|
||||
|
||||
[Desktop Action NewPrivateWindow]
|
||||
Name=Open a New Private Window
|
||||
Name[ar]=افتح نافذة جديدة للتصفح الخاص
|
||||
Name[ca]=Obre una finestra nova en mode d'incògnit
|
||||
Name[de]=Ein neues privates Fenster öffnen
|
||||
Name[es]=Abrir una ventana privada nueva
|
||||
Name[fi]=Avaa uusi yksityinen ikkuna
|
||||
Name[fr]=Ouvrir une nouvelle fenêtre de navigation privée
|
||||
Name[he]=פתיחת חלון גלישה פרטית חדש
|
||||
Name[hu]=Új privát ablak nyitása
|
||||
Name[it]=Apri una nuova finestra anonima
|
||||
Name[nb]=Åpne et nytt privat vindu
|
||||
Name[ru]=Новое приватное окно
|
||||
Name[sl]=Odpri novo okno zasebnega brskanja
|
||||
Name[tr]=Yeni bir pencere aç
|
||||
Name[uk]=Відкрити нове вікно у потайливому режимі
|
||||
Name[zh_TW]=開啟新隱私瀏覽視窗
|
||||
Exec=firefox -private-window
|
||||
OnlyShowIn=Unity;
|
47
home_org/thinclient/Schreibtisch/galculator.desktop
Executable file
47
home_org/thinclient/Schreibtisch/galculator.desktop
Executable file
@ -0,0 +1,47 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=Galculator
|
||||
Comment=Perform simple and scientific calculations
|
||||
Comment[ar]=قم بحسابات بسيطة و علمية
|
||||
Comment[be]=Выконвае простыя і навуковыя разлікі
|
||||
Comment[bg]=Извършване на прости и научни изчисления
|
||||
Comment[cs]=Provádí jednoduché a vědecké výpočty
|
||||
Comment[da]=Udfør simple og videnskabelige beregninger
|
||||
Comment[de]=Taschenrechner zum Durchführen von einfachen und wissenschaftlichen Berechnungen
|
||||
Comment[el]=Εκτελέστε απλούς και επιστημονικούς υπολογισμούς
|
||||
Comment[en_AU]=Perform simple and scientific calculations
|
||||
Comment[en_GB]=Perform simple and scientific calculations
|
||||
Comment[es]=Realizar cálculos sencillos y científicos
|
||||
Comment[et]=Lihtsate või teaduslike arvutuste tegemine
|
||||
Comment[fr]=Effectuer des calculs simples et scientifiques
|
||||
Comment[gl]=Realizar cálculos sinxelos e científicos
|
||||
Comment[hu]=Egyszerű és tudományos számítások
|
||||
Comment[id]=Melakukan kalkulasi sederhana dan ilmiah
|
||||
Comment[it]=Esegue calcoli semplici e scientifici
|
||||
Comment[ja]=単純な科学計算を実行します
|
||||
Comment[kk]=Қарапайым және инженерлік санауларға арналған
|
||||
Comment[ko]=일반 계산, 과학 용도 계산을 수행 합니다
|
||||
Comment[lt]=Atlikite paprastus ir mokslinius skaičiavimus
|
||||
Comment[mr]=शास्त्रीय किंवा साधी गणना चालवून पहा
|
||||
Comment[ms]=Buat pengiraan mudah dan saintifik
|
||||
Comment[nl]=Voer eenvoudige en wetenschappelijke berekeningen uit
|
||||
Comment[pl]=Wykonaj proste lub naukowe obliczenia
|
||||
Comment[pt]=Execute cálculos simples e científicos
|
||||
Comment[pt_BR]=Executa cálculos simples e científicos
|
||||
Comment[ro]=Realizează calcule simple și științifice
|
||||
Comment[ru]=Вычисления: простые и инженерные
|
||||
Comment[sk]=Kalkulačka na jednoduché i vedecké výpočty
|
||||
Comment[sl]=Izvajanje preprostih in znanstvenih izračunov
|
||||
Comment[sr]=Обављајте једноставне и научне прорачуне
|
||||
Comment[sv]=Genomför enkla och vetenskapliga beräkningar
|
||||
Comment[tr]=Basit ve bilimsel hesaplamalar gerçekleştir
|
||||
Comment[uk]=Виконання простих і наукових розрахунків
|
||||
Comment[zh_CN]=执行简单和科学级别的计算
|
||||
Comment[zh_TW]=進行簡單和科學的計算
|
||||
Exec=galculator
|
||||
Icon=galculator
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Utility;
|
||||
StartupNotify=true
|
315
home_org/thinclient/Schreibtisch/libreoffice-calc.desktop
Executable file
315
home_org/thinclient/Schreibtisch/libreoffice-calc.desktop
Executable file
@ -0,0 +1,315 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
#
|
||||
# This file is part of the LibreOffice project.
|
||||
#
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
#
|
||||
# This file incorporates work covered by the following license notice:
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed
|
||||
# with this work for additional information regarding copyright
|
||||
# ownership. The ASF licenses this file to you under the Apache
|
||||
# License, Version 2.0 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
||||
#
|
||||
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Terminal=false
|
||||
Icon=libreoffice-calc
|
||||
Type=Application
|
||||
Categories=Office;Spreadsheet;X-Red-Hat-Base;X-MandrivaLinux-Office-Spreadsheets;
|
||||
Exec=libreoffice --calc %U
|
||||
MimeType=application/vnd.oasis.opendocument.spreadsheet;application/vnd.oasis.opendocument.spreadsheet-template;application/vnd.sun.xml.calc;application/vnd.sun.xml.calc.template;application/msexcel;application/vnd.ms-excel;application/vnd.openxmlformats-officedocument.spreadsheetml.sheet;application/vnd.ms-excel.sheet.macroenabled.12;application/vnd.openxmlformats-officedocument.spreadsheetml.template;application/vnd.ms-excel.template.macroenabled.12;application/vnd.ms-excel.sheet.binary.macroenabled.12;text/csv;application/x-dbf;text/spreadsheet;application/csv;application/excel;application/tab-separated-values;application/vnd.lotus-1-2-3;application/vnd.oasis.opendocument.chart;application/vnd.oasis.opendocument.chart-template;application/x-dbase;application/x-dos_ms_excel;application/x-excel;application/x-msexcel;application/x-ms-excel;application/x-quattropro;application/x-123;text/comma-separated-values;text/tab-separated-values;text/x-comma-separated-values;text/x-csv;application/vnd.oasis.opendocument.spreadsheet-flat-xml;application/vnd.ms-works;application/clarisworks;application/x-iwork-numbers-sffnumbers;
|
||||
Name=LibreOffice Calc
|
||||
GenericName=Spreadsheet
|
||||
GenericName[hu]=Munkafüzet
|
||||
GenericName[vi]=Bảng tính
|
||||
GenericName[kmr_Latn]=Tabloya Hesêb
|
||||
GenericName[tn]=Spreadsheet
|
||||
GenericName[ml]=സ്പ്രെഡ്ഷീറ്റ്
|
||||
GenericName[tr]=Hesap Tablosu
|
||||
GenericName[ro]=Foaie de calcul
|
||||
GenericName[ta]=விரிதாள்
|
||||
GenericName[en]=Spreadsheet
|
||||
GenericName[ast]=Fueya de cálculu
|
||||
GenericName[sl]=Preglednica
|
||||
GenericName[eu]=Kalkulu-orria
|
||||
GenericName[fa]=صفحهگسترده
|
||||
GenericName[he]=גיליון אלקטרוני
|
||||
GenericName[gu]=સ્પ્રેડશીટ
|
||||
GenericName[or]=Spreadsheet
|
||||
GenericName[st]=Spreadsheet
|
||||
GenericName[es]=Hoja de cálculo
|
||||
GenericName[ne]=स्प्रेडसीट
|
||||
GenericName[ka]=Spreadsheet
|
||||
GenericName[eo]=Kalkultabelo
|
||||
GenericName[bs]=Proračunska tablica
|
||||
GenericName[mr]=स्प्रेडशीट्
|
||||
GenericName[as]=স্প্ৰেডশ্বীট
|
||||
GenericName[nso]=Letlakala-kalo
|
||||
GenericName[xh]=Spreadsheet
|
||||
GenericName[fr]=Classeur
|
||||
GenericName[pa_IN]=ਸਪਰੈੱਡ ਸ਼ੀਟ
|
||||
GenericName[mk]=Табеларна пресметка
|
||||
GenericName[mn]=Хүснэгт баримт
|
||||
GenericName[ar]=جدول مُمتد
|
||||
GenericName[da]=Regneark
|
||||
GenericName[sk]=Zošit
|
||||
GenericName[is]=Töflureiknir
|
||||
GenericName[fi]=Taulukkolaskenta
|
||||
GenericName[sv]=Kalkylblad
|
||||
GenericName[el]=Υπολογιστικό φύλλο
|
||||
GenericName[nl]=Werkblad
|
||||
GenericName[pt]=Folha de cálculo
|
||||
GenericName[br]=Renkell
|
||||
GenericName[ss]=Liphephacansi
|
||||
GenericName[nr]=Spreadsheet
|
||||
GenericName[uz]=Elektro jadval
|
||||
GenericName[bg]=Електронна таблица
|
||||
GenericName[en_GB]=Spreadsheet
|
||||
GenericName[it]=Foglio elettronico
|
||||
GenericName[uk]=Електронна таблиця
|
||||
GenericName[gl]=Folla de cálculo
|
||||
GenericName[af]=Sigblad
|
||||
GenericName[gd]=Cliath-dhuilleag
|
||||
GenericName[te]=స్ర్పెడ్ షీట్
|
||||
GenericName[de]=Tabellendokument
|
||||
GenericName[oc]=Classador
|
||||
GenericName[ts]=Spreadsheet
|
||||
GenericName[en_ZA]=Spreadsheet
|
||||
GenericName[ca]=Full de càlcul
|
||||
GenericName[et]=Tabelarvutus
|
||||
GenericName[be]=Разліковы аркуш
|
||||
GenericName[zh_TW]=試算表
|
||||
GenericName[ru]=Электронная таблица
|
||||
GenericName[ca_valencia]=Full de càlcul
|
||||
GenericName[tg]=Spreadsheet
|
||||
GenericName[pt_BR]=Planilha
|
||||
GenericName[ko]=스프레드시트
|
||||
GenericName[zu]=Ikhasi lokubala
|
||||
GenericName[id]=Lembar Kerja
|
||||
GenericName[cy]=Taenlen
|
||||
GenericName[th]=ตารางคำนวณ
|
||||
GenericName[km]=សៀវភៅបញ្ជី
|
||||
GenericName[lt]=Skaičiuoklė
|
||||
GenericName[hi]=स्प्रेडशीट
|
||||
GenericName[pl]=Arkusz kalkulacyjny
|
||||
GenericName[bn]=স্প্রেডশীট
|
||||
GenericName[gug]=Kuatia Kálkulo Peguarã
|
||||
GenericName[ga]=Scarbhileog
|
||||
GenericName[sr]=Таблица
|
||||
GenericName[hr]=Proračunska tablica
|
||||
GenericName[ja]=表計算ドキュメント
|
||||
GenericName[dz]=ཤོག་ཁྲམ།
|
||||
GenericName[am]=ሰንጠረዥ
|
||||
GenericName[nb]=Regneark
|
||||
GenericName[kk]=Электрондық кесте
|
||||
GenericName[ve]=Spreadsheet
|
||||
GenericName[ug]=ئېلېكترونلۇق جەدۋەل
|
||||
GenericName[lv]=Izklājlapa
|
||||
GenericName[om]=Wardii
|
||||
GenericName[si]=පැතුරුම්පත
|
||||
GenericName[zh_CN]=电子表格
|
||||
GenericName[nn]=Rekneark
|
||||
GenericName[cs]=Sešit
|
||||
GenericName[rw]=Urupapurotuzu
|
||||
Comment=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[pa_IN]=ਕੈਲਸ ਦੀ ਵਰਤੋਂ ਕਰਕੇ ਸਪਰੈੱਡਸ਼ੀਟ ਨਾਲ ਗਣਨਾ, ਜਾਣਕਾਰੀ ਦੀ ਸਮੀਖਿਆ ਅਤੇ ਸੂਚੀਆਂ ਨੂੰ ਰੱਖਿਆ ਜਾ ਸਕਦਾ ਹੈ।
|
||||
Comment[sk]=Počítajte, analyzujte informácie a spravujte zoznamy v zošitoch s použitím Calc.
|
||||
Comment[en]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[de]=Berechnungen ausführen, Informationen analysieren und Listen in Tabellendokumenten verwalten - Calc macht's möglich.
|
||||
Comment[ka]=ასრულებს კალკულაციას, აანალიზებს ინფორმაციას და მართავს სიებს ცხრილებში Calc-ის გამოყენებით.
|
||||
Comment[da]=Udfør beregning, analyser information og administrer lister i regneark ved brug af Calc.
|
||||
Comment[ar]=أنجز العمليات الحسابية، وحلِّل المعلومات وأدر القوائم في الجداول المُمتدة باستخدام كالك.
|
||||
Comment[hi]=गणना करता है, सूचना विश्लेषण करता है, और Calc के प्रयोग से स्प्रेडशीट में सूची प्रबंधित करता है.
|
||||
Comment[ve]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[km]=ធ្វើការគណនា វិភាគព័ត៌មាន និងគ្រប់គ្រងបញ្ជីក្នុងសៀវភៅបញ្ជី ដោយប្រើ Calc ។
|
||||
Comment[eu]=Kalkuluak egin, informazioa aztertu eta kalkulu-orrietako zerrendak kudeatu Calc erabiliz.
|
||||
Comment[mk]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[st]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[as]=Calc ব্যৱহাৰ কৰি স্প্ৰেডশ্বিটসমূহত গণনাসমূহ কৰক, তথ্য বিশ্লেষণ কৰক আৰু তালিকাসমূহ ব্যৱস্থাপনা কৰক।
|
||||
Comment[ne]=Calc को प्रयोगद्वारा स्प्रेडसिटहरूमा गणना कार्यसम्पादन, सूचना विश्लेषण र सूचीहरू प्रबन्ध गर्नुहोस्।
|
||||
Comment[sr]=Изведите прорачуне, анализирајте податке и управљајте листама у таблицама уз Рачун.
|
||||
Comment[en_ZA]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[zh_TW]=使用 Calc 可在試算表中執行計算、分析資訊與管理清單。
|
||||
Comment[uz]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[et]=Calc võimaldab arvutustabelite abiga teha arvutusi, analüüsida teavet ja hallata loendeid.
|
||||
Comment[gug]=Rejapo kálkulo, analice informacíon ha sambyhy listas en kuatia kálkulo peguarã reipuru jave Calc.
|
||||
Comment[cy]=Cyfrifo, dadansoddi data a rheoli rhestrau mewn taenlenni gan ddefnyddio Calc.
|
||||
Comment[fi]=Calcin avulla voit tehdä laskutoimituksia, analysoida tietoja ja hallita listoja laskentataulukoissa.
|
||||
Comment[nl]=Met Calc kunt u in werkbladen berekeningen uitvoeren, gegevens analyseren en lijsten beheren.
|
||||
Comment[om]=Calc fayyadamuun herrega hojjedhu, odeeffannoo xiinxali, tarreewwan wardii keessaa taligi.
|
||||
Comment[zu]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[ta]=கணக்கிடவும், தகவலை ஆயவும், விரிதாள்களிலுள்ள பட்டியல்களை மேலாளவும் கால்கைப் பயன்படுத்து.
|
||||
Comment[fr]=Calc - Calculs, analyses et gestion de listes dans des feuilles de calcul.
|
||||
Comment[mr]=Calc चा वापर करून स्प्रेडशीट् अंतर्गत गणना, माहिती विश्लेषण व यादी व्यवस्थापीत करा.
|
||||
Comment[it]=Calc può essere usato per eseguire calcoli, analizzare informazioni e gestire elenchi nei fogli elettronici.
|
||||
Comment[ug]=Calc ئىشلىتىپ ئۇچۇر ھېسابلاش ۋە ئانالىز ئېلىپ بېرىلىدۇ ھەمدە ئېلېكترونلۇق جەدۋەلدىكى تىزىملىك باشقۇرۇلىدۇ.
|
||||
Comment[ru]=Выполнение вычислений, анализ информации и управление списками в электронных таблицах с помощью Calc.
|
||||
Comment[te]=Calc వినియోగించి స్ర్పెడ్షీట్లలో జాబితాలను నిర్వహించును,సమాచారమును విశ్లేషించును మరియు గణలను జరుపును.
|
||||
Comment[gu]=કૅલ્ક વડે સ્પ્રેડશીટમાં ગણતરીઓ, માહીતી પૃથ્થકરણ અને યાદીઓ બનાવો.
|
||||
Comment[xh]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[eo]=Kalkuladi, analizi informojn kaj administri listojn en kalkultabeloj per Tabelilo.
|
||||
Comment[fa]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[af]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[ga]=Déan ríomhaireacht, déan anailís agus bainistigh liostaí i scarbhileoga trí úsáid a bhaint as Calc.
|
||||
Comment[uk]=Виконання розрахунків, аналіз інформації та керування списками в електронних таблицях за допомогою Calc.
|
||||
Comment[or]=Calc ବ୍ୟବହାର କରି ସ୍ପ୍ରେଡ୍ସିଟରେ ଗଣନା ସମ୍ପାଦନ, ସୂଚନା ବିଶ୍ଳେଷଣ ଏବଂ ତାଲିକା ପରିଚାଳନା କରନ୍ତୁ।
|
||||
Comment[tr]=Calc kullanarak çalışma sayfasında performans hesaplamak, bilgi analiz etmek ve listeleri yönetmek.
|
||||
Comment[nn]=Med Calc kan du gjera utrekningar, analysera informasjon og handtera lister i rekneark.
|
||||
Comment[pt]=Efetue cálculos, analise informações e faça a gestão de listas em folhas de cálculo através do Calc.
|
||||
Comment[ml]=കണക്കുകൂട്ടലുകള്, കാല്ക് ഉപയോഗിച്ച് വിവരങ്ങള് അവലോകനം ചെയ്യുകയും സ്പ്രെഡ്ഷീറ്റിലെ ലിസ്റ്റ് കൈകാര്യം ചെയ്യുകയും ചെയ്യാം.
|
||||
Comment[kmr_Latn]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[gl]=Facer cálculos, analizar información e xestionar listas en follas de cálculo con Calc.
|
||||
Comment[pl]=Przeprowadzaj obliczenia, analizuj informacje i zarządzaj listami w arkuszach kalkulacyjnych używając programu Calc.
|
||||
Comment[mn]=Төлбөрийн тооцоо хийх, Мэдээлэлүүдийг шинжлэн судлах ба Хүснэгт баримт бичигт жагсаалтуудыг журамлах - Хүснэгт баримт энэ боломжийг бүгдэд олгоно.
|
||||
Comment[gd]=Dèan àireamhachd, mion-sgrùd fiosrachadh is rianaich liostaichean ann an cliath-dhuilleagan le Calc.
|
||||
Comment[br]=Ober jedadurioù, dezrannañ stlennoù hag ardeiñ rolladoù er renkelloù dre ober gant Calc.
|
||||
Comment[ko]=Calc를 사용하여 스프레드시트에서 계산, 정보 분석 및 목록 관리를 수행합니다.
|
||||
Comment[nso]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[ast]=Facer cálculos, analizar información y editar llistes en fueyes de cálculu con Calc.
|
||||
Comment[rw]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[ja]=Calc を使用して、スプレッドシートで計算を実行し、情報を分析し、リストを管理します。
|
||||
Comment[pt_BR]=Efetue cálculos, analise informações e gerencie listas em planilhas utilizando o Calc.
|
||||
Comment[vi]=Dùng Calc tính toán, phân tích thông tin và quản lý danh sách trong bảng tính.
|
||||
Comment[sv]=Utför beräkningar, anaysera information och hantera listor i kalkylblad med hjälp av Calc.
|
||||
Comment[am]=ሂሳቦችን ያስሉ መረጃዎችን ይመርምሩ እና ያስተዳድሩ lists in spreadsheets by using Calc.
|
||||
Comment[es]=Realice cálculos, analice información y maneje listas en hojas de cálculo con Calc.
|
||||
Comment[nb]=Utfør beregninger, analyser informasjon og håndter lister i regneark ved å bruke Calc.
|
||||
Comment[kk]=Calc көмегімен есептерді шығару, ақпаратты анализдеу және электрондық кестелерде тізімдерді басқаруды орындауға болады.
|
||||
Comment[ro]=Efectuați calcule, analizați informații și gestionați liste în foi de calcul folosind Calc.
|
||||
Comment[is]=Gera útreikninga, greina gögn og meðhöndla lista í töflureikni með því að nota Calc.
|
||||
Comment[bs]=Izračunavanje, analiziranje informacija i upravljanje listama u unakrsnim tabelama koristeći Calc.
|
||||
Comment[be]=Праводзьце вылічэнні, аналізуйце інфармацыю і кіруйце спісамі ў разліковых аркушах з дапамогаю Calc.
|
||||
Comment[zh_CN]=使用 Calc 进行计算、分析信息以及管理电子表格中的列表。
|
||||
Comment[nr]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[ca]=Feu càlculs, analitzeu informació i gestioneu llistes en fulls de càlcul amb el Calc.
|
||||
Comment[hr]=Izvedite proračune, analizirajte informacije i upravljajte popisima u proračunskim tablicama koristeći Calc.
|
||||
Comment[he]=ביצוע חישובים, ניתוח מידע וניהול רשימות בגיליונות אלקטרוניים באמצעות Calc.
|
||||
Comment[hu]=Számítások végrehajtása, adatok elemzése és listák kezelése munkafüzetekben a Calc használatával.
|
||||
Comment[ss]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[tg]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[en_GB]=Perform calculations, analyse information and manage lists in spreadsheets using Calc.
|
||||
Comment[tn]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[lt]=Skaičiuokle galima atlikti įvairius skaičiavimus, analizuoti informaciją, tvarkyti sąrašus lentelėse.
|
||||
Comment[si]=Calc භාවිතා කරමින් ගණනය කිරීම්, තොරතුරු විශ්ලේෂණය සහ පැතුරුම්පත් වල ලැයිස්තු පාලනය සිදු කරන්න.
|
||||
Comment[bn]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[dz]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[id]=Melakukan perhitungan, analisa informasi, dan kelola daftar di lembar kerja menggunakan Calc.
|
||||
Comment[cs]=Calc umožňuje vytvářet a spravovat tabulkové seznamy a provádět na těchto datech výpočty a analýzu informací.
|
||||
Comment[el]=Εκτέλεση υπολογισμών, ανάλυσης πληροφοριών και διαχείρισης λιστών σε υπολογιστικά φύλλα με τη χρήση του Calc.
|
||||
Comment[lv]=Veikt aprēķinus, analizēt informāciju un pārvaldīt sarakstus izklājlapās, lietojot Calc.
|
||||
Comment[oc]=Calc - Calculs, analisis e gestion de listas dins de fuèlhs de calcul.
|
||||
Comment[ca_valencia]=Feu càlculs, analitzeu informació i gestioneu llistes en fulls de càlcul amb el Calc.
|
||||
Comment[ts]=Perform calculations, analyze information and manage lists in spreadsheets by using Calc.
|
||||
Comment[sl]=S programom Calc izvajajte računske operacije, analizirajte podatke in upravljajte sezname v preglednicah.
|
||||
Comment[th]=ทำการคำนวณ วิเคราะห์ข้อมูล และจัดการรายการในตารางคำนวณโดยใช้ Calc
|
||||
Comment[bg]=С Calc можете да извършвате изчисления, да анализирате информация и да организирате списъци в електронни таблици.
|
||||
StartupNotify=true
|
||||
X-GIO-NoFuse=true
|
||||
Keywords=Accounting;Stats;OpenDocument Spreadsheet;Chart;Microsoft Excel;Microsoft Works;OpenOffice Calc;ods;xls;xlsx;
|
||||
InitialPreference=5
|
||||
StartupWMClass=libreoffice-calc
|
||||
X-KDE-Protocols=file,http,ftp,webdav
|
||||
|
||||
Actions=NewDocument;
|
||||
|
||||
[Desktop Action NewDocument]
|
||||
Name=New Spreadsheet
|
||||
Name[zh_TW]=新增試算表
|
||||
Name[sk]=Nový tabuľkový dokument
|
||||
Name[is]=Nýr töflureiknir
|
||||
Name[ka]=New Spreadsheet
|
||||
Name[sv]=Nytt kalkylblad
|
||||
Name[en_GB]=New Spreadsheet
|
||||
Name[uz]=New Spreadsheet
|
||||
Name[bn]=New Spreadsheet
|
||||
Name[fa]=صفحه گسترده جدید
|
||||
Name[cs]=Nový sešit
|
||||
Name[zh_CN]=新建电子表格
|
||||
Name[ta]=புதிய விரிதாள்
|
||||
Name[nl]=Nieuw werkblad
|
||||
Name[nn]=Nytt rekneark
|
||||
Name[ast]=Fueya de cálculu nueva
|
||||
Name[tr]=Yeni Çalışma Sayfası
|
||||
Name[he]=גיליון אלקטרוני חדש
|
||||
Name[cy]=Taenlen Newydd
|
||||
Name[kk]=Жаңа электрондық кесте
|
||||
Name[ja]=新規の表計算文書
|
||||
Name[ug]=يېڭى ئېلېكترونلۇق جەدۋەل
|
||||
Name[sr]=Нова таблица
|
||||
Name[gl]=Nova folla de cálculo
|
||||
Name[ru]=Создать эл.таблицу
|
||||
Name[pt_BR]=Nova planilha
|
||||
Name[el]=Νέο υπολογιστικό φύλλο
|
||||
Name[br]=Renkell nevez
|
||||
Name[gu]=નવી સ્પ્રેડશીટ
|
||||
Name[ro]=Foaie de calcul nouă
|
||||
Name[oc]=Classador novèl
|
||||
Name[eu]=Kalkulu-orri berria
|
||||
Name[xh]=New Spreadsheet
|
||||
Name[de]=Neues Tabellendokument
|
||||
Name[rw]=New Spreadsheet
|
||||
Name[fi]=Uusi laskentataulukko
|
||||
Name[ga]=Scarbhileog Nua
|
||||
Name[ss]=New Spreadsheet
|
||||
Name[as]=নতুন স্প্ৰেডশ্বিট
|
||||
Name[en]=New Spreadsheet
|
||||
Name[zu]=New Spreadsheet
|
||||
Name[lv]=Jauna izklājlapa
|
||||
Name[ko]=새 스프레드시트
|
||||
Name[it]=Nuovo foglio elettronico
|
||||
Name[id]=Lembar Kerja Baru
|
||||
Name[be]=Новы разліковы аркуш
|
||||
Name[bg]=Нова електронна таблица
|
||||
Name[hu]=Új munkafüzet
|
||||
Name[ca]=Full de càlcul nou
|
||||
Name[nr]=New Spreadsheet
|
||||
Name[en_ZA]=New Spreadsheet
|
||||
Name[ve]=New Spreadsheet
|
||||
Name[mk]=New Spreadsheet
|
||||
Name[am]=አዲስ ሰንጠረዥ
|
||||
Name[gug]=Kuatia Kálkulo Peguarã Pyahu
|
||||
Name[da]=Nyt regneark
|
||||
Name[pl]=Nowy arkusz kalkulacyjny
|
||||
Name[tn]=New Spreadsheet
|
||||
Name[te]=కొత్త స్ప్రెడ్ షీట్
|
||||
Name[pt]=Nova folha de cálculo
|
||||
Name[st]=New Spreadsheet
|
||||
Name[om]=Gabatee Herregaa haara
|
||||
Name[es]=Hoja de cálculo nueva
|
||||
Name[gd]=Cliath-dhuilleag ùr
|
||||
Name[mn]=Шинэ хүснэгт баримт
|
||||
Name[ca_valencia]=Full de càlcul nou
|
||||
Name[th]=สร้างตารางคำนวณใหม่
|
||||
Name[or]=ନୂତନ ସ୍ପ୍ରେଡସିଟ
|
||||
Name[eo]=Nova kalkultabelo
|
||||
Name[uk]=Електронна таблиця ODF
|
||||
Name[pa_IN]=ਨਵੀ ਸਪ੍ਰੈਡਸੀਟ
|
||||
Name[mr]=नवीन स्प्रेडशीट
|
||||
Name[hi]=नया स्प्रेडशीट
|
||||
Name[lt]=Naujas skaičiuoklės dokumentas
|
||||
Name[si]=ODF පැතුරුම් පත
|
||||
Name[sl]=Nova preglednica
|
||||
Name[nb]=Nytt regneark
|
||||
Name[ts]=New Spreadsheet
|
||||
Name[dz]=New Spreadsheet
|
||||
Name[bs]=Novi tabelarni prikaz
|
||||
Name[ar]=جدول مُمتد جديد
|
||||
Name[et]=Uus arvutustabel
|
||||
Name[kmr_Latn]=New Spreadsheet
|
||||
Name[vi]=Bảng tính mới
|
||||
Name[ml]=പുതിയ സ്പ്രെഡ്ഷീറ്റ്
|
||||
Name[km]=សៀវភៅបញ្ជីថ្មី
|
||||
Name[fr]=Nouveau classeur
|
||||
Name[af]=New Spreadsheet
|
||||
Name[ne]=ओडीएफ स्प्रेडसीट
|
||||
Name[tg]=New Spreadsheet
|
||||
Name[nso]=New Spreadsheet
|
||||
Name[hr]=Nova proračunska tablica
|
||||
Exec=libreoffice --calc
|
315
home_org/thinclient/Schreibtisch/libreoffice-writer.desktop
Executable file
315
home_org/thinclient/Schreibtisch/libreoffice-writer.desktop
Executable file
@ -0,0 +1,315 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
#
|
||||
# This file is part of the LibreOffice project.
|
||||
#
|
||||
# This Source Code Form is subject to the terms of the Mozilla Public
|
||||
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
#
|
||||
# This file incorporates work covered by the following license notice:
|
||||
#
|
||||
# Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
# contributor license agreements. See the NOTICE file distributed
|
||||
# with this work for additional information regarding copyright
|
||||
# ownership. The ASF licenses this file to you under the Apache
|
||||
# License, Version 2.0 (the "License"); you may not use this file
|
||||
# except in compliance with the License. You may obtain a copy of
|
||||
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
||||
#
|
||||
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Terminal=false
|
||||
Icon=libreoffice-writer
|
||||
Type=Application
|
||||
Categories=Office;WordProcessor;X-Red-Hat-Base;X-MandrivaLinux-Office-Wordprocessors;
|
||||
Exec=libreoffice --writer %U
|
||||
MimeType=application/vnd.oasis.opendocument.text;application/vnd.oasis.opendocument.text-template;application/vnd.oasis.opendocument.text-web;application/vnd.oasis.opendocument.text-master;application/vnd.oasis.opendocument.text-master-template;application/vnd.sun.xml.writer;application/vnd.sun.xml.writer.template;application/vnd.sun.xml.writer.global;application/msword;application/vnd.ms-word;application/x-doc;application/x-hwp;application/rtf;text/rtf;application/vnd.wordperfect;application/wordperfect;application/vnd.lotus-wordpro;application/vnd.openxmlformats-officedocument.wordprocessingml.document;application/vnd.ms-word.document.macroenabled.12;application/vnd.openxmlformats-officedocument.wordprocessingml.template;application/vnd.ms-word.template.macroenabled.12;application/vnd.ms-works;application/vnd.stardivision.writer-global;application/x-extension-txt;application/x-t602;text/plain;application/vnd.oasis.opendocument.text-flat-xml;application/x-fictionbook+xml;application/macwriteii;application/x-aportisdoc;application/prs.plucker;application/vnd.palm;application/clarisworks;application/x-sony-bbeb;application/x-abiword;application/x-iwork-pages-sffpages;application/x-mswrite;
|
||||
Name=LibreOffice Writer
|
||||
GenericName=Word Processor
|
||||
GenericName[hi]=वर्ड प्रोसेसर
|
||||
GenericName[km]=កម្មវិធីវាយអត្ថបទ
|
||||
GenericName[th]=โปรแกรมประมวลผลคำ
|
||||
GenericName[lt]=Tekstų rengyklė
|
||||
GenericName[cy]=Prosesydd Geiriau
|
||||
GenericName[id]=Pengolah Kata
|
||||
GenericName[zu]=Word Processor
|
||||
GenericName[ko]=워드 프로세서
|
||||
GenericName[pt_BR]=Editor de texto
|
||||
GenericName[ja]=ワードプロセッサ
|
||||
GenericName[hr]=Program za obradu teksta
|
||||
GenericName[sr]=Уређивач текста
|
||||
GenericName[ga]=Próiseálaí Focal
|
||||
GenericName[gug]=Procesador Moñe'ẽrãgui
|
||||
GenericName[bn]=ওয়ার্ড প্রসেসর
|
||||
GenericName[pl]=Word Processor
|
||||
GenericName[de]=Textverarbeitung
|
||||
GenericName[oc]=Tractament de tèxte
|
||||
GenericName[gd]=Giullachair teacsa
|
||||
GenericName[te]=వర్డ్ ప్రాసెసర్
|
||||
GenericName[af]=Woordverwerker
|
||||
GenericName[gl]=Procesador de textos
|
||||
GenericName[uk]=Текстовий процесор
|
||||
GenericName[ca_valencia]=Processador de textos
|
||||
GenericName[tg]=Word Processor
|
||||
GenericName[ru]=Текстовый процессор
|
||||
GenericName[zh_TW]=文書處理器
|
||||
GenericName[et]=Tekstitöötlus
|
||||
GenericName[be]=Тэкставы працэсар
|
||||
GenericName[ca]=Processador de textos
|
||||
GenericName[en_ZA]=Word Processor
|
||||
GenericName[ts]=Word Processor
|
||||
GenericName[om]=Hujeessaa Jecha
|
||||
GenericName[lv]=Tekstapstrādes programma
|
||||
GenericName[ug]=يېزىق بىر تەرەپ قىلىش
|
||||
GenericName[rw]=Musesenguramagambo
|
||||
GenericName[cs]=Textový procesor
|
||||
GenericName[nn]=Teksthandsamar
|
||||
GenericName[zh_CN]=字处理器
|
||||
GenericName[si]=ලිපි සකසනය
|
||||
GenericName[am]=ቃላት ማቀናበሪያ
|
||||
GenericName[dz]=Word Processor
|
||||
GenericName[kk]=Мәтіндік процессор
|
||||
GenericName[ve]=Word Processor
|
||||
GenericName[nb]=Skriveprogram
|
||||
GenericName[gu]=વર્ડ પ્રોસેસર
|
||||
GenericName[or]=ଶବ୍ଦ ସଞ୍ଚାଳକ
|
||||
GenericName[he]=מעבד תמלילים
|
||||
GenericName[fa]=واژهپرداز
|
||||
GenericName[eu]=Testu prozesatzailea
|
||||
GenericName[sl]=Urejevalnik besedila
|
||||
GenericName[ast]=Procesador de testos
|
||||
GenericName[as]=Word প্ৰচেছৰ
|
||||
GenericName[mr]=वर्ड प्रोसेसर
|
||||
GenericName[bs]=Program za obradu teksta
|
||||
GenericName[eo]=Vortprocesilo
|
||||
GenericName[ne]=वर्ड प्रोसेसर
|
||||
GenericName[ka]=Word Processor
|
||||
GenericName[es]=Procesador de texto
|
||||
GenericName[st]=Word Processor
|
||||
GenericName[tn]=Word Processor
|
||||
GenericName[ml]=വേര്ഡ് പ്രൊസസ്സര്
|
||||
GenericName[kmr_Latn]=Kiryarê Peyvan
|
||||
GenericName[vi]=Xử lý từ
|
||||
GenericName[hu]=Szövegszerkesztő
|
||||
GenericName[en]=Word Processor
|
||||
GenericName[ta]=சொற்செயலி
|
||||
GenericName[ro]=Procesor de text
|
||||
GenericName[tr]=Kelime İşlemci
|
||||
GenericName[is]=Ritvinnsluforrit
|
||||
GenericName[sk]=Textový procesor
|
||||
GenericName[da]=Tekstbehandling
|
||||
GenericName[it]=Elaboratore di testo
|
||||
GenericName[en_GB]=Word Processor
|
||||
GenericName[uz]=Matn protsessori
|
||||
GenericName[bg]=Текстообработка
|
||||
GenericName[nr]=Word Processor
|
||||
GenericName[ss]=Word Processor
|
||||
GenericName[pt]=Processador de texto
|
||||
GenericName[br]=Kewerier testenn
|
||||
GenericName[nl]=Tekstverwerker
|
||||
GenericName[sv]=Ordbehandlare
|
||||
GenericName[el]=Επεξεργαστής Word
|
||||
GenericName[fi]=Tekstinkäsittely
|
||||
GenericName[mn]=Ворд боловсруулагч
|
||||
GenericName[mk]=Обработка на текст
|
||||
GenericName[pa_IN]=ਵਰਡ ਪਰੋਸੈਸਰ
|
||||
GenericName[xh]=Word Processor
|
||||
GenericName[fr]=Traitement de texte
|
||||
GenericName[nso]=Sebopi sa mantšu
|
||||
GenericName[ar]=معالج المستندات
|
||||
Comment=Create and edit text and graphics in letters, reports, documents and Web pages by using Writer.
|
||||
Comment[ru]=Создание и редактирование текста и рисунков в письмах, отчётах, документах или веб-страницах.
|
||||
Comment[ug]=Writer ئىشلىتىپ خەت-چەك، دوكلات جەدۋىلى، پۈتۈك ۋە تور بەتتىكى تېكست ۋە گرافىكلارنى قۇرۇپ تەھرىرلىگىلى بولىدۇ.
|
||||
Comment[it]=Usando Writer puoi creare e modificare il testo e le immagini di lettere, rapporti, documenti e pagine web.
|
||||
Comment[te]=పత్రము మరియు లేఖ యొక్క చిత్రరూపములు,నివేదనలు,పత్రములు మరియు వ్రాయు యంత్రమును ఉపయోగించిన వెబ్ పుటలును నిర్మించి సరిచేయుము.
|
||||
Comment[xh]=Dala uze uhlele isiqendu nezazobe zegrafu ezileteni, iingxelo, amaxwebhu namakhasi Othungelwano ngokusebenzisa i-Writer.
|
||||
Comment[gu]=લખાણ દ્દારા પત્રો, અહેવાલો, દસ્તાવેજો અને વેબ પાનાઓમાં લખાણ અને ચિત્રો બનાવો અને સુઘારો.
|
||||
Comment[eo]=Krei kaj redakti tekston kaj grafikaĵojn en leteroj, raportoj, dokumentoj kaj TTT-paĝoj per Verkilo.
|
||||
Comment[fa]=با استفاده از کاتب، متن و گرافیک نامهها، گزارشها، نوشتارها و صفحات وب را ایجاد یا ویرایش کنید.
|
||||
Comment[af]=Skep en redigeer teks en grafika in briewe, verslae, dokumente en webbladsye met Writer.
|
||||
Comment[ga]=Cruthaigh téacs agus grafaicí i litreacha, tuairiscí, cáipéisí, agus leathanaigh Ghréasáin le Writer.
|
||||
Comment[uk]=Створення та редагування тексту та графіки у листах, звітах, документах та веб-сторінках.
|
||||
Comment[or]=ରାଇଟର ଉପୟୋଗ କରି ପତ୍ରଗୁଡିକରେ, ରିପୋର୍ଟରେ,ଦଲିଲଗୁଡିକରେ ଏବଂ ଉଏବ୍ ପୃଷ୍ଠାଗୁଡିକରେ ଟେକ୍ସଟ ଏବଂ ଲେଖାଚିତ୍ରଗୁଡିକୁ ସୃଷ୍ଟି ଏବଂ ସମ୍ପାଦନ କରନ୍ତୁ।
|
||||
Comment[nn]=Med Writer kan du laga og redigera tekst og bilete i brev, rapportar, dokument og nettsider.
|
||||
Comment[tr]=Writer kullanarak mektuplardaki metin ve grafikleri, rapor, belge ve Web sayfaları oluşturabilir ve düzenleyebilirsiniz.
|
||||
Comment[pa_IN]=ਰਾਇਟਰ ਨਾਲ ਪੱਤਰਾਂ, ਰਿਪੋਰਟਾਂ, ਡੌਕੂਮੈਂਟਾਂ ਅਤੇ ਵੈੱਬ ਸਫ਼ਿਆਂ ਵਿੱਚ ਟੈਕਸਟ ਅਤੇ ਚਿੱਤਰ ਬਣਾਏ ਅਤੇ ਸੋਧੇ ਜਾ ਸਕਦੇ ਹਨ।
|
||||
Comment[ka]=ქმნის და ასწორებს დოკუმენტებსა და დიაგრამებს წერილებში, მოხსენებებში, დოკუმენტებში და ვებ-გვერდებში Writer-ის მეშვეობით.
|
||||
Comment[sk]=Vytvárajte a upravujte textové a grafické listy, správy, dokumenty a webové stránky s použitím Writer.
|
||||
Comment[de]=Erstellen und bearbeiten von Text und Grafiken in Briefen, Reports, Dokumenten und Web-Seiten - Writer macht's möglich.
|
||||
Comment[en]=Create and edit text and graphics in letters, reports, documents and Web pages by using Writer.
|
||||
Comment[ar]=إنشاء النصوص والرسومات في الخطابات، والتقارير، والمستندات وصفحات ويب وتحريرها باستخدام رايتر.
|
||||
Comment[da]=Opret og rediger tekst og grafik i breve, rapporter, dokumenter og websider ved hjælp af Writer.
|
||||
Comment[hi]=लेखक के प्रयोग से पत्र, रिपोर्ट, दस्तावेज़ में पाठ और आरेख बनाता है और संपादित करता है.
|
||||
Comment[eu]=Testua eta grafikoak sortu eta editatu gutunetan, txostenetan, dokumentuetan eta web orrietan Writer erabiliz.
|
||||
Comment[mk]=Креирајте и уредувајте текст и графика во писма, извештаи, документи и веб-страници со користење на Writer.
|
||||
Comment[ve]=Vhumbani ni dovhe ni lulamise ḽiṅwalwa na dzigirafiki kha maṅwalo, mivhigo, maṅwalo na masiaṱari a Web nga u shumisa Writer.
|
||||
Comment[km]=បង្កើត និងកែសម្រួលអត្ថបទ និងក្រាហ្វិកក្នុងសំបុត្រ របាយការណ៍ ឯកសារ និងទំព័របណ្តាញដោយប្រើ Writer ។
|
||||
Comment[st]=Bopa le ho lokisa mongolo le ditshwantsho mangolong, ditlalehong, ditokomaneng le maqepheng a Wepe ka ho sebedisa Writer.
|
||||
Comment[as]=Writer ব্যৱহাৰ কৰি চিঠি, সংবাদ, দস্তাবেজ আৰু পৃষ্ঠাবোৰত থকা লিখনী আৰু গ্ৰাফিক্স সৃষ্টি আৰু সম্পাদনা কৰক।
|
||||
Comment[ne]=लेखकको प्रयोगद्वारा चिठ्ठीहरू, प्रतिवेदनहरू, कागजातहरू र वेब पृष्ठहरूमा पाठ तथा ग्राफिक्स सिर्जना तथा सम्पादन गर्नुहोस् ।
|
||||
Comment[sr]=Пишите и уређујте текст и графику у писмима, извештајима и веб страницама у Писцу.
|
||||
Comment[en_ZA]=Create and edit text and graphics in letters, reports, documents and Web pages by using Writer.
|
||||
Comment[gug]=Rejapo ha edite moñe'ẽrã ha gráficos en cartas, informes, documentos ha togue Web reipuru jave Writer.
|
||||
Comment[zh_TW]=使用 Writer 可以在信件、報告、文件和網頁中建立與編輯文字和圖形。
|
||||
Comment[uz]=Writer yordamida hisobotlar, matn hujjatlari, veb sahifalar yaratish va tahrirlash.
|
||||
Comment[et]=Writer võimaldab luua ja redigeerida kirjade, aruannete, dokumentide ning veebilehtede teksti ja pilte.
|
||||
Comment[fi]=Luo ja muokkaa tekstiä ja grafiikkaa kirjeisiin, raportteihin, tekstiasiakirjoihin ja internet-sivuihin Writer-ohjelmalla.
|
||||
Comment[cy]=Creu a golygu testun a graffigau mewn llythyron, adroddiadau, dogfennau a thudalennau Gwe gyda Writer.
|
||||
Comment[nl]=Met Writer kunt u tekst en afbeeldingen in brieven, rapporten, documenten en webpagina's maken en bewerken.
|
||||
Comment[om]=Bareessaa fayyadamuun xalayaalee, gabasota, galmeewwanii fi fuulota saphaphuu irratti barruu fi saxxatoo uumi, gulaali.
|
||||
Comment[zu]=Yenza futhi ulungise umbhalo nemidwebo esezinhlamvini zamagama, emibikweni, emafayelini nasemakhasini eWebhu ngokusebenzisa i-Writer.
|
||||
Comment[fr]=Writer - Création et édition de textes et d'images pour courriers, rapports, documents et pages Web.
|
||||
Comment[mr]=Writer चा वापरून पत्रं, अहवाल, दस्तऐवज व वेब पान अंतर्गत पाठ्य व चित्रलेख बनवा व संपादीत करा.
|
||||
Comment[ta]=கடிதங்கள், அறிக்கைகள், ஆவணங்கள், வலைப்பக்கங்கள் ஆகியவற்றின் உரை, படங்கள் இவற்றை உருவாக்கவும் தொகுக்கவும் ரைட்டரைப் பயன்படுத்துக.
|
||||
Comment[be]=Стварайце і рэдагуйце тэкст і графіку ў лістах, справаздачах, дакументах і старонках Сеціва з дапамогаю Writer-а.
|
||||
Comment[bs]=Pravite i mijenjajte tekst i grafiku u pismima, izvještajima, dokumentima i Web stranicama koristeći Writer.
|
||||
Comment[nr]=Enza nokuhlela itheksti neentjengiso eziseencwadini, emibikweni, emitlolweni nemakhasini weWebh ngokusebenzisa i-Writer.
|
||||
Comment[zh_CN]=使用 Writer 创建并编辑信函、报表、文档和网页中的文本和图形。
|
||||
Comment[he]=יצירה ועריכה של טקסט וגרפיקה במכתבים, דוחות, מסמכים ודפי אינטרנט באמצעות Writer.
|
||||
Comment[ca]=Creeu i editeu textos i gràfics en cartes, informes, documents i pàgines web amb el Writer.
|
||||
Comment[hr]=Stvorite i uredite tekst i grafiku u pisma, izvještajima, dokumentima i internet stranicama koristeći Writer.
|
||||
Comment[hu]=Levelek, jelentések, dokumentumok és weboldalak szövegének és grafikájának létrehozása és szerkesztése a Writer használatával.
|
||||
Comment[ss]=Yakha u-edithe umbhalo nemagrafiki etincwadzini, umbiko, wemadokhumenti nemapheji eWebhu ngekusebentisa Writer.
|
||||
Comment[tn]=Create and edit text and graphics in letters, reports, documents and Web pages by using Writer.
|
||||
Comment[tg]=Бо ёрии Writer матн ва тасвир сохтан, онҳоро ислоҳ кардан мумкин аст.
|
||||
Comment[en_GB]=Create and edit text and graphics in letters, reports, documents and Web pages using Writer.
|
||||
Comment[bn]=রাইটার ব্যবহার করে চিঠিপত্র, রিপোর্ট, নথি এবং ওয়েবপেজের লেখা ও ছবি তৈরি এবং সম্পাদনা করুন।
|
||||
Comment[lt]=Tekstų rengykle galima kurti laiškus, ataskaitas, kitus dokumentus ir tinklalapius, įterpti į juos paveikslus.
|
||||
Comment[si]=Writer භාවිතා කරමින් ලිපි වල පෙළ සහ චිත්රක, වාර්තා, ලිපි සහ වියුණු පිටු සාදන්න සහ වෙනස් කරන්න.
|
||||
Comment[id]=Mengolah teks dan gambar pada surat, laporan, dokumen, dan halaman Web menggunakan Writer.
|
||||
Comment[dz]=རྩོམ་འབྲི་པ་ལག་ལེན་འཐབ་ཐོག་ལས་ ཝེབ་པེཇི་དང་ ཡིག་ཆའི་རིགས་ སྙན་ཞུའི་རིགས་ ཡི་གུའི་རིགས་ཚུ་ནང་ལུ་ ཚིག་ཡིག་དང་ཚད་རིས་ཚུ་བཟོ་ནི་དང་ཞུན་དག་རྐྱབ་ནི།
|
||||
Comment[el]=Δημιουργία και επεξεργασία κειμένου και γραφικών σε επιστολές, αναφορές, έγγραφα και ιστοσελίδες με τη χρήση του Writer.
|
||||
Comment[cs]=Writer umožňuje vytvářet a upravovat text a grafiku v dopisech, sestavách, dokumentech a webových stránkách.
|
||||
Comment[lv]=Veidot un rediģēt tekstu un grafiku vēstulēs, atskaitēs, dokumentos un tīmekļa lapās, lietojot Writer.
|
||||
Comment[oc]=Writer - Creacion e edicion de tèxtes e d'imatges per corrièrs, rapòrts, documents e paginas Web.
|
||||
Comment[th]=สร้างและแก้ไขข้อความและกราฟิกส์ในจดหมาย รายงาน เอกสาร และหน้าเว็บโดยการใช้ Writer
|
||||
Comment[ca_valencia]=Creeu i editeu textos i gràfics en cartes, informes, documents i pàgines web amb el Writer.
|
||||
Comment[ts]=Cinca ni ku lulamisa marito ni vudirowi eka mapapila, swiviko, tidokumente ni tipheji ta Web hi ku tirhisa Writer.
|
||||
Comment[sl]=S programom Writer ustvarjajte in urejajte besedilo in slike v pismih, poročilih, dokumentih in spletnih straneh.
|
||||
Comment[bg]=С Writer можете да създавате и редактирате текст и графики в писма, отчети, документи и уебстраници.
|
||||
Comment[pt]=Criar e editar texto e imagens em cartas, relatórios, documentos e páginas web com o Writer.
|
||||
Comment[ml]=റൈറ്റര് ഉപയോഗിച്ച് കത്തുകളിലെയും റിപ്പോര്ട്ടുകളിലെയും ഡോക്കുമെന്റിലെയും വെബ് പേജിലെയും ടെക്സ്റ്റും ഗ്രാഫിക്സും സൃഷ്ടിക്കുകയും എഡിറ്റു ചെയ്യുകയും ചെയ്യുക.
|
||||
Comment[kmr_Latn]=Nivîs û grafîkên di name, rapor, belge û rûpelên torê de bî Writerê çêbike û sererast bike.
|
||||
Comment[gl]=Crear e editar texto ou imaxes en cartas, informes, documentos e páxinas web usando Writer.
|
||||
Comment[pl]=Twórz i edytuj listy, raporty, dokumenty i strony www wykorzystując program Writer.
|
||||
Comment[gd]=Cruthaich is deasaich teacsa is dealbhan ann an litrichean, aithisgean, sgrìobhainnean is duilleagan-lìn le Writer.
|
||||
Comment[mn]=Writer ашиглан захиа, тайлан, баримт дахь бичвэр ба график үүсгэх болон засварлах.
|
||||
Comment[br]=Writer - Krouiñ hag embann testennoù ha skeudennoù evit lizhiri, danevelloù, teulioù ha pajennoù Web.
|
||||
Comment[ko]=Writer를 사용하여 편지, 보고서, 문서 및 웹 페이지에서 텍스트와 그림을 만들고 편집할 수 있습니다.
|
||||
Comment[nso]=Hlama le go lokiša sengwalwa le dikrafiki mangwalong, dipegong, ditokumenteng le matlakaleng a wepe ka go diriša Writer.
|
||||
Comment[ast]=Crear y editar testos y gráficos de cartes, informes, documentos y páxines Web usando Writer.
|
||||
Comment[pt_BR]=Crie e edite textos e figuras em cartas, relatórios, documentos e páginas da Web por meio do Writer.
|
||||
Comment[ja]=Writer を使用して、レター、レポート、ドキュメントおよび Web ページのテキストおよび図を作成および編集します。
|
||||
Comment[rw]=Kurema no guhindura umwandiko n'ibishushanyo mu mabaruwa, raporo, inyandiko na paji Rubuga ukoresheje Writer.
|
||||
Comment[sv]=Skapa och redigera text och grafik i brev, rapporter, dokument och webbsidor med hjälp av Writer.
|
||||
Comment[am]=የቃላት መጻፊያን በመጠቀም ጽሁፎች እና ንድፎች ይፍጠሩ እና ያርሙ በፊደሎች ፡ መግለጫዎች ፡ ሰነዶች ፡ እና ድህረ ገጾች
|
||||
Comment[vi]=Tạo và sửa văn bản và đồ họa trong lá thư, báo cáo, tài liệu và trang Web bằng Writer.
|
||||
Comment[es]=Cree y edite texto y gráficos en cartas, informes, documentos y páginas Web con Writer.
|
||||
Comment[nb]=Opprett og rediger tekst og bilder i brev, rapporter, dokumenter og nettsider ved å bruke Writer.
|
||||
Comment[kk]=Writer көмегімен хаттарда, құжаттарда, есептемелерде және веб-парақтарда мәтінді және суреттерді жасау және түзетуге болады.
|
||||
Comment[is]=Búa til og breyta texta og myndefni í bréfum, skýrslum, skjölum og vefsíðum með því að nota Writer.
|
||||
Comment[ro]=Creați și editați textele și grafica din documente, scrisori, rapoarte și pagini web folosind Writer.
|
||||
StartupNotify=true
|
||||
X-GIO-NoFuse=true
|
||||
Keywords=Text;Letter;Fax;Document;OpenDocument Text;Microsoft Word;Microsoft Works;Lotus WordPro;OpenOffice Writer;CV;odt;doc;docx;rtf;
|
||||
InitialPreference=5
|
||||
StartupWMClass=libreoffice-writer
|
||||
X-KDE-Protocols=file,http,ftp,webdav
|
||||
|
||||
Actions=NewDocument;
|
||||
|
||||
[Desktop Action NewDocument]
|
||||
Name=New Document
|
||||
Name[zh_TW]=新增文件
|
||||
Name[sk]=Nový dokument
|
||||
Name[is]=Nýtt skjal
|
||||
Name[ka]=~ახალი დოკუმენტი
|
||||
Name[en_GB]=New Document
|
||||
Name[sv]=Nytt dokument
|
||||
Name[bn]=নতুন নথি
|
||||
Name[uz]=New Document
|
||||
Name[cs]=Nový dokument
|
||||
Name[fa]=پرونده جدید
|
||||
Name[ta]=புதிய ஆவணம்
|
||||
Name[zh_CN]=新建文档
|
||||
Name[nl]=Nieuw document
|
||||
Name[nn]=Nytt dokument
|
||||
Name[tr]=Yeni Belge
|
||||
Name[ast]=Documentu nuevu
|
||||
Name[cy]=Dogfen Newydd
|
||||
Name[he]=מסמך חדש
|
||||
Name[ja]=新規の文書ドキュメント
|
||||
Name[ug]=يېڭى پۈتۈك
|
||||
Name[kk]=Құжатты жасау
|
||||
Name[ru]=Создать документ
|
||||
Name[gl]=Novo documento
|
||||
Name[sr]=Нови документ
|
||||
Name[pt_BR]=Novo documento
|
||||
Name[el]=Νέο έγγραφο
|
||||
Name[br]=Teul nevez
|
||||
Name[gu]=નવું દસ્તાવેજ
|
||||
Name[oc]=Document novèl
|
||||
Name[ro]=Document nou
|
||||
Name[eu]=Dokumentu berria
|
||||
Name[xh]=Uxwebhu Olutsha
|
||||
Name[de]=Neues Dokument
|
||||
Name[rw]=Inyandiko Nshya
|
||||
Name[ss]=Idokhumenti lensha
|
||||
Name[ga]=Cáipéis Nua
|
||||
Name[as]=নতুন দস্তাবেজ
|
||||
Name[fi]=Uusi asiakirja
|
||||
Name[lv]=Jauns dokuments
|
||||
Name[ko]=새 문서
|
||||
Name[zu]=Ushicilelo olusha
|
||||
Name[en]=New Document
|
||||
Name[id]=Dokumen Baru
|
||||
Name[it]=Nuovo documento
|
||||
Name[be]=Новы дакумент
|
||||
Name[bg]=Нов документ
|
||||
Name[ca]=Document nou
|
||||
Name[hu]=Új dokumentum
|
||||
Name[en_ZA]=New Document
|
||||
Name[nr]=Umtlolo Omutjha
|
||||
Name[ve]=Ḽiṅwalwa Ḽiswa
|
||||
Name[am]=አዲስ ሰነድ
|
||||
Name[mk]=Нов документ
|
||||
Name[da]=Nyt dokument
|
||||
Name[gug]=Documento Pyahu
|
||||
Name[tn]=New Document
|
||||
Name[pl]=Nowy dokument
|
||||
Name[st]=New Document
|
||||
Name[te]=కొత్త పత్రం
|
||||
Name[pt]=Novo documento
|
||||
Name[es]=Documento nuevo
|
||||
Name[om]=Faayilii Haara
|
||||
Name[gd]=Sgrìobhainn ùr
|
||||
Name[ca_valencia]=Document nou
|
||||
Name[mn]=Шинэ баримт
|
||||
Name[th]=เอกสารใหม่
|
||||
Name[eo]=Nova dokumento
|
||||
Name[or]=ନୂଆ ଦଲିଲ
|
||||
Name[uk]=~Створити документ
|
||||
Name[mr]=नवीन दस्तऐवज
|
||||
Name[pa_IN]=ਨਵਾ ਦਸਤਾਵੇਜ
|
||||
Name[hi]=नया दस्तावेज़
|
||||
Name[si]=නව ලේඛනය (~N)
|
||||
Name[lt]=Naujas dokumentas
|
||||
Name[sl]=Nov dokument
|
||||
Name[nb]=Nytt dokument
|
||||
Name[dz]=ཡིག་ཆ་གསརཔ།
|
||||
Name[bs]=Novi dokument
|
||||
Name[ts]=Dokumente yintshwa
|
||||
Name[kmr_Latn]=Belgeya Nû
|
||||
Name[vi]=Tài liệu mới
|
||||
Name[ml]=പുതിയ രേഖ
|
||||
Name[et]=Uus dokument
|
||||
Name[ar]=مستند جديد
|
||||
Name[km]=ឯកសារថ្មី
|
||||
Name[fr]=Nouveau document
|
||||
Name[tg]=Ҳуҷҷати нав
|
||||
Name[ne]=नयाँ कागजात
|
||||
Name[af]=Nuwe dokument
|
||||
Name[hr]=Novi dokument
|
||||
Name[nso]=Tokumente e mpsha
|
||||
Exec=libreoffice --writer
|
174
home_org/thinclient/Schreibtisch/mate-screenshot.desktop
Executable file
174
home_org/thinclient/Schreibtisch/mate-screenshot.desktop
Executable file
@ -0,0 +1,174 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Name=Take Screenshot
|
||||
Name[af]=Neem skermskoot
|
||||
Name[am]=መመልከቻውን ፎቶ ማንሻ
|
||||
Name[ar]=خذ لقطة للشاشة
|
||||
Name[as]=পৰ্দাৰ ছবি নিন
|
||||
Name[ast]=Facer Semeya
|
||||
Name[be]=Зрабіць здымак экрана
|
||||
Name[be@latin]=Zrabi zdymak ekranu
|
||||
Name[bg]=Снимка на екрана
|
||||
Name[bn]=পর্দার ছবি নিন
|
||||
Name[bn_IN]=পর্দার ছবি নিন
|
||||
Name[br]=Pakañ ur skrammad
|
||||
Name[ca]=Feu una captura de pantalla
|
||||
Name[ca@valencia]=Feu una captura de pantalla
|
||||
Name[cmn]=拍下螢幕截圖
|
||||
Name[crh]=Ekran Körüntisini Al
|
||||
Name[cs]=Zachytit snímek obrazovky
|
||||
Name[cy]=Tynnu Sgrînlun
|
||||
Name[da]=Gem skærmbillede
|
||||
Name[de]=Bildschirmfoto aufnehmen
|
||||
Name[dz]=གསལ་གཞི་པར་བཏབ།
|
||||
Name[el]=Λήψη στιγμιότυπου οθόνης
|
||||
Name[en_AU]=Take Screenshot
|
||||
Name[en_CA]=Take Screenshot
|
||||
Name[en_GB]=Take Screenshot
|
||||
Name[eo]=Krei ekranopion
|
||||
Name[es]=Capturar pantalla
|
||||
Name[et]=Kuvatõmmise salvestamine
|
||||
Name[eu]=Egin kaptura
|
||||
Name[fa]=گرفتن عکس صفحه
|
||||
Name[fi]=Ota kuvakaappaus
|
||||
Name[fr]=Capture d'écran
|
||||
Name[ga]=Tóg Scáilghraf
|
||||
Name[gl]=Facer unha captura de pantalla
|
||||
Name[gu]=સ્ક્રીનશોટ લો
|
||||
Name[he]=צילום מסך
|
||||
Name[hi]=स्क्रीनशॉट लें
|
||||
Name[hr]=Snimi prikaz zaslona
|
||||
Name[hu]=Képernyőkép készítése
|
||||
Name[id]=Ambil Cuplikan
|
||||
Name[it]=Cattura schermata
|
||||
Name[ja]=スクリーンショットの取得
|
||||
Name[ka]=ეკრანის ანაბეჭდი
|
||||
Name[kn]=ಒಂದು ತೆರೆಚಿತ್ರವನ್ನು ತೆಗೆದುಕೋ
|
||||
Name[ko]=스크린샷 찍기
|
||||
Name[ku]=Wêneya Sermasê bikiş
|
||||
Name[ky]=Экран сүрөтүн тартуу
|
||||
Name[lt]=Nufotografuoti ekraną
|
||||
Name[lv]=Uzņemt ekrānattēlu
|
||||
Name[mai]=स्क्रीनशॉट लिअ'
|
||||
Name[mg]=Makà sarin'efijery
|
||||
Name[mk]=Зачувај слика од екранот
|
||||
Name[ml]=സ്ക്രീന്ഷോട്ട് എടുക്കുക
|
||||
Name[mr]=सक्रीनशॉट घ्या
|
||||
Name[ms]=Ambil Cekupan Skrin
|
||||
Name[nb]=Ta skjermdump
|
||||
Name[nds]=Billschirmfoto scheten
|
||||
Name[ne]=स्क्रिनसट लिनुहोस्
|
||||
Name[nl]=Schermafdruk maken
|
||||
Name[nn]=Ta eit skjermbilete
|
||||
Name[or]=ଗୋଟିଏ ଆଶୁଚିତ୍ର ନିଅନ୍ତୁ
|
||||
Name[pa]=ਸਕਰੀਨ-ਸ਼ਾਟ ਲਵੋ
|
||||
Name[pl]=Pobranie zrzutu ekranu
|
||||
Name[ps]=پرده انځور اخيستل
|
||||
Name[pt]=Captura de ecrã
|
||||
Name[pt_BR]=Capturar imagem da tela
|
||||
Name[ro]=Salvează o captură de ecran
|
||||
Name[ru]=Сделать снимок экрана
|
||||
Name[si]=තිරපිටපතක් ගන්න
|
||||
Name[sk]=Urobiť snímku obrazovky
|
||||
Name[sl]=Zajemi zaslonsko sliko
|
||||
Name[sr]=Направи снимак екрана
|
||||
Name[sr@latin]=Snimak ekrana
|
||||
Name[sv]=Ta en skärmbild
|
||||
Name[ta]=திரைப்பிடிப்பு செய்யவும்
|
||||
Name[te]=తెర ఛాయాచిత్రం తీసుకొను
|
||||
Name[th]=บันทึกภาพหน้าจอ
|
||||
Name[tr]=Ekran Görüntüsü Al
|
||||
Name[ug]=ئېكران كەسمىسى تۇت
|
||||
Name[uk]=Зробити зняток
|
||||
Name[ur]=تصویر اتاریں
|
||||
Name[vi]=Chụp hình màn hình
|
||||
Name[zh_CN]=抓图
|
||||
Name[zh_HK]=拍下螢幕截圖
|
||||
Name[zh_TW]=拍下螢幕截圖
|
||||
Comment=Save images of your desktop or individual windows
|
||||
Comment[af]=Stoor beelde van die werkskerm of individuele vensters
|
||||
Comment[ar]=احفظ صور لسطح مكتبك أو للنوافذ المنفردة
|
||||
Comment[as]=ডেস্কটপ বা স্বতন্ত্ৰ উইন্ডোৰ ছবি সংৰক্ষণ কৰক
|
||||
Comment[ast]=Guarda imáxenes del so escritoriu o ventanes individuales
|
||||
Comment[be]=Атрымаць выявы стала ці асобных вокнаў
|
||||
Comment[be@latin]=Zapišy vyjavy svajho stała ci peŭnych voknaŭ
|
||||
Comment[bg]=Запазване на снимки на екрана или индивидуални прозорци
|
||||
Comment[bn]=ডেস্কটপ অথবা স্বতন্ত্র উইন্ডোর ছবি সংরক্ষণ করুন
|
||||
Comment[bn_IN]=ডেস্কটপ অথবা স্বতন্ত্র উইন্ডোর ছবি সংরক্ষণ করুন
|
||||
Comment[br]=Enrollañ ar skeudennoù eus ho purev pe brenestroù hiniennel
|
||||
Comment[ca]=Desa imatges del vostre escriptori o de finestres individuals
|
||||
Comment[ca@valencia]=Alça imatges del vostre escriptori o de finestres individuals
|
||||
Comment[cmn]=將整個桌面或獨立的視窗儲存為圖片
|
||||
Comment[crh]=Masaüstüñiz ya da ferdiy pencereleriñizniñ suretlerini saqla
|
||||
Comment[cs]=Uložit obrázky pracovní plochy nebo konkrétních oken
|
||||
Comment[cy]=Cadw delweddau o'r bwrdd gwaith neu o ffenestri unigol
|
||||
Comment[da]=Gem billeder af dit skrivebord eller individuelle vinduer
|
||||
Comment[de]=Bildschirmfotos Ihrer Arbeitsumgebung oder einzelner Fenster speichern
|
||||
Comment[dz]=ཁྱོད་རའི་ཌེཀསི་ཊོཔ་ ཡང་ན་ སྒོ་སྒྲིག་སོ་སོའི་གཟུགས་བརྙན་ཚུ་སྲུངས།
|
||||
Comment[el]=Αποθήκευση εικόνων της επιφάνειας εργασίας σας ή ξεχωριστών παραθύρων
|
||||
Comment[en@shaw]=𐑕𐑱𐑝 𐑦𐑥𐑦𐑡𐑩𐑟 𐑝 𐑿𐑼 𐑛𐑧𐑕𐑒𐑑𐑪𐑐 𐑹 𐑦𐑯𐑛𐑦𐑝𐑦𐑛𐑿𐑩𐑤 𐑢𐑦𐑯𐑛𐑴𐑟
|
||||
Comment[en_AU]=Save images of your desktop or individual windows
|
||||
Comment[en_GB]=Save images of your desktop or individual windows
|
||||
Comment[es]=Guarde imágenes de su escritorio o ventanas individuales
|
||||
Comment[et]=Töölauast või üksikutest akendest pildi salvestamine
|
||||
Comment[eu]=Gorde mahaigaineko edo leiho bakarren irudiak
|
||||
Comment[fa]=ذخیرهٔ تصاویر رومیزی یا پنجرههای جداگانه
|
||||
Comment[fi]=Tallenna kuvia työpöydästä tai yksittäisistä ikkunoista
|
||||
Comment[fr]=Enregistrer les images de votre bureau ou de vos fenêtres individuelles
|
||||
Comment[gl]=Gardar imaxes do escritorio ou de xanelas individuais
|
||||
Comment[gu]=તમારા ડેસ્કટોપ અથવા વ્યક્તિગત વિન્ડોના ચિત્રો સંગ્રહો
|
||||
Comment[he]=שמור תמונות של שולחן העבודה או החלונות שלך
|
||||
Comment[hi]=अपने डेस्कटॉप या निजी विंडो के चित्र को सहेजें
|
||||
Comment[hu]=Az asztal vagy egyedi ablakok képeinek mentése
|
||||
Comment[id]=Simpan gambar dari desktop atau suatu jendela anda
|
||||
Comment[it]=Salva immagini della propria scrivania o singole finestre
|
||||
Comment[ja]=デスクトップ全体またはウィンドウの画像を保存します
|
||||
Comment[kn]=ನಿಮ್ಮ ಗಣಕತೆರೆಯನ್ನು ಅಥವ ಪ್ರತ್ಯೇಕ ವಿಂಡೋಗಳ ಚಿತ್ರವನ್ನು ಉಳಿಸಿ
|
||||
Comment[ko]=데스크톱이나 창 한 개의 스크린샷을 저장합니다
|
||||
Comment[ku]=Wêneyên sermaseya xwe an jî paceyên kesane tomar bike
|
||||
Comment[lt]=Įrašyti jūsų darbastalio ar atskirų langų nuotraukas
|
||||
Comment[lv]=Saglabā jūsu darbvirsmas vai logu attēlus
|
||||
Comment[mai]=अपन डेस्कटाप अथवा निजी विंडो क' चित्रकेँ सहेजू
|
||||
Comment[mk]=Зачувај слики од работната површина или од одредени прозорци
|
||||
Comment[ml]=നിങ്ങളുടെ ഡസ്ക്ടോപ്പ് അല്ലെങ്കില് ഓരോ ജാലകങ്ങളുടെ ഇമേജ് സൂക്ഷിക്കുക
|
||||
Comment[mr]=आपले कार्यस्थळ प्रतिमा किंवा चौकटी संचयीत करा
|
||||
Comment[ms]=Simpan imej desktop anda atau tetingkap secara individu
|
||||
Comment[nb]=Lagre bilder av ditt skrivebord eller individuelle vinduer
|
||||
Comment[ne]=तपाईँको डेस्कटपको वा व्यक्तिगत सञ्झ्यालका छविहरू बचत गर्नुहोस्
|
||||
Comment[nl]=Afbeeldingen van uw bureaublad of vensters maken
|
||||
Comment[nn]=Lagra bileta av ditt skrivebord eller individuelle vindauge
|
||||
Comment[or]=ଆପଣଙ୍କ ଡେସ୍କଟପ୍ କିମ୍ବା ବ୍ଯକ୍ତିଗତ ୱିଣ୍ଡୋର ପ୍ରତିଛବିକୁ ସଂରକ୍ଷଣ କରନ୍ତୁ
|
||||
Comment[pa]=ਆਪਣੇ ਡੈਸਕਟਾ ਜਾਂ ਅੱਡ-ਅੱਡ ਵਿੰਡੋਜ਼ ਲਈ ਸੰਭਾਲੋ
|
||||
Comment[pl]=Zapisanie obrazu pulpitu lub poszczególnych okien
|
||||
Comment[pt]=Gravar imagens do seu ambiente de trabalho ou janelas individuais
|
||||
Comment[pt_BR]=Salvar imagens da sua área de trabalho ou de janelas individuais
|
||||
Comment[ro]=Salvează imagini ale spațiului de lucru sau ale unor ferestre individuale
|
||||
Comment[ru]=Сохранить изображения рабочего стола или отдельных окон
|
||||
Comment[sk]=Uložiť obrázky vašej pracovnej plochy alebo samostatných okien
|
||||
Comment[sl]=Shranite slike namizja ali posameznih oken
|
||||
Comment[sr]=Сачувајте слике радне површи или појединачних прозора
|
||||
Comment[sr@latin]=Sačuvaj slike desktopa ili pojedinačnih prozora
|
||||
Comment[sv]=Spara bilder av ditt skrivbord eller individuella fönster
|
||||
Comment[ta]=உங்கள் பணிமேடையின் படங்களை அல்லது தனித்தனி சாளரங்களை சேமிக்கவும்
|
||||
Comment[te]=మీ యొక్క రంగస్థలం లేదా వ్యక్తిగత గవాక్షాల ప్రతిరూపాలను దాచుము
|
||||
Comment[th]=บันทึกภาพของเดสก์ท็อปหรือหน้าต่างที่กำหนด
|
||||
Comment[tr]=Masaüstünüze ya da ayrı ayrı pencerelerinize ait görüntüleri kaydet
|
||||
Comment[ug]=ئۈستەل ئۈستىڭىز ياكى يەككە كۆزنەكنى سۈرەتكە ساقلايدۇ
|
||||
Comment[uk]=Збереження зображень стільниці чи окремих вікон
|
||||
Comment[ur]=انفرادی دریچوں یا اپنے ڈیسک ٹاپ کی تصاویر محفوظ کریں
|
||||
Comment[vi]=Lưu ảnh của màn hình nền hay cửa sổ riêng
|
||||
Comment[zh_CN]=保存您桌面还是单个窗口的图像
|
||||
Comment[zh_HK]=將整個桌面或獨立的視窗儲存為圖片
|
||||
Comment[zh_TW]=將整個桌面或獨立的視窗儲存為圖片
|
||||
Exec=mate-screenshot --interactive
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Icon=applets-screenshooter
|
||||
StartupNotify=true
|
||||
Categories=GTK;Utility;
|
||||
Keywords=MATE;screenshot;snapshot;desktop;window;image;
|
||||
OnlyShowIn=MATE;
|
||||
X-MATE-Bugzilla-Bugzilla=MATE
|
||||
X-MATE-Bugzilla-Product=mate-utils
|
||||
X-MATE-Bugzilla-Component=screenshot
|
||||
X-MATE-Bugzilla-OtherBinaries=mate-panel-screenshot
|
24
home_org/thinclient/Schreibtisch/remmina.desktop
Executable file
24
home_org/thinclient/Schreibtisch/remmina.desktop
Executable file
@ -0,0 +1,24 @@
|
||||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Name=Remmina
|
||||
GenericName=Remote Desktop Client
|
||||
X-GNOME-FullName=Remmina Remote Desktop Client
|
||||
Comment=Connect to remote desktops
|
||||
TryExec=remmina
|
||||
Exec=remmina
|
||||
Icon=remmina
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=GTK;GNOME;X-GNOME-NetworkSettings;Network;
|
||||
Actions=Profile;Tray;
|
||||
Keywords=remote desktop;rdp;vnc;nx,ssh;VNC;XDMCP;RDP;
|
||||
X-Ubuntu-Gettext-Domain=remmina
|
||||
|
||||
[Desktop Action Profile]
|
||||
Name=Create a New Connection Profile
|
||||
Exec=remmina --new
|
||||
|
||||
[Desktop Action Tray]
|
||||
Name=Start Remmina Minimized
|
||||
Exec=remmina --icon
|
Reference in New Issue
Block a user