From 739b8d62c25b161c8d71ba84ee5ba72ae668d821 Mon Sep 17 00:00:00 2001 From: David Runge Date: Wed, 20 Nov 2013 15:16:28 +0100 Subject: Added desktop files, updated TODO --- .config/compton.conf | 91 +++++++++++ .config/user-dirs.dirs | 15 ++ .local/share/applications/chromium.desktop | 113 +++++++++++++ .local/share/applications/incognichrome.desktop | 9 ++ .local/share/applications/nautilus.desktop | 205 ++++++++++++++++++++++++ .local/share/applications/pd.desktop | 8 + .local/share/applications/securium.desktop | 9 ++ .local/share/applications/systemadm.desktop | 8 + .zsh.after/unixpool.sh | 23 ++- 9 files changed, 469 insertions(+), 12 deletions(-) create mode 100644 .config/compton.conf create mode 100644 .config/user-dirs.dirs create mode 100644 .local/share/applications/chromium.desktop create mode 100644 .local/share/applications/incognichrome.desktop create mode 100644 .local/share/applications/nautilus.desktop create mode 100644 .local/share/applications/pd.desktop create mode 100644 .local/share/applications/securium.desktop create mode 100644 .local/share/applications/systemadm.desktop diff --git a/.config/compton.conf b/.config/compton.conf new file mode 100644 index 0000000..dfc395e --- /dev/null +++ b/.config/compton.conf @@ -0,0 +1,91 @@ +# Shadow +shadow = true; # Enabled client-side shadows on windows. +no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows. +no-dnd-shadow = true; # Don't draw shadows on DND windows. +clear-shadow = true; # Zero the part of the shadow's mask behind the + # window. Fix some weirdness with ARGB windows. +shadow-radius = 7; # The blur radius for shadows. (default 12) +shadow-offset-x = -7; # The left offset for shadows. (default -15) +shadow-offset-y = -7; # The top offset for shadows. (default -15) +# shadow-opacity = 0.7; # The translucency for shadows. (default .75) +# shadow-red = 0.0; # Red color value of shadow. (0.0 - 1.0, defaults to 0) +# shadow-green = 0.0; # Green color value of shadow. (0.0 - 1.0, defaults to 0) +# shadow-blue = 0.0; # Blue color value of shadow. (0.0 - 1.0, defaults to 0) +shadow-exclude = [ "n:e:Notification" ]; # Exclude conditions for shadows. +# shadow-exclude = "n:e:Notification"; +shadow-ignore-shaped = true; # Avoid drawing shadow on all shaped windows + # (see also: --detect-rounded-corners) + +# Opacity +menu-opacity = 0.9; # The opacity for menus. (default 1.0) +inactive-opacity = 0.95; # Default opacity of inactive windows. (0.0 - 1.0) +# active-opacity = 0.8; # Default opacity for active windows. (0.0 - 1.0) +# frame-opacity = 0.8; # Opacity of window titlebars and borders. (0.1 - 1.0) +# inactive-opacity-override = true; # Let inactive opacity set by 'inactive-opacity' overrides + # value of _NET_WM_OPACITY. Bad choice. +alpha-step = 0.06; # XRender backend: Step size for alpha pictures. Increasing + # it may result in less X resource usage, + # Yet fading may look bad. +# inactive-dim = 0.2; # Dim inactive windows. (0.0 - 1.0) +# inactive-dim-fixed = true; # Do not let dimness adjust based on window opacity. +# blur-background = true; # Blur background of transparent windows. + # Bad performance with X Render backend. + # GLX backend is preferred. +# blur-background-frame = true; # Blur background of opaque windows with transparent + # frames as well. +blur-background-fixed = false; # Do not let blur radius adjust based on window opacity. +blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ]; + # Exclude conditions for background blur. + +# Fading +fading = true; # Fade windows during opacity changes. +# fade-delta = 30; # The time between steps in a fade in milliseconds. (default 10). +fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028). +fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03). +# no-fading-openclose = true; # Avoid fade windows in/out when opening/closing. +fade-exclude = [ ]; # Exclude conditions for fading. + +# Other +backend = "xrender" # Backend to use: "xrender" or "glx". GLX backend is typically + # much faster but depends on a sane driver. +mark-wmwin-focused = true; # Try to detect WM windows and mark them as active. +mark-ovredir-focused = true; # Mark all non-WM but override-redirect windows active (e.g. menus). +use-ewmh-active-win = false; # Use EWMH _NET_WM_ACTIVE_WINDOW to determine which window is focused + # instead of using FocusIn/Out events. Usually more reliable but + # depends on a EWMH-compliant WM. +detect-rounded-corners = true; # Detect rounded corners and treat them as rectangular when --shadow-ignore-shaped is on. +detect-client-opacity = true; # Detect _NET_WM_OPACITY on client windows, useful for window + # managers not passing _NET_WM_OPACITY of client windows to frame + # windows. +refresh-rate = 0; # For --sw-opti: Specify refresh rate of the screen. 0 for auto. +vsync = "none"; # "none", "drm", "opengl", "opengl-oml", "opengl-swc", "opengl-mswc" + # See man page for more details. +dbe = false; # Enable DBE painting mode. Rarely needed. +paint-on-overlay = false; # Painting on X Composite overlay window. Recommended. +sw-opti = false; # Limit compton to repaint at most once every 1 / refresh_rate. + # Incompatible with certain VSync methods. +unredir-if-possible = false; # Unredirect all windows if a full-screen opaque window is + # detected, to maximize performance for full-screen windows. +focus-exclude = [ ]; # A list of conditions of windows that should always be considered + # focused. +detect-transient = true; # Use WM_TRANSIENT_FOR to group windows, and consider windows in + # the same group focused at the same time. +detect-client-leader = true; # Use WM_CLIENT_LEADER to group windows. +invert-color-include = [ ]; # Conditions for windows to be painted with inverted color. + +# GLX backend # GLX backend fine-tune options. See man page for more info. +# glx-no-stencil = true; # Recommended. +glx-copy-from-front = false; # Useful with --glx-swap-method, +# glx-use-copysubbuffermesa = true; # Recommended if it works. Breaks VSync. +# glx-no-rebind-pixmap = true; # Recommended if it works. +glx-swap-method = "undefined"; # See man page. + +# Window type settings +wintypes: +{ + tooltip = { fade = true; shadow = false; opacity = 0.9; focus = true; }; + # fade: Fade the particular type of windows. + # shadow: Give those windows shadow + # opacity: Default opacity for the type of windows. + # focus: Whether to always consider windows of this type focused. +}; diff --git a/.config/user-dirs.dirs b/.config/user-dirs.dirs new file mode 100644 index 0000000..ee93c70 --- /dev/null +++ b/.config/user-dirs.dirs @@ -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/" +XDG_DOWNLOAD_DIR="$HOME/Downloads" +XDG_TEMPLATES_DIR="$HOME/" +XDG_PUBLICSHARE_DIR="$HOME/" +XDG_DOCUMENTS_DIR="$HOME/Documents" +XDG_MUSIC_DIR="$HOME/Music" +XDG_PICTURES_DIR="$HOME/Pictures" +XDG_VIDEOS_DIR="$HOME/Videos" diff --git a/.local/share/applications/chromium.desktop b/.local/share/applications/chromium.desktop new file mode 100644 index 0000000..630e627 --- /dev/null +++ b/.local/share/applications/chromium.desktop @@ -0,0 +1,113 @@ +[Desktop Entry] +Version=1.0 +Name=Chromium +# Only KDE 4 seems to use GenericName, so we reuse the KDE strings. +# From Ubuntu's language-pack-kde-XX-base packages, version 9.04-20090413. +GenericName=Web Browser +GenericName[ar]=متصفح الشبكة +GenericName[bg]=Уеб браузър +GenericName[ca]=Navegador web +GenericName[cs]=WWW prohlížeč +GenericName[da]=Browser +GenericName[de]=Web-Browser +GenericName[el]=Περιηγητής ιστού +GenericName[en_GB]=Web Browser +GenericName[es]=Navegador web +GenericName[et]=Veebibrauser +GenericName[fi]=WWW-selain +GenericName[fr]=Navigateur Web +GenericName[gu]=વેબ બ્રાઉઝર +GenericName[he]=דפדפן אינטרנט +GenericName[hi]=वेब ब्राउज़र +GenericName[hu]=Webböngésző +GenericName[it]=Browser Web +GenericName[ja]=ウェブブラウザ +GenericName[kn]=ಜಾಲ ವೀಕ್ಷಕ +GenericName[ko]=웹 브라우저 +GenericName[lt]=Žiniatinklio naršyklė +GenericName[lv]=Tīmekļa pārlūks +GenericName[ml]=വെബ് ബ്രൌസര്‍ +GenericName[mr]=वेब ब्राऊजर +GenericName[nb]=Nettleser +GenericName[nl]=Webbrowser +GenericName[pl]=Przeglądarka WWW +GenericName[pt]=Navegador Web +GenericName[pt_BR]=Navegador da Internet +GenericName[ro]=Navigator de Internet +GenericName[ru]=Веб-браузер +GenericName[sl]=Spletni brskalnik +GenericName[sv]=Webbläsare +GenericName[ta]=இணைய உலாவி +GenericName[th]=เว็บเบราว์เซอร์ +GenericName[tr]=Web Tarayıcı +GenericName[uk]=Навігатор Тенет +GenericName[zh_CN]=网页浏览器 +GenericName[zh_HK]=網頁瀏覽器 +GenericName[zh_TW]=網頁瀏覽器 +# Not translated in KDE, from Epiphany 2.26.1-0ubuntu1. +GenericName[bn]=ওয়েব ব্রাউজার +GenericName[fil]=Web Browser +GenericName[hr]=Web preglednik +GenericName[id]=Browser Web +GenericName[or]=ଓ୍ବେବ ବ୍ରାଉଜର +GenericName[sk]=WWW prehliadač +GenericName[sr]=Интернет прегледник +GenericName[te]=మహాతల అన్వేషి +GenericName[vi]=Bộ duyệt Web +# Gnome and KDE 3 uses Comment. +Comment=Access the Internet +Comment[ar]=الدخول إلى الإنترنت +Comment[bg]=Достъп до интернет +Comment[bn]=ইন্টারনেটটি অ্যাক্সেস করুন +Comment[ca]=Accedeix a Internet +Comment[cs]=Přístup k internetu +Comment[da]=Få adgang til internettet +Comment[de]=Internetzugriff +Comment[el]=Πρόσβαση στο Διαδίκτυο +Comment[en_GB]=Access the Internet +Comment[es]=Accede a Internet. +Comment[et]=Pääs Internetti +Comment[fi]=Käytä internetiä +Comment[fil]=I-access ang Internet +Comment[fr]=Accéder à Internet +Comment[gu]=ઇંટરનેટ ઍક્સેસ કરો +Comment[he]=גישה אל האינטרנט +Comment[hi]=इंटरनेट तक पहुंच स्थापित करें +Comment[hr]=Pristup Internetu +Comment[hu]=Internetelérés +Comment[id]=Akses Internet +Comment[it]=Accesso a Internet +Comment[ja]=インターネットにアクセス +Comment[kn]=ಇಂಟರ್ನೆಟ್ ಅನ್ನು ಪ್ರವೇಶಿಸಿ +Comment[ko]=인터넷 연결 +Comment[lt]=Interneto prieiga +Comment[lv]=Piekļūt internetam +Comment[ml]=ഇന്റര്‍‌നെറ്റ് ആക്‌സസ് ചെയ്യുക +Comment[mr]=इंटरनेटमध्ये प्रवेश करा +Comment[nb]=Gå til Internett +Comment[nl]=Verbinding maken met internet +Comment[or]=ଇଣ୍ଟର୍ନେଟ୍ ପ୍ରବେଶ କରନ୍ତୁ +Comment[pl]=Skorzystaj z internetu +Comment[pt]=Aceder à Internet +Comment[pt_BR]=Acessar a internet +Comment[ro]=Accesaţi Internetul +Comment[ru]=Доступ в Интернет +Comment[sk]=Prístup do siete Internet +Comment[sl]=Dostop do interneta +Comment[sr]=Приступите Интернету +Comment[sv]=Gå ut på Internet +Comment[ta]=இணையத்தை அணுகுதல் +Comment[te]=ఇంటర్నెట్‌ను ఆక్సెస్ చెయ్యండి +Comment[th]=เข้าถึงอินเทอร์เน็ต +Comment[tr]=İnternet'e erişin +Comment[uk]=Доступ до Інтернету +Comment[vi]=Truy cập Internet +Comment[zh_CN]=访问互联网 +Comment[zh_HK]=連線到網際網路 +Comment[zh_TW]=連線到網際網路 +Exec=chromium %U -disk-cache-dir=/tmp/dave-chromium-cache -disk-cache-size=55000000 +Terminal=false +Icon=chromium +Type=Application +Categories=GTK;Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; diff --git a/.local/share/applications/incognichrome.desktop b/.local/share/applications/incognichrome.desktop new file mode 100644 index 0000000..a8b4a09 --- /dev/null +++ b/.local/share/applications/incognichrome.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Exec=chromium -incognito +Name=Incognichrome +Icon=chromium +Categories=GTK;Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; diff --git a/.local/share/applications/nautilus.desktop b/.local/share/applications/nautilus.desktop new file mode 100644 index 0000000..3c8477d --- /dev/null +++ b/.local/share/applications/nautilus.desktop @@ -0,0 +1,205 @@ +[Desktop Entry] +Name=Files +Name[af]=Lêers +Name[an]=Fichers +Name[ar]=الملفات +Name[as]=ফাইলসমূহ +Name[ast]=Ficheros +Name[be]=Файлы +Name[bg]=Файлове +Name[bn]=ফাইল +Name[ca]=Fitxers +Name[ca@valencia]=Fitxers +Name[crh]=Dosyeler +Name[cs]=Soubory +Name[da]=Filer +Name[de]=Dateien +Name[el]=Αρχεία +Name[en_CA]=Files +Name[en_GB]=Files +Name[eo]=Dosieroj +Name[es]=Archivos +Name[et]=Failid +Name[eu]=Fitxategiak +Name[fa]=پرونده‌ها +Name[fi]=Tiedostot +Name[fr]=Fichiers +Name[ga]=Comhaid +Name[gl]=Ficheiros +Name[gu]=ફાઇલો +Name[he]=קבצים +Name[hi]=फ़ाइल +Name[hu]=Fájlok +Name[id]=Berkas +Name[it]=File +Name[ja]=ファイル +Name[kk]=Файлдар +Name[kn]=ಕಡತಗಳು +Name[ko]=파일 +Name[ky]=Файлдар +Name[lt]=Failai +Name[lv]=Datnes +Name[mk]=Датотеки +Name[ml]=ഫയലുകള്‍ +Name[mr]=फाइल्स् +Name[nb]=Filer +Name[nl]=Bestanden +Name[nn]=Filer +Name[or]=ଫାଇଲଗୁଡିକ +Name[pa]=ਫਾਇਲਾਂ +Name[pl]=Pliki +Name[pt]=Ficheiros +Name[pt_BR]=Arquivos +Name[ro]=Fișiere +Name[ru]=Nautilus +Name[sk]=Súbory +Name[sl]=Datoteke +Name[sr]=Датотеке +Name[sr@latin]=Datoteke +Name[sv]=Filer +Name[ta]=கோப்புகள் +Name[te]=దస్త్రాలు +Name[tg]=Файлҳо +Name[th]=แฟ้ม +Name[tr]=Dosyalar +Name[ug]=ھۆججەتلەر +Name[uk]=Файли +Name[vi]=Tập tin +Name[zh_CN]=文件 +Name[zh_HK]=檔案 +Name[zh_TW]=檔案 +Comment=Access and organize files +Comment[an]=Accedir a os fichers y organizar-los +Comment[ar]=نظم الملفات وصِل إليها +Comment[as]=অভিগম কৰক আৰু ফাইলসমূহ আয়োজিত কৰক +Comment[ast]=Acceder a los ficheros y organizalos +Comment[be]=Доступ і кіраванне файламі +Comment[bg]=Достъп и управление на файлове +Comment[bn]=ফাইলে ব্যবাহর এবং সাজানো +Comment[ca]=Organitzeu i accediu a fitxers +Comment[ca@valencia]=Organitzeu i accediu a fitxers +Comment[crh]=Dosyelerge iriş ve olarnı tertiple +Comment[cs]=Přístup k souborům a jejich správa +Comment[da]=Tilgå og organisér filer +Comment[de]=Auf Dateien zugreifen und diese organisieren +Comment[el]=Προσπέλαση και οργάνωση αρχείων +Comment[en_CA]=Access and organize files +Comment[en_GB]=Access and organise files +Comment[eo]=Atingi kaj organizi dosierojn +Comment[es]=Acceder a los archivos y organizarlos +Comment[et]=Ligipääs failidele ning failipuu korrastamine +Comment[eu]=Atzitu eta antolatu fitxategiak +Comment[fa]=دسترسی و سازماندهی پرونده‌ها +Comment[fi]=Käsittele ja järjestä tiedostoja +Comment[fr]=Accéder aux fichiers et les organiser +Comment[ga]=Déan rochtain ar chomhaid agus eagraigh iad +Comment[gl]=Acceda e organice ficheiros +Comment[gu]=ફાઇલોને વાપરો અને સંચાલિત કરો +Comment[he]=גישה לקבצים וארגונם +Comment[hi]=फ़ाइलों को व्यवस्थित और पहुँच प्राप्त करें +Comment[hu]=Fájlok elérése és rendszerezése +Comment[id]=Mengakses dan mengelola berkas +Comment[it]=Accede ai file e li organizza +Comment[ja]=ファイルの操作や整理をします +Comment[kk]=Файлдарға қатынау және реттеу +Comment[kn]=ಕಡತಗಳನ್ನು ನಿಲುಕಿಸಿಕೊಳ್ಳಿ ಹಾಗು ವ್ಯವಸ್ಥಿತವಾಗಿ ಜೋಡಿಸಿ +Comment[ko]=파일 조작 및 정리 +Comment[lt]=Atverti ir tvarkyti failus +Comment[lv]=Piekļūt un organizēt datnes +Comment[mk]=Пристапувајте и организирајте датотеки +Comment[ml]=ഫയലുകള്‍ ലഭ്യമാക്കി ക്രമത്തിലാക്കുക +Comment[mr]=फाइल्स्ला प्रवेश द्वया व संघटित करा +Comment[nb]=Aksesser og organiser filer +Comment[nl]=Bestanden gebruiken en organiseren +Comment[nn]=Aksesser og organiser filer +Comment[or]=ଫାଇଲମାନଙ୍କୁ ଅଭିଗମ କରନ୍ତୁ ଏବଂ ସଙ୍ଗଠନ କରନ୍ତୁ +Comment[pa]=ਫਾਇਲਾਂ ਦੀ ਵਰਤੋਂ ਤੇ ਪਰਬੰਧ +Comment[pl]=Organizowanie plików +Comment[pt]=Aceder e organizar ficheiros +Comment[pt_BR]=Acesse e organize arquivos +Comment[ro]=Accesați și organizați fișiere +Comment[ru]=Управление файлами +Comment[sk]=Prístupuje k súborom a organizuje ich +Comment[sl]=Dostop in razvrščanje datotek +Comment[sr]=Приступите датотекама и организујте их +Comment[sr@latin]=Pristupite datotekama i organizujte ih +Comment[sv]=Kom åt och organisera filer +Comment[ta]=கோப்புகளை அணுகு மற்றும் ஒழுங்கு படுத்து +Comment[te]=దస్త్రాలను నిర్వహించండి మరియు ప్రాప్తించండి +Comment[tg]=Кушодан ва мураттабсозии файлҳо +Comment[th]=เข้าถึงและจัดระเบียบแฟ้ม +Comment[tr]=Dosyalara erişin ve düzenleyin +Comment[ug]=ھۆججەتلەرنى تەشكىللەش ۋە زىيارەت +Comment[uk]=Доступ до файлів +Comment[vi]=Truy cập và tổ chức tập tin +Comment[zh_CN]=访问和组织文件 +Comment[zh_HK]=存取與組織檔案 +Comment[zh_TW]=存取與組織檔案 +Keywords=folder;manager;explore;disk;filesystem; +Keywords[af]=folder;manager;explore;disk;filesystem;gids;bestuurder;ontdek;skyf;lêerstelsel;leer; +Keywords[ar]=مجلد;مدير;ملفات;قرص;تصفح; +Keywords[as]=ফোল্ডাৰ;ব্যৱস্থাপক;অন্বেষণ;ডিস্ক;ফাইলচিস্টেম; +Keywords[be]=папка;кіраўнік;прагляд;дыск;файлавая сістэма; +Keywords[ca]=carpeta;gestor;explora;disc;sistema de fitxers; +Keywords[ca@valencia]=carpeta;gestor;explora;disc;sistema de fitxers; +Keywords[crh]=cilbent;idareci;araştır;disk;dosyesistemi; +Keywords[cs]=složka;správce;správa;prohlížení;procházení;disk;souborový systém;systém souborů; +Keywords[da]=mappe;håndtering;udforsk;gennemse;disk;filsystem; +Keywords[de]=Ordner;Verwaltung;Laufwerk;Festplatte;Dateisystem;Dateien; +Keywords[el]=φάκελος;διαχειριστής;εξερεύνηση;δίσκος;σύστημα αρχείων; +Keywords[en_GB]=folder;manager;explore;disk;filesystem; +Keywords[eo]=dosierujo;administrilo;foliumi;esplori;disko;dosiersistemo; +Keywords[es]=carpeta;gestor;explorar;disco;sistema de archivos; +Keywords[et]=kaust;kataloog;haldur;haldus;sirvija;sirvimine;ketas;kõvaketas;failisüsteem; +Keywords[eu]=karpeta;kudeatzailea;arakatu;diskoa;fitxategi-sistema; +Keywords[fa]=پوشه;مدیر;پویش;دیسک;سیستم‌پرونده;folder;manager;explore;disk;filesystem; +Keywords[fi]=folder;manager;explore;disk;filesystem;kansio;tiedostoselain;levy;tiedostojärjestelmä; +Keywords[fr]=dossier;gestionnaire;explorer;disque;système de fichiers; +Keywords[gl]=cartafol;xestor;explorar;disco;sistema de ficheiros; +Keywords[gu]=ફોલ્ડર;સંચાલક;સંશોધન;ડિસ્ક;ફાઇલસિસ્ટમ; +Keywords[he]=תיקייה;מנהל;עיון;סיור;כונן;מערכת קבצים; +Keywords[hi]=folder;manager;explore;disk;filesystem; +Keywords[hu]=mappa;könyvtár;kezelés;kezelő;intéző;lemez;fájlrendszer;commander; +Keywords[id]=folder;manager;explore;disk;filesystem;pengelola;peramban;sistem;berkas; +Keywords[it]=cartella;gestore;esplora;disco;file;file system; +Keywords[ja]=folder;manager;explore;disk;filesystem;フォルダー;マネージャー;エクスプローラー;ディスク;ファイルシステム; +Keywords[kk]=бума;басқарушы;шолу;диск;файлдық жүйе; +Keywords[kn]=ಕಡತಕೋಶ;ವ್ಯವಸ್ಥಾಪಕ;ಹುಡುಕು;ಡಿಸ್ಕ್‍;ಕಡತವ್ಯವಸ್ಥೆ; +Keywords[ko]=folder;폴더;manager;관리;explore;찾아보기;disk;디스크;filesystem;파일;시스템; +Keywords[lt]=aplankas;naršyklė;naršyti;diskas;failų sistema; +Keywords[lv]=mape;pārvaldnieks;pārlūkot;disks;datņu sistēma;datne; +Keywords[ml]=folder;manager;explore;disk;filesystem; +Keywords[mr]=फोल्डर;मॅनेजर;एक्सप्लोर;डिस्क;फाइलसिस्टम; +Keywords[nb]=mappe;håndterer;utforsk;disk;filsystem; +Keywords[nl]=folder;manager;explore;disk;filesystem;map;beheer;verkenner;schijf;bestandssysteem; +Keywords[or]=ଫୋଲଡର;ପରିଚାଳକ;ଅନ୍ୱେଷଣ;ଡିସ୍କ;ଫାଇଲତନ୍ତ୍ର; +Keywords[pa]=ਫੋਲਡਰ;ਮੈਨੇਜਰ;explore;ਡਿਸਕ;ਫਾਇਲ-ਸਿਸਟਮ; +Keywords[pl]=katalog;folder;menedżer;menadżer;manadżer;manedżer;manager;eksploruj;dysk;system plików; +Keywords[pt]=pasta;gestor;explorar;disco;sistema;ficheiros; +Keywords[pt_BR]=pasta;gerenciador;explorar;disco;sistema de arquivos; +Keywords[ru]=папка;менеджер;обзор;диск;файловая система; +Keywords[sk]=priečinok;správca;prehliadať;disk;systém súborov; +Keywords[sl]=mapa;upravljalnik;datoteke;raziskovalec;datotečni sistem;disk +Keywords[sr]=фасцикла;датотека;управник;истражи;диск;систем датотека; +Keywords[sr@latin]=fascikla;datoteka;upravnik;istraži;disk;sistem datoteka; +Keywords[ta]=அடைவு;மேலாளர்;ஆராய்வு;வட்டு;கோப்புமுறைமை; +Keywords[te]=సంచయం;నిర్వాహకం;అన్వేషించండి;డిస్కు;దస్త్రవ్యవస్థ; +Keywords[tg]=ҷузвдон;мудир;тамошо;диск;системаи файлӣ; +Keywords[ug]=folder;manager;explore;disk;filesystem;قىسقۇچ;باشقۇرغۇ;دىسكا;ھۆججەت سىستېمىسى; +Keywords[uk]=тека;менеджер;папка;диск;файл; +Keywords[vi]=folder;thư;mục;thu;muc;;manager;quản;lý;quan;lý;;explore;khám;phá;kham;pha;;disk;đĩa;dia;;filesystem;hệ;thống;tập;tin;he;thong;tap;tin; +Keywords[zh_CN]=目录;文件夹;管理;浏览;磁盘;硬盘;文件系统;folder;manager;explore;disk;filesystem; +Keywords[zh_HK]=folder;manager;explore;disk;filesystem;資料夾;管理程式;磁碟;檔案系統; +Keywords[zh_TW]=folder;manager;explore;disk;filesystem;資料夾;管理程式;磁碟;檔案系統; +Exec=nautilus --new-window %U +Icon=system-file-manager +Terminal=false +Type=Application +StartupNotify=true +Categories=GNOME;GTK;Utility;Core;FileManager; +MimeType=inode/directory;application/x-gnome-saved-search; +X-GNOME-Bugzilla-Bugzilla=GNOME +X-GNOME-Bugzilla-Product=nautilus +X-GNOME-Bugzilla-Component=general +X-GNOME-Bugzilla-Version=3.10.1 +X-GNOME-UsesNotifications=true diff --git a/.local/share/applications/pd.desktop b/.local/share/applications/pd.desktop new file mode 100644 index 0000000..d58314e --- /dev/null +++ b/.local/share/applications/pd.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Exec=pd +Name=PureData +Icon=pd-extended +Categories=Audio;AudioVideo;Midi;X-Alsa;X-Jack;GTK; diff --git a/.local/share/applications/securium.desktop b/.local/share/applications/securium.desktop new file mode 100644 index 0000000..47c2625 --- /dev/null +++ b/.local/share/applications/securium.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Exec=securium +Name=Securium +Icon=chromium +Categories=GTK;Network;WebBrowser; +MimeType=text/html;text/xml;application/xhtml+xml;text/mml;x-scheme-handler/http;x-scheme-handler/https; diff --git a/.local/share/applications/systemadm.desktop b/.local/share/applications/systemadm.desktop new file mode 100644 index 0000000..a724455 --- /dev/null +++ b/.local/share/applications/systemadm.desktop @@ -0,0 +1,8 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Exec=systemadm +Name=SystemAdm +Icon=system +Categories=System;GTK; diff --git a/.zsh.after/unixpool.sh b/.zsh.after/unixpool.sh index 0a171bd..ca46eeb 100644 --- a/.zsh.after/unixpool.sh +++ b/.zsh.after/unixpool.sh @@ -2,6 +2,15 @@ # unixpool #HISTFILE=$HOME/.zhistory +PATH=${PATH}:/net/local64/bin +PATH=${PATH}:/net/adm/bin +PATH=${PATH}:/net/adm/scripts +PATH=${PATH}:/net/adm/xadm +PATH=${PATH}:/homes/wheel/wheel/bin + +#PATH=/store/s4/android/android-sdk-linux_86/tools:$PATH +#PATH=/store/s4/android/android-sdk-linux_86/platform-tools:$PATH +#TODO: add pacman to apt-get conversion for all pacman aliases # set pulseaudio server to s4 if [ -f "`which pax11publish`" ]; @@ -18,7 +27,7 @@ then fi fi -#export MATLAB_JAVA=/usr/lib/jvm/java-6-sun-1.6.0.16/jre +export MATLAB_JAVA=/usr/lib/jvm/java-6-sun-1.6.0.16/jre alias synergys='synergys -c .synergy-$HOST.conf' @@ -36,16 +45,6 @@ function music_update() { echo "done" } -PATH=${PATH}:/net/local64/bin -PATH=${PATH}:/net/adm/bin -PATH=${PATH}:/net/adm/scripts -PATH=${PATH}:/net/adm/xadm - -PATH=${PATH}:/homes/wheel/wheel/bin - -#PATH=/store/s4/android/android-sdk-linux_86/tools:$PATH -#PATH=/store/s4/android/android-sdk-linux_86/platform-tools:$PATH - function makantine() { wget http://personalkantine.personalabteilung.tu-berlin.de/pdf/MA-aktuell.pdf -O /tmp/makantine.$$.pdf >&/dev/null xpdf -cont -z page /tmp/makantine.$$.pdf @@ -113,4 +112,4 @@ alias QW='xterm -geometry 84x41-0+0 -T '\''QWatch'\'' -fn 5x8 -e /homes/misc/lpv alias QWbig='xterm -geometry 84x41-0+0 -T '\''QWatch'\'' -e /homes/misc/lpviewer/lpdisp' alias QWbighere='/homes/misc/lpviewer/lpdisp' alias QWdisplay="watch 'for n in {1..3}; do scli -c \"show printer display\" ps\$n-pool; done'" - +alias pyadm="/net/adm/pyadm-64ready/start.py" -- cgit v1.2.3-70-g09d2