45 changed files with 5836 additions and 244 deletions
@ -0,0 +1,576 @@ |
|||||||
|
# Midnight Commander 3.0 extension file |
||||||
|
# Warning: Structure of this file has changed completely with version 3.0 |
||||||
|
# |
||||||
|
# All lines starting with # or empty lines are thrown away. |
||||||
|
# Lines starting in the first column should have following format: |
||||||
|
# |
||||||
|
# keyword/descNL, i.e. everything after keyword/ until new line is desc |
||||||
|
# |
||||||
|
# keyword can be: |
||||||
|
# |
||||||
|
# shell (desc is, when starting with a dot, any extension (no wildcars), |
||||||
|
# i.e. matches all the files *desc . Example: .tar matches *.tar; |
||||||
|
# if it doesn't start with a dot, it matches only a file of that name) |
||||||
|
# |
||||||
|
# regex (desc is an extended regular expression) |
||||||
|
# Please note that we are using the GNU regex library and thus |
||||||
|
# \| matches the literal | and | has special meaning (or) and |
||||||
|
# () have special meaning and \( \) stand for literal ( ). |
||||||
|
# |
||||||
|
# type (file matches this if `file %f` matches regular expression desc |
||||||
|
# (the filename: part from `file %f` is removed)) |
||||||
|
# |
||||||
|
# directory (matches any directory matching regular expression desc) |
||||||
|
# |
||||||
|
# include (matches an include directive) |
||||||
|
# |
||||||
|
# default (matches any file no matter what desc is) |
||||||
|
# |
||||||
|
# Other lines should start with a space or tab and should be in the format: |
||||||
|
# |
||||||
|
# keyword=commandNL (with no spaces around =), where keyword should be: |
||||||
|
# |
||||||
|
# Open (if the user presses Enter or doubleclicks it), |
||||||
|
# |
||||||
|
# View (F3), Edit (F4) |
||||||
|
# |
||||||
|
# Include is the keyword used to add any further entries from an include/ |
||||||
|
# section |
||||||
|
# |
||||||
|
# command is any one-line shell command, with the following substitutions: |
||||||
|
# |
||||||
|
# %% -> % character |
||||||
|
# %p -> name of the current file (without path, but pwd is its path) |
||||||
|
# %f -> name of the current file. Unlike %p, if file is located on a |
||||||
|
# non-local virtual filesystem, i.e. either tarfs, mcfs or ftpfs, |
||||||
|
# then the file will be temporarily copied into a local directory |
||||||
|
# and %f will be the full path to this local temporal file. |
||||||
|
# If you don't want to get a local copy and want to get the |
||||||
|
# virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then |
||||||
|
# use %d/%p instead of %f. |
||||||
|
# %d -> name of the current directory (pwd, without trailing slash) |
||||||
|
# %s -> "selected files", i.e. space separated list of tagged files if any |
||||||
|
# or name of the current file |
||||||
|
# %t -> list of tagged files |
||||||
|
# %u -> list of tagged files (they'll be untaged after the command) |
||||||
|
# |
||||||
|
# (If these 6 letters are in uppercase, they refer to the other panel. |
||||||
|
# But you shouldn't have to use it in this file.) |
||||||
|
# |
||||||
|
# |
||||||
|
# %cd -> the rest is a path mc should change into (cd won't work, since it's |
||||||
|
# a child process). %cd handles even vfs names. |
||||||
|
# |
||||||
|
# %view -> the command you type will be piped into mc's internal file viewer |
||||||
|
# if you type only the %view and no command, viewer will load %f file |
||||||
|
# instead (i.e. no piping, so it is different to %view cat %f) |
||||||
|
# %view may be directly followed by {} with a list of any of |
||||||
|
# ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for |
||||||
|
# text using backspace for bold and underscore) and unform |
||||||
|
# (no highlighting for nroff sequences) separated by commas. |
||||||
|
# |
||||||
|
# %var -> You use it like this: %var{VAR:default}. This macro will expand |
||||||
|
# to the value of the VAR variable in the environment if it's set |
||||||
|
# otherwise the value in default will be used. This is similar to |
||||||
|
# the Bourne shell ${VAR-default} construct. |
||||||
|
# |
||||||
|
# Rules are applied from top to bottom, thus the order is important. |
||||||
|
# If some actions are missing, search continues as if this target didn't |
||||||
|
# match (i.e. if a file matches the first and second entry and View action |
||||||
|
# is missing in the first one, then on pressing F3 the View action from |
||||||
|
# the second entry will be used. default should catch all the actions. |
||||||
|
# |
||||||
|
# Any new entries you develop for you are always welcome if they are |
||||||
|
# useful on more than one system. You can send your modifications |
||||||
|
# by e-mail to mc-devel@gnome.org |
||||||
|
|
||||||
|
|
||||||
|
### Changes ### |
||||||
|
# |
||||||
|
# Reorganization: 2000-05-01 Michal Svec <rebel@penguin.cz> |
||||||
|
|
||||||
|
|
||||||
|
### TODO ### |
||||||
|
# |
||||||
|
# Postscript Open: ps2svga [gs -DEVICE=jpeg|zgv or something] |
||||||
|
# Images asciiview |
||||||
|
# |
||||||
|
# All X Apps [Nothing/Warning] if no DISPLAY |
||||||
|
# Not found [Default/Warning] |
||||||
|
# Empty Output [Default/Warning] |
||||||
|
# Edit: CopyOut+EDIT+CopyIn |
||||||
|
# Security Check gzip/bzip EDIT (mktemp) |
||||||
|
# |
||||||
|
# Maybe: Open/XOpen/GOpen/KOpen/... for Console/X/GNOME/KDE/etc. |
||||||
|
|
||||||
|
|
||||||
|
### Archives ### |
||||||
|
|
||||||
|
# .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk |
||||||
|
regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk$ |
||||||
|
Open=%cd %p#utar |
||||||
|
View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf - |
||||||
|
|
||||||
|
regex/\.tar\.bz$ |
||||||
|
# Open=%cd %p#utar |
||||||
|
View=%view{ascii} bzip -dc %f 2>/dev/null | tar tvvf - |
||||||
|
|
||||||
|
regex/\.t(ar\.bz2|bz|b2|bz2)$ |
||||||
|
Open=%cd %p#utar |
||||||
|
View=%view{ascii} bzip2 -dc %f 2>/dev/null | tar tvvf - |
||||||
|
|
||||||
|
# .tar.lzma, .tlz |
||||||
|
regex/\.t(ar\.lzma|lz)$ |
||||||
|
Open=%cd %p#utar |
||||||
|
View=%view{ascii} lzma -dc %f 2>/dev/null | tar tvvf - |
||||||
|
|
||||||
|
# .tar.F - used in QNX |
||||||
|
regex/\.tar\.F$ |
||||||
|
# Open=%cd %p#utar |
||||||
|
View=%view{ascii} freeze -dc %f 2>/dev/null | tar tvvf - |
||||||
|
|
||||||
|
# .qpr/.qpk - QNX Neutrino package installer files |
||||||
|
regex/\.(qp[rk])$ |
||||||
|
Open=%cd %p#utar |
||||||
|
View=%view{ascii} gzip -dc %f 2>/dev/null | tar tvvf - |
||||||
|
|
||||||
|
# tar |
||||||
|
regex/\.(tar|TAR)$ |
||||||
|
Open=%cd %p#utar |
||||||
|
View=%view{ascii} tar tvvf %f |
||||||
|
|
||||||
|
# lha |
||||||
|
type/^LHa\ .*archive |
||||||
|
Open=%cd %p#ulha |
||||||
|
View=%view{ascii} lha l %f |
||||||
|
|
||||||
|
# arj |
||||||
|
regex/\.a(rj|[0-9][0-9])$ |
||||||
|
Open=%cd %p#uarj |
||||||
|
View=%view{ascii} unarj l %f |
||||||
|
|
||||||
|
# ha |
||||||
|
regex/\.([Hh][Aa])$ |
||||||
|
Open=%cd %p#uha |
||||||
|
View=%view{ascii} ha lf %f |
||||||
|
|
||||||
|
# rar |
||||||
|
regex/\.[rR]([aA][rR]|[0-9][0-9])$ |
||||||
|
Open=%cd %p#urar |
||||||
|
View=%view{ascii} rar v -c- %f |
||||||
|
|
||||||
|
# ALZip |
||||||
|
regex/\.(alz|ALZ)$ |
||||||
|
Open=%cd %p#ualz |
||||||
|
View=%view{ascii} unalz -l %f |
||||||
|
|
||||||
|
# cpio |
||||||
|
shell/.cpio.Z |
||||||
|
Open=%cd %p#ucpio |
||||||
|
View=%view{ascii} gzip -dc '%f' | cpio -itv 2>/dev/null |
||||||
|
|
||||||
|
shell/.cpio.gz |
||||||
|
Open=%cd %p#ucpio |
||||||
|
View=%view{ascii} gzip -dc '%f' | cpio -itv 2>/dev/null |
||||||
|
|
||||||
|
shell/.cpio |
||||||
|
Open=%cd %p#ucpio |
||||||
|
View=%view{ascii} cpio -itv <'%f' 2>/dev/null |
||||||
|
|
||||||
|
# ls-lR |
||||||
|
regex/(^|\.)ls-?lR(\.(bz2|gz|Z))?$ |
||||||
|
Open=%cd %p#lslR |
||||||
|
|
||||||
|
# patch |
||||||
|
regex/\.(diff|patch)(\.(bz2|gz|Z))?$ |
||||||
|
Open=%cd %p#patchfs |
||||||
|
|
||||||
|
# ar library |
||||||
|
regex/\.s?a$ |
||||||
|
Open=%cd %p#uar |
||||||
|
#Open=%view{ascii} ar tv %f |
||||||
|
View=%view{ascii} file %f && nm %f |
||||||
|
|
||||||
|
# trpm |
||||||
|
regex/\.trpm$ |
||||||
|
Open=%cd %p#trpm |
||||||
|
View=%view{ascii} rpm -qivl --scripts `basename %p .trpm` |
||||||
|
|
||||||
|
# RPM packages (SuSE uses *.spm for source packages) |
||||||
|
regex/\.(rpm|spm)$ |
||||||
|
Open=%cd %p#rpm |
||||||
|
View=%view{ascii} if rpm --nosignature --version >/dev/null 2>&1; then RPM="rpm --nosignature" ; else RPM="rpm" ; fi ; $RPM -qivlp --scripts %f |
||||||
|
|
||||||
|
# deb |
||||||
|
regex/\.u?deb$ |
||||||
|
Open=%cd %p#deb |
||||||
|
View=%view{ascii} dpkg-deb -I %f && echo && dpkg-deb -c %f |
||||||
|
|
||||||
|
# ISO9660 |
||||||
|
regex/\.iso$ |
||||||
|
Open=%cd %p#iso9660 |
||||||
|
View=%view{ascii} isoinfo -l -i %f |
||||||
|
|
||||||
|
# 7zip archives (they are not man pages) |
||||||
|
shell/.7z |
||||||
|
Open=%cd %p#u7z |
||||||
|
View=%view{ascii} 7za l %f 2>/dev/null |
||||||
|
|
||||||
|
# Mailboxes |
||||||
|
type/^ASCII\ mail\ text |
||||||
|
Open=%cd %p#mailfs |
||||||
|
|
||||||
|
|
||||||
|
### Sources ### |
||||||
|
|
||||||
|
# C |
||||||
|
shell/.c |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
# Fortran |
||||||
|
shell/.f |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
# Header |
||||||
|
regex/\.(h|hpp)$ |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
# Object |
||||||
|
type/^ELF |
||||||
|
#Open=%var{PAGER:more} %f |
||||||
|
View=%view{ascii} file %f && nm %f |
||||||
|
|
||||||
|
# Asm |
||||||
|
shell/.s |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
# C++ |
||||||
|
regex/\.(C|cc|cpp)$ |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
|
||||||
|
### Documentation ### |
||||||
|
|
||||||
|
# Texinfo |
||||||
|
regex/\.(te?xi|texinfo)$ |
||||||
|
|
||||||
|
# GNU Info page |
||||||
|
type/^Info\ text |
||||||
|
Open=info -f %f |
||||||
|
|
||||||
|
shell/.info |
||||||
|
Open=info -f %f |
||||||
|
|
||||||
|
# Manual page |
||||||
|
# Exception - .so libraries are not manual pages |
||||||
|
regex/\.(so|so\.[0-9\.]*)$ |
||||||
|
View=%view{ascii} file %f && nm %f |
||||||
|
|
||||||
|
regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$ |
||||||
|
Open=case %d/%f in */log/*|*/logs/*) cat %f ;; *) nroff -c -Tlatin1 -mandoc %f ;; esac | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) cat %f ;; *) nroff -c -Tlatin1 -mandoc %f ;; esac |
||||||
|
|
||||||
|
# Perl pod page |
||||||
|
shell/.pod |
||||||
|
Open=pod2man %f | nroff -c -Tlatin1 -mandoc | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} pod2man %f | nroff -c -Tlatin1 -mandoc |
||||||
|
|
||||||
|
# Troff with me macros. |
||||||
|
# Exception - "read.me" is not a nroff file. |
||||||
|
shell/read.me |
||||||
|
Open= |
||||||
|
View= |
||||||
|
|
||||||
|
shell/.me |
||||||
|
Open=nroff -c -Tlatin1 -me %f | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} nroff -c -Tlatin1 -me %f |
||||||
|
|
||||||
|
# Troff with ms macros. |
||||||
|
shell/.ms |
||||||
|
Open=nroff -c -Tlatin1 -ms %f | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} nroff -c -Tlatin1 -ms %f |
||||||
|
|
||||||
|
# Manual page - compressed |
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$ |
||||||
|
Open=case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) gzip -dc %f ;; *) gzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$ |
||||||
|
Open=case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip -dc %f ;; *) bzip -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$ |
||||||
|
Open=case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) bzip2 -dc %f ;; *) bzip2 -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$ |
||||||
|
Open=case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac | %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} case %d/%f in */log/*|*/logs/*) lzma -dc %f ;; *) lzma -dc %f | nroff -c -Tlatin1 -mandoc ;; esac |
||||||
|
|
||||||
|
|
||||||
|
### Images ### |
||||||
|
|
||||||
|
type/^GIF |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^JPEG |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PC\ bitmap |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PNG |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^TIFF |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PBM |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PGM |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PPM |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^Netpbm |
||||||
|
Include=image |
||||||
|
|
||||||
|
shell/.xcf |
||||||
|
Open=(gimp %f &) |
||||||
|
|
||||||
|
shell/.xbm |
||||||
|
Open=bitmap %f |
||||||
|
|
||||||
|
shell/.xpm |
||||||
|
Include=image |
||||||
|
View=sxpm %f |
||||||
|
|
||||||
|
include/image |
||||||
|
Open=if [ "$DISPLAY" = "" ]; then asciiview %f; else (display %f >/dev/null 2>&1 &); fi |
||||||
|
View=%view{ascii} identify %f |
||||||
|
#View=%view{ascii} asciiview %f |
||||||
|
|
||||||
|
|
||||||
|
### Sound files ### |
||||||
|
|
||||||
|
regex/\.([wW][aA][vV]|[sS][nN][dD]|[vV][oO][cC]|[aA][uU]|[sS][mM][pP]|[aA][iI][fF][fF]|[sS][nN][dD])$ |
||||||
|
Open=if [ "$DISPLAY" = "" ]; then play %f; else (xmms %f >/dev/null 2>&1 &); fi |
||||||
|
|
||||||
|
regex/\.([mM][oO][dD]|[sS]3[mM]|[xX][mM]|[iI][tT]|[mM][tT][mM]|669|[sS][tT][mM]|[uU][lL][tT]|[fF][aA][rR])$ |
||||||
|
Open=mikmod %f |
||||||
|
#Open=tracker %f |
||||||
|
|
||||||
|
regex/\.([wW][aA][wW]22)$ |
||||||
|
Open=vplay -s 22 %f |
||||||
|
|
||||||
|
regex/\.([mM][pP]3)$ |
||||||
|
Open=if [ "$DISPLAY" = "" ]; then mpg123 %f; else if [ -z "`which realplay`" ]; then (xmms -e %f 1>/dev/null 2>&1 &); else (realplay %f >/dev/null 2>&1 &); fi; fi |
||||||
|
View=%view{ascii} mpg123 -vtn1 %f 2>&1 | sed -n '/^Title/,/^Comment/p;/^MPEG/,/^Audio/p' |
||||||
|
|
||||||
|
regex/\.([oO][gG][gG])$ |
||||||
|
Open=if [ "$DISPLAY" = "" ]; then ogg123 %f; else (xmms -e %f >/dev/null 2>&1 &); fi |
||||||
|
View=%view{ascii} ogginfo %s |
||||||
|
|
||||||
|
regex/\.([mM][iI][dD][iI]?|[rR][mM][iI][dD]?)$ |
||||||
|
Open=timidity %f |
||||||
|
|
||||||
|
regex/\.([wW][mM][aA])$ |
||||||
|
Open=mplayer -vo null %f |
||||||
|
View=%view{ascii} mplayer -quiet -slave -frames 0 -vo null -ao null -identify %f 2>/dev/null | tail +13 || file %f |
||||||
|
|
||||||
|
|
||||||
|
### Play lists ### |
||||||
|
|
||||||
|
regex/\.([mM]3[uU]|[pP][lL][sS])$ |
||||||
|
Open=if [ -z "$DISPLAY" ]; then mplayer -vo null -playlist %f; else (xmms -p %f >/dev/null 2>&1 &); fi |
||||||
|
|
||||||
|
|
||||||
|
### Video ### |
||||||
|
|
||||||
|
regex/\.([aA][vV][iI])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([aA][sS][fFxX])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([dD][iI][vV][xX])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([mM][oO][vV]|[qQ][tT])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([mM][pP]4|[mM][pP][eE]?[gG])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([vV][oO][bB])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([wW][mM][vV])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([oO][gG][mM])$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/\.([rR][aA]?[mM])$ |
||||||
|
Open=(realplay %f >/dev/null 2>&1 &) |
||||||
|
|
||||||
|
regex/\.flv |
||||||
|
Open=(mplayer %f >/dev/null 2>&1 &) |
||||||
|
|
||||||
|
include/video |
||||||
|
Open=(mplayer %f >/dev/null 2>&1 &) |
||||||
|
#Open=(gtv %f >/dev/null 2>&1 &) |
||||||
|
#Open=(xanim %f >/dev/null 2>&1 &) |
||||||
|
|
||||||
|
|
||||||
|
### Documents ### |
||||||
|
|
||||||
|
# Postscript |
||||||
|
type/^PostScript |
||||||
|
Open=(gv %f >/dev/null 2>&1 &) |
||||||
|
View=%view{ascii} ps2ascii %f |
||||||
|
|
||||||
|
|
||||||
|
# PDF |
||||||
|
type/^PDF |
||||||
|
Open=(zathura %f >/dev/null 2>&1 &) |
||||||
|
#Open=(acroread %f &) |
||||||
|
#Open=(ghostview %f &) |
||||||
|
View=%view{ascii} pdftotext %f - |
||||||
|
|
||||||
|
# The following code very ugly and should not be taken as example. |
||||||
|
# It should be cleaned up when the new format of mc.ext is developed. |
||||||
|
|
||||||
|
# html |
||||||
|
regex/\.([hH][tT][mM][lL]?)$ |
||||||
|
Open=(if test -n "konqueror" && test -n "$DISPLAY"; then (konqueror file://%d/%p &) 1>&2; else links %f || lynx -force_html %f || ${PAGER:-more} %f; fi) 2>/dev/null |
||||||
|
View=%view{ascii} lynx -dump -force_html %f |
||||||
|
|
||||||
|
# StarOffice 5.2 |
||||||
|
shell/.sdw |
||||||
|
Open=(ooffice %f >/dev/null 2>&1 &) |
||||||
|
|
||||||
|
# StarOffice 6 and OpenOffice.org formats |
||||||
|
regex/\.(odb|odc|odf|odg|odi|odm|odp|ods|odt|otg|oth|otp|ots|ott|sda|sdc|sdd|sdp|sds|sdw|sgl|smf|stc|std|sti|stw|sxc|sxd|sxg|sxi|sxm|sxw|vor)$ |
||||||
|
Open=(ooffice %f >/dev/null 2>&1 &) |
||||||
|
View=%view{ascii} unzip -p %f content.xml | o3totxt |
||||||
|
|
||||||
|
# AbiWord |
||||||
|
shell/.abw |
||||||
|
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
|
||||||
|
# Microsoft Word Document |
||||||
|
type/^Microsoft\ Office\ Document |
||||||
|
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
View=%view{ascii} wvText %f - || strings %f |
||||||
|
|
||||||
|
type/^Microsoft\ Word |
||||||
|
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
View=%view{ascii} wvText %f - || strings %f |
||||||
|
|
||||||
|
regex/\.([Dd]ot|DOT|[Ww]ri|WRI)$ |
||||||
|
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (OOo %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
View=%view{ascii} wvText %f - || strings %f |
||||||
|
|
||||||
|
# RTF document |
||||||
|
regex/\.([rR][tT][fF])$ |
||||||
|
Open=if which abiword ; then (abiword %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
|
||||||
|
# Microsoft Excel Worksheet |
||||||
|
regex/\.([xX][lL][sSwW])$ |
||||||
|
Open=if which gnumeric ; then (gnumeric %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
View=%view{ascii} xls2csv %f || strings %f |
||||||
|
type/^Microsoft\ Excel |
||||||
|
Open=if which gnumeric ; then (gnumeric %f >/dev/null 2>&1 &); else (ooffice %f >/dev/null 2>&1 &); fi >/dev/null |
||||||
|
View=%view{ascii} xls2csv %f || strings %f |
||||||
|
|
||||||
|
# Framemaker |
||||||
|
type/^FrameMaker |
||||||
|
Open=fmclient -f %f |
||||||
|
|
||||||
|
# DVI |
||||||
|
regex/\.([dD][vV][iI])$ |
||||||
|
Open=if [ x$DISPLAY = x ]; then dvisvga %f; else (xdvi %f >/dev/null 2>&1 &); fi |
||||||
|
View=%view{ascii} dvi2tty %f |
||||||
|
|
||||||
|
# TeX |
||||||
|
regex/\.([Tt][Ee][Xx])$ |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
# DJVU |
||||||
|
regex/\.(djvu|DJVU)$ |
||||||
|
Open=djview %f >/dev/null 2>&1 & |
||||||
|
|
||||||
|
### Miscellaneous ### |
||||||
|
|
||||||
|
# Makefile |
||||||
|
regex/[Mm]akefile$ |
||||||
|
Open=make -f %f %{Enter parameters} |
||||||
|
|
||||||
|
# Imakefile |
||||||
|
shell/Imakefile |
||||||
|
Open=xmkmf -a |
||||||
|
|
||||||
|
# Makefile.PL (MakeMaker) |
||||||
|
regex/^Makefile.(PL|pl)$ |
||||||
|
Open=%var{PERL:perl} %f |
||||||
|
|
||||||
|
# dbf |
||||||
|
regex/\.([dD][bB][fF])$ |
||||||
|
Open=%view{ascii} dbview %f |
||||||
|
View=%view{ascii} dbview -b %f |
||||||
|
|
||||||
|
# REXX script |
||||||
|
regex/\.(rexx?|cmd)$ |
||||||
|
Open=rexx %f %{Enter parameters};echo "Press ENTER";read y |
||||||
|
|
||||||
|
|
||||||
|
### Plain compressed files ### |
||||||
|
|
||||||
|
# zip |
||||||
|
type/^([Zz][Ii][Pp])\ archive |
||||||
|
Open=%cd %p#uzip |
||||||
|
View=%view{ascii} unzip -v %f |
||||||
|
|
||||||
|
# zoo |
||||||
|
regex/\.([Zz][Oo][Oo])$ |
||||||
|
Open=%cd %p#uzoo |
||||||
|
View=%view{ascii} zoo l %f |
||||||
|
|
||||||
|
# gzip |
||||||
|
type/^gzip |
||||||
|
Open=gzip -dc %f | %var{PAGER:more} |
||||||
|
View=%view{ascii} gzip -dc %f 2>/dev/null |
||||||
|
|
||||||
|
# bzip2 |
||||||
|
type/^bzip2 |
||||||
|
Open=bzip2 -dc %f | %var{PAGER:more} |
||||||
|
View=%view{ascii} bzip2 -dc %f 2>/dev/null |
||||||
|
|
||||||
|
# bzip |
||||||
|
type/^bzip |
||||||
|
Open=bzip -dc %f | %var{PAGER:more} |
||||||
|
View=%view{ascii} bzip -dc %f 2>/dev/null |
||||||
|
|
||||||
|
# compress |
||||||
|
type/^compress |
||||||
|
Open=gzip -dc %f | %var{PAGER:more} |
||||||
|
View=%view{ascii} gzip -dc %f 2>/dev/null |
||||||
|
|
||||||
|
# lzma |
||||||
|
regex/\.lzma$ |
||||||
|
Open=lzma -dc %f | %var{PAGER:more} |
||||||
|
View=%view{ascii} lzma -dc %f 2>/dev/null |
||||||
|
|
||||||
|
|
||||||
|
### Default ### |
||||||
|
|
||||||
|
# Default target for anything not described above |
||||||
|
default/* |
||||||
|
Open= |
||||||
|
View= |
||||||
|
|
||||||
|
|
||||||
|
### EOF ### |
@ -0,0 +1,3 @@ |
|||||||
|
echo -n "Установка настроек Х......." |
||||||
|
ln -s $DIR/X/Xdefaults $1/.Xdefaults |
||||||
|
[ $? == 0 ] && echo "OK" |
@ -0,0 +1,31 @@ |
|||||||
|
#! /bin/sh |
||||||
|
# *** External Formatter (Indenter) for GNU Midnight Commander. |
||||||
|
# arguments: |
||||||
|
# $1 - Name of the file being edited |
||||||
|
# $2 - Name of the file to be processed |
||||||
|
|
||||||
|
exec >/dev/null |
||||||
|
|
||||||
|
case `echo $1 |sed 's/^.*\.//'` in |
||||||
|
c|h) |
||||||
|
# ftp://ftp.gnu.org/pub/gnu/indent/ |
||||||
|
# Please add options to your ~/.indent.pro, not here. |
||||||
|
indent "$2" |
||||||
|
;; |
||||||
|
C|cc|CC|cxx|CXX|cpp|CPP) |
||||||
|
# http://astyle.sourceforge.net/ |
||||||
|
astyle "$2" |
||||||
|
;; |
||||||
|
java|JAVA) |
||||||
|
# http://astyle.sourceforge.net/ |
||||||
|
astyle --style=java --mode=java "$2" |
||||||
|
;; |
||||||
|
htm|html|HTM|HTML) |
||||||
|
# http://tidy.sourceforge.net/ |
||||||
|
tidy -q -m -ascii -wrap 80 "$2" |
||||||
|
;; |
||||||
|
*) |
||||||
|
# http://www.gnu.org/software/coreutils/ |
||||||
|
fmt "$2" >"$2.tmp" && rm -f "$2" && mv -f "$2.tmp" "$2" |
||||||
|
;; |
||||||
|
esac |
@ -0,0 +1,11 @@ |
|||||||
|
#! /bin/sh |
||||||
|
# *** External Spell Checker for GNU Midnight Commander. |
||||||
|
# arguments: |
||||||
|
# $1 - Name of the file being edited |
||||||
|
# $2 - Name of the file to be processed |
||||||
|
|
||||||
|
if aspell </dev/null >/dev/null 2>&1; then |
||||||
|
aspell -c "$2" |
||||||
|
else |
||||||
|
ispell "$2" |
||||||
|
fi |
@ -0,0 +1,304 @@ |
|||||||
|
/home/maks/.wine/drive_c/Program Files/Bethesda Softworks/Morrowind/Morrowind.ini 1;3;3 |
||||||
|
/tmp/TclKits/YandexTV_WINDOWS.vfs/tv.tcl 1;20;20 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/YandexTV/ddd 237;0;7989 |
||||||
|
/home/maks/.vim/template/c.vim 4;11;40 |
||||||
|
/home/maks/.vim/template/rebol.vim 3;1;23 |
||||||
|
/home/maks/.vim/template/haskell.vim 1;12;18 |
||||||
|
/home/maks/.vimrc 448;0;17041 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/perl.vim 1;19;19 |
||||||
|
/home/maks/.shellrc/config/soft/calcurse/todo 2;22;96 |
||||||
|
/home/maks/.xmonad/xmonad.hs 201;25;10256 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/prolog.vim 1;1 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/cpp.vim 4;20 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/sh.vim 3;9 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/tcl.vim 3;9 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/scheme.vim 4;21 |
||||||
|
/home/maks/.shellrc/config/soft/vim/vim/template/sh 1;21 |
||||||
|
/home/maks/.shellrc/config/soft/mc/ini 2;0 |
||||||
|
/home/maks/.shellrc/install.sh 14;6 |
||||||
|
/home/maks/.shellrc/config/shell/bash/bashrc 97;95 |
||||||
|
/home/maks/.shellrc/config/shell/bash/aliases 91;0 |
||||||
|
/home/maks/.shellrc/config/shell/bash/bash_profile 9;0 |
||||||
|
/home/maks/.shellrc/config/shell/bash/inputrc 69;0 |
||||||
|
/home/maks/.shellrc/config/shell/bash/completion_addons 101;0 |
||||||
|
/home/maks/.shellrc/config/other/htop/htoprc 12;0 |
||||||
|
/home/maks/.shellrc/config/apps 15;6 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Uingen/uingen.tcl 133;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Slacklog/slacklog.tcl 40;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Other/Алгоритмы_2x2/sort.tcl 2;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Music/1.tcl 871;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Morrowind/functions_gui.tcl 124;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Morrowind/functions.tcl 70;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Morrowind/options_tile.tcl 2;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Guitar/guitar.tcl 221;0 |
||||||
|
/home/maks/Programs/Разработка/Scheme/tmp/factorial.ss 7;8 |
||||||
|
/home/maks/Programs/Разработка/Qt4/MorrINI/main.cpp 2;0 |
||||||
|
/home/maks/Programs/Разработка/Qt4/MorrINI/mainwindow.cpp 3;0 |
||||||
|
/home/maks/Programs/Разработка/Perl/SlackLog/slacklog.pl 36;0 |
||||||
|
/home/maks/Programs/Разработка/Pascal/ППИ/1-1/2/split.pas 50;0 |
||||||
|
/home/maks/Programs/Разработка/HTML/l1/css/style.css 83;0 |
||||||
|
/home/maks/Programs/Разработка/C++/+Tcl/main.cpp 11;16 |
||||||
|
/home/maks/Programs/Разработка/Bash/weather.pl 2;0 |
||||||
|
/home/maks/Programs/Разработка/Bash/uingen/uingen.sh 67;0 |
||||||
|
/home/maks/Programs/Разработка/Bash/spamtools/spamtools.sh 342;0 |
||||||
|
/home/maks/Programs/Разработка/Bash/nikto-1.35/nikto.sh 185;0 |
||||||
|
/home/maks/Programs/Разработка/Bash/hash/gui.sh 14;0 |
||||||
|
/home/maks/Programs/Разработка/Bash/SED_tetris/sedtris.sed 16;0 |
||||||
|
/home/maks/.shellrc/config/vim/vimrc 295;0 |
||||||
|
/home/maks/.shellrc/config/tcl/tclshrc 69;0 |
||||||
|
/home/maks/.shellrc/config/tcl/tclsh-history 2464;0 |
||||||
|
/home/maks/.shellrc/config/rc/usr/libexec/dhcpcd-hooks/newip2sms 7;52 |
||||||
|
/home/maks/.shellrc/config/net/rtorrent/rtorrent.rc 22;0 |
||||||
|
/home/maks/.shellrc/config/net/mcabber/mcabberrc 148;0 |
||||||
|
/home/maks/.shellrc/config/memory/mem 49;0 |
||||||
|
/home/maks/.shellrc/config/media/ncmpcpp/config 21;0 |
||||||
|
/home/maks/.shellrc/config/media/mpd/mpd.conf 42;0 |
||||||
|
/home/maks/.shellrc/config/mail/fetchmail/fetchmailrc 27;0 |
||||||
|
/home/maks/.shellrc/config/mail/mutt/sidebar.mutt 14;0 |
||||||
|
/home/maks/.shellrc/config/mail/mutt/colors.mutt 20;0 |
||||||
|
/home/maks/.shellrc/config/mail/mutt/header.mutt 24;0 |
||||||
|
/home/maks/.shellrc/config/mail/mutt/keys.mutt 17;0 |
||||||
|
/home/maks/.shellrc/config/mail/mutt/muttrc 4;1 |
||||||
|
/home/maks/.shellrc/config/mail/mailcap/mailcap 3;8 |
||||||
|
/home/maks/.shellrc/config/htop/htoprc 23;0 |
||||||
|
/home/maks/.shellrc/config/guile/guile 8;0 |
||||||
|
/home/maks/.shellrc/bin/color_cmake.sh 22;0 |
||||||
|
/home/maks/.shellrc/bin/checkmail 5;0 |
||||||
|
/home/maks/.shellrc/bin/books 37;0 |
||||||
|
/home/maks/.shellrc/autostart/autostart 5;0 |
||||||
|
/home/maks/.shellrc/install.sh.13-01-2010.15:08:44.bak 66;0 |
||||||
|
/home/maks/.snownews/colors 18;9 |
||||||
|
/home/maks/.snownews/keybindings 2;0 |
||||||
|
/home/maks/.shellrc/config/net/snownews/scripts/atom2rss 71;0 |
||||||
|
/home/maks/.shellrc/bin/ip2sms 3;17 |
||||||
|
/home/maks/.shellrc/bin/hv3 3;44 |
||||||
|
/home/maks/.shellrc/bin/color_conf.sh 4;0 |
||||||
|
/home/maks/.shellrc/bin/allcolors 65;0 |
||||||
|
/home/maks/.shellrc/config/X/Xdefaults 30;0 |
||||||
|
/home/maks/.shellrc/config/mail/sendemail 563;0 |
||||||
|
/home/maks/.snownews/browser 1;8 |
||||||
|
/home/maks/Programs/Разработка/C++/Стивен Прата/Глава 8/8-6.cpp 52;0 |
||||||
|
/home/maks/Programs/Разработка/C++/morse/morse.cpp 2;0 |
||||||
|
/home/maks/Programs/Разработка/C++/UIN_PASS/uin_pass.cpp 39;0 |
||||||
|
/home/maks/Programs/Разработка/HTML/l1/index.html 4;0 |
||||||
|
/home/maks/Programs/Разработка/C++/MD5gen/md5gen.cpp 17;0 |
||||||
|
/etc/exports 6;12 |
||||||
|
/etc/rc.d/rc.inet1 154;0 |
||||||
|
/etc/rc.d/rc.inet1.conf 91;0 |
||||||
|
/etc/rc.d/rc.inetd 2;0 |
||||||
|
/etc/rc.d/rc.rpc 20;0 |
||||||
|
/etc/rc.d/init.d/README.functions 11;8 |
||||||
|
/etc/rc.d/init.d/functions 1;8 |
||||||
|
/etc/rc.d/rc.inet2 138;0 |
||||||
|
/etc/rc.d/rc.nfsd 99;0 |
||||||
|
/media/MEDIA/TMP/LaTeX/Шаблоны/title.tex 62;0 |
||||||
|
/home/maks/.shellrc/templates/main.tex 12;0 |
||||||
|
/usr/share/autostart/wicd-tray.desktop 5;0 |
||||||
|
/usr/share/autostart/restore_kmix_volumes.desktop 9;0 |
||||||
|
/usr/share/autostart/korgac.desktop 44;0 |
||||||
|
/usr/share/autostart/kabcdistlistupdater.desktop 69;0 |
||||||
|
/usr/share/autostart/guidance-power-manager.desktop 66;0 |
||||||
|
/etc/inittab 72;0 |
||||||
|
/etc/rc.d/rc.wicd 53;0 |
||||||
|
/etc/rc.d/rc.local 24;0 |
||||||
|
/etc/rc.d/rc.keymap 1;8 |
||||||
|
/etc/rc.d/rc.font.new 1;8 |
||||||
|
/etc/rc.d/rc.font 10;0 |
||||||
|
/etc/rc.d/rc.M 260;1 |
||||||
|
/home/maks/.ezdit/ezdit.conf 68;0 |
||||||
|
/home/maks/logs/irc.rusnet.org.ru.log 58;0 |
||||||
|
/etc/profile 29;24 |
||||||
|
/home/maks/.xsession-errors 846;0 |
||||||
|
/home/maks/hello.hs 1;9 |
||||||
|
/home/maks/ion/ion.SlackBuild 6;3 |
||||||
|
/home/maks/ion/README 2;0 |
||||||
|
/home/maks/ghc-6.10.4/Makefile 4;0 |
||||||
|
/home/maks/ghc-6.10.4/ANNOUNCE 109;0 |
||||||
|
/home/maks/ghc-6.10.4/utils/Makefile 121;0 |
||||||
|
/home/maks/ghc-6.10.4/INSTALL 41;0 |
||||||
|
/home/maks/ghc-6.10.4/README 2;0 |
||||||
|
/var/slapt-get/packages/gcc-4.4.2/install/doinst.sh 30;9 |
||||||
|
/home/maks/ghc-6.10.4/mk/install.mk 90;0 |
||||||
|
/boot/README.initrd 2;0 |
||||||
|
/var/slapt-get/slackware/l/install/doinst.sh 192;6 |
||||||
|
/home/maks/constructor/locale.dir 88;0 |
||||||
|
/home/maks/constructor/locale.alias 51;0 |
||||||
|
/home/maks/constructor/l_alias.glibc 74;0 |
||||||
|
/home/maks/constructor/fstab.cdrw 4;0 |
||||||
|
/home/maks/constructor/fonts.conf 67;0 |
||||||
|
/home/maks/constructor/doinst.sh 4;6 |
||||||
|
/etc/X11/xorg.conf 67;25 |
||||||
|
/var/slapt-get/slackware/a/install/doinst.sh 31;0 |
||||||
|
/etc/rc.d/rc.modules-2.6.32.2-smp 67;0 |
||||||
|
/var/slapt-get/slackware/d/install/doinst.sh 2;6 |
||||||
|
/home/maks/edcucumber-read-only/cucumber.tcl 16;0 |
||||||
|
/home/maks/DeskCal/DeskCal.tcl 72;0 |
||||||
|
/home/maks/tcltext2.3/tcltext.tcl 1;9 |
||||||
|
/home/maks/tdict-1.1/README.tdict.1.1 50;0 |
||||||
|
/home/maks/tcltext2.3/README 5;0 |
||||||
|
/home/maks/tcltext2.3/nonguiinstall.sh 2;0 |
||||||
|
/home/maks/htmlwidget/tclconfig/tcl.m4 81;0 |
||||||
|
/home/maks/htmlwidget/hv/hv3_file.tcl 131;0 |
||||||
|
/home/maks/.tclshrc 2;30 |
||||||
|
/var/slapt-get/slackware/xap/install/doinst.sh 4;6 |
||||||
|
/home/maks/.vim/after/syntax/css.vim 112;0 |
||||||
|
/var/slapt-get/slackware/tcl/install/doinst.sh 416;9 |
||||||
|
/home/maks/Downloads/TORRENTS/_СКАЧАНО_/simpsons/01-й сезон/MULTINFO.TXT 1;1 |
||||||
|
/home/maks/.wicd/WHEREAREMYFILES 22;0 |
||||||
|
/home/maks/Programs/Media/tuxguitar-1.0-jet/tuxguitar 28;0 |
||||||
|
/home/maks/.cache/guile/ccache/1.9-0.D-LE-4/usr/share/guile/1.9/ice-9/readline.scm.go 123;32 |
||||||
|
/home/maks/.vim/template/scheme.vim 4;0 |
||||||
|
/home/maks/.vim/template/ss.vim 1;20 |
||||||
|
/home/maks/.vim/ftdetect/detect.vim 7;0 |
||||||
|
/home/maks/.vim/template/scm.vim 3;0 |
||||||
|
/home/maks/.vim/template/tcl.vim 3;0 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-42.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-41.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-31.ss 2;2 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-27.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-23.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-22.ss 2;2 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-17.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-16.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-12.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-11.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-08.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-07.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-03.ss 1;20 |
||||||
|
/home/maks/Programs/Разработка/Scheme/SICP/Глава 1/1-02.ss 1;19 |
||||||
|
/home/maks/.vim/ftplugin/scheme/scheme.vim 2;12 |
||||||
|
/home/maks/.vim/syntax/scheme.vim 34;0 |
||||||
|
/home/maks/plt-4.2.2/src/build/foreign/Makefile 30;13 |
||||||
|
/home/maks/plt-4.2.2/src/build/mred/Makefile 376;13 |
||||||
|
/home/maks/plt-4.2.2/src/build/mzscheme/Makefile 359;13 |
||||||
|
/home/maks/plt-4.2.2/src/build/Makefile 178;34 |
||||||
|
/home/maks/plt-4.2.2/src/README 132;0 |
||||||
|
/home/maks/guile-1.9.4/NEWS 7139;13 |
||||||
|
/home/maks/guile-1.9.4/HACKING 345;0 |
||||||
|
/home/maks/guile-1.9.4/GUILE-VERSION 2;0 |
||||||
|
/home/maks/guile-1.9.4/ChangeLog 110;0 |
||||||
|
/usr/include/limits.h 123;0 |
||||||
|
/home/maks/Programs/Разработка/Scripts/index.html 87;0 |
||||||
|
/home/maks/Programs/Разработка/Scripts/shells/DxShell.php 2032;0 |
||||||
|
/home/maks/Programs/Разработка/Scripts/myscripts/flood.sh 53;0 |
||||||
|
/home/maks/Programs/Разработка/Scripts/brut/passwd_to_file.pl 5;0 |
||||||
|
/home/maks/Programs/Разработка/Scripts/SMS/index.html 2;0 |
||||||
|
/home/maks/Programs/Разработка/Scheme/tmp/clock.ss 18;15 |
||||||
|
/home/maks/Programs/Разработка/Qt4/GUI/form1.cpp 898;0 |
||||||
|
/home/maks/Programs/Разработка/Bash/hash/table.sh 43;0 |
||||||
|
/etc/slackpkg/slackpkg.conf 80;0 |
||||||
|
/etc/skel/.screenrc 2;0 |
||||||
|
/etc/mutt/mime.types 84;0 |
||||||
|
/etc/mutt/Muttrc 197;0 |
||||||
|
/etc/hp/hplip.conf 38;0 |
||||||
|
/etc/rpc 70;0 |
||||||
|
/etc/sensors3.conf 352;0 |
||||||
|
/etc/shadow 26;0 |
||||||
|
/etc/sudoers 19;1 |
||||||
|
/etc/termcap 41;0 |
||||||
|
/etc/wgetrc 100;0 |
||||||
|
/etc/inetd.conf 110;0 |
||||||
|
/etc/lynx.cfg 131;0 |
||||||
|
/etc/fstab 8;0 |
||||||
|
/home/maks/Programs/Разработка/Perl/proxycheck.pl 4;0 |
||||||
|
/home/maks/Programs/Разработка/Perl/proxycheck.pl~ 12;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Music/1_old.tcl 610;0 |
||||||
|
/home/maks/.recently-used 23;14 |
||||||
|
/home/maks/.2mandvd/logfile.txt 10;0 |
||||||
|
/home/maks/imagination-2.1/src/support.c 23;27 |
||||||
|
/home/maks/imagination-2.1.tar.gz#utar/imagination-2.1/src/support.c 24;0 |
||||||
|
/home/maks/imagination.SlackBuild 115;0 |
||||||
|
/var/slapt-get/multimedia/imagination/2.1/install/doinst.sh 6;0 |
||||||
|
/home/maks/imagination-2.1/icons/Makefile 49;0 |
||||||
|
/home/maks/imagination-2.1/Makefile 17;0 |
||||||
|
/home/maks/imagination-2.1/INSTALL 2;0 |
||||||
|
/home/maks/imagination-2.1/README 11;0 |
||||||
|
/home/maks/imagination-2.1/transitions/Makefile.in 48;0 |
||||||
|
/home/maks/imagination-2.1/transitions/Makefile.am 5;0 |
||||||
|
/home/maks/oleaut32.zip#uzip/readme.txt 43;0 |
||||||
|
/media/MEDIA/Видео/Сериалы/CSI. Майами/3 Сезон/done.txt 10;24 |
||||||
|
/home/maks/.shellrc/config/cw/def/g++ 2;12 |
||||||
|
/usr/lib/gcc/i486-slackware-linux/4.4.2/specs 21;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/Soft/Разное/tcl2html.tcl 137;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/Soft/Настройки/Prompt/prompt.tcl 62;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/Soft/Пакеты/Snack/snack.pdf 122;0 |
||||||
|
/home/maks/Programs/Разработка/Tcl/src/Music/Backup/1.tcl.06-06-2009.bak 328;0 |
||||||
|
/home/maks/Programs/Разработка/Scheme/tmp/test.ss 1;40 |
||||||
|
/home/maks/test.ss 9;0 |
||||||
|
/home/maks/laptopconf/01-touchpad.rules 1;8 |
||||||
|
/etc/rc.d/rc.modules 316;9 |
||||||
|
/etc/rc.d/rc.acpid 8;29 |
||||||
|
/etc/rc.d/rc.S 366;8 |
||||||
|
/etc/rc.d/rc.udev 1;8 |
||||||
|
/etc/rc.d/rc.slapt-update-notifier 15;8 |
||||||
|
/etc/rc.d/rc.modules-2.6.29.6-smp 44;8 |
||||||
|
/etc/rc.d/rc.messagebus 1;8 |
||||||
|
/etc/bluetooth/network.conf 38;8 |
||||||
|
/etc/rc.d/rc.bluetooth 115;8 |
||||||
|
/etc/rc.d/rc.sysvinit 2;9 |
||||||
|
/home/maks/gtk-qt-engine-0.8-i486-2.tgz#utar/usr/share/themes/Qt/gtk-2.0/gtkrc 1;8 |
||||||
|
/install/data.xml 1;8 |
||||||
|
/home/maks/man-1.6f-i486-2.tgz#utar/install/doinst.sh 1;8 |
||||||
|
/home/maks/man-1.6f-i486-2.tgz#utar/install/slack-required 1;8 |
||||||
|
/home/maks/man-1.6f-i486-2.tgz#utar/usr/share/locale/ru/man 49;8 |
||||||
|
/home/maks/man-pages-3.15-noarch-1.tgz#utar/install/doinst.sh 8;16 |
||||||
|
/usr/man/README 1;8 |
||||||
|
/usr/man/whatis 10;8 |
||||||
|
/home/maks/man-pages-ru-4.2-noarch-1.tgz#utar/install/slack-desc 1;24 |
||||||
|
/home/maks/man-pages-ru-4.2-noarch-1.tgz#utar/install/slack-required 1;11 |
||||||
|
/etc/lilo.conf 64;28 |
||||||
|
/home/maks/gtk-qt-engine-0.8-i486-2.tgz#utar/install/slack-required 38;8 |
||||||
|
/home/maks/gtk-qt-engine-0.8-i486-2.tgz#utar/install/slack-desc 1;8 |
||||||
|
/home/maks/man-pages-ru-4.2-noarch-1.tgz#utar/install/data.xml 3;8 |
||||||
|
/home/maks/.shellrc/config/cw/def/figlet 2;19 |
||||||
|
/home/maks/.shellrc/config/cw/def/df 2;0 |
||||||
|
/home/maks/.shellrc/config/cw/def/date 4;0 |
||||||
|
/home/maks/.shellrc/config/cw/def/arp 8;2 |
||||||
|
/home/maks/.shellrc/config/cw/def/arping 11;0 |
||||||
|
/home/maks/.shellrc/config/cw/def/cal 8;0 |
||||||
|
/home/maks/.procmailrc 24;0 |
||||||
|
/home/maks/TMP/printable.aspx.tar.bz2#utar/printable.aspx 57;0 |
||||||
|
/home/maks/.shellrc/config/media/mpd/mpd.log 49;0 |
||||||
|
/home/maks/.shellrc/config/mail/mutt/boxes.mutt 23;0 |
||||||
|
/home/maks/.shellrc/config/bash/inputrc 70;0 |
||||||
|
/home/maks/.shellrc/config/bash/completion_addons 101;0 |
||||||
|
/home/maks/.shellrc/config/bash/bashrc 158;0 |
||||||
|
/home/maks/.shellrc/config/bash/aliases 1;46 |
||||||
|
/home/maks/.shellrc/config/bash/DIR_COLORS 167;0 |
||||||
|
/home/maks/.shellrc/config/net/hv3/hv3 16;0 |
||||||
|
/home/maks/.shellrc/config/mc/history 350;0 |
||||||
|
/home/maks/.shellrc/config/mcabber/mcabberrc 482;54 |
||||||
|
/home/maks/.shellrc/config/mcabber/eventcmd 13;1 |
||||||
|
/home/maks/.shellrc/config/mcabber/mcabber-notify.sh 13;70 |
||||||
|
/home/maks/.xsession 8;0 |
||||||
|
/home/maks/.xine/catalog.cache 1371;0 |
||||||
|
/home/maks/.purple/blist.xml 55;0 |
||||||
|
/home/maks/.ncftp/firewall 109;0 |
||||||
|
/home/maks/.msf3/modcache 972;0 |
||||||
|
/home/maks/.hplip/hplip.conf 2;0 |
||||||
|
/home/maks/.bogofilter/wordlist.db 3;0 |
||||||
|
/home/maks/.shellrc/mail/zone-x.ru 78529;0 |
||||||
|
/home/maks/.shellrc/mail/spam-learn 70;0 |
||||||
|
/home/maks/.shellrc/config/rc/etc/rc.d/rc.firewall 31;30 |
||||||
|
/home/maks/.shellrc/mail/sms 118;0 |
||||||
|
/home/maks/.shellrc/mail/new 1;1 |
||||||
|
/home/maks/.shellrc/books/books.tc~ 2;0 |
||||||
|
/home/maks/.shellrc/config/rc/40-newip 1;1 |
||||||
|
/home/maks/.kde/Autostart/start.sh 5;0 |
||||||
|
/home/maks/.shellrc/config/vim/vim/ftdetect/detect.vim 4;0 |
||||||
|
/home/maks/.newsbeuter/urls 3;0 |
||||||
|
/home/maks/.shellrc/config/rss/raggle/feeds.yaml 30;12 |
||||||
|
/home/maks/Книги.tc#uzip/tellico.xml 147;0 |
||||||
|
/home/maks/Книги.tc 3;0 |
||||||
|
/home/maks/.spamassassin/user_prefs 5;25 |
||||||
|
/home/maks/.kde/Autostart/Xmodmap 3;0 |
||||||
|
/home/maks/.shellrc/autostart/Xmodmap 5;0 |
||||||
|
/home/maks/.emacs 44;0 |
||||||
|
/home/maks/muttrc-20020703_mike/.mutt-mike/folder 5;0 |
||||||
|
/home/maks/muttrc-20020703_mike/.mutt-mike/alias 4;0 |
||||||
|
/home/maks/muttrc-20020703_mike/.mutt-mike/set 18;0 |
||||||
|
/home/maks/muttrc-20020703_mike/.procmailrc-mike 123;0 |
||||||
|
/home/maks/.fetchmailrc 42;0 |
||||||
|
/home/maks/.shellrc/config/firewall/rc.firewall 48;0 |
||||||
|
/home/maks/Mail/.inbox.directory/Makslih@mail.ru/..mbox 1158;0 |
||||||
|
/home/maks/.shellrc/mail/inbox 10090;12 |
@ -0,0 +1,110 @@ |
|||||||
|
|
||||||
|
[Midnight-Commander] |
||||||
|
show_backups=1 |
||||||
|
show_dot_files=1 |
||||||
|
verbose=1 |
||||||
|
mark_moves_down=1 |
||||||
|
pause_after_run=1 |
||||||
|
shell_patterns=1 |
||||||
|
auto_save_setup=1 |
||||||
|
auto_menu=0 |
||||||
|
use_internal_view=1 |
||||||
|
use_internal_edit=0 |
||||||
|
clear_before_exec=1 |
||||||
|
mix_all_files=0 |
||||||
|
fast_reload=0 |
||||||
|
fast_reload_msg_shown=0 |
||||||
|
confirm_delete=1 |
||||||
|
confirm_overwrite=1 |
||||||
|
confirm_execute=0 |
||||||
|
confirm_exit=1 |
||||||
|
confirm_directory_hotlist_delete=1 |
||||||
|
safe_delete=0 |
||||||
|
mouse_repeat_rate=100 |
||||||
|
double_click_speed=250 |
||||||
|
use_8th_bit_as_meta=0 |
||||||
|
confirm_view_dir=0 |
||||||
|
mouse_move_pages=1 |
||||||
|
mouse_move_pages_viewer=1 |
||||||
|
mouse_close_dialog=0 |
||||||
|
fast_refresh=0 |
||||||
|
navigate_with_arrows=1 |
||||||
|
drop_menus=0 |
||||||
|
wrap_mode=1 |
||||||
|
old_esc_mode=0 |
||||||
|
cd_symlinks=1 |
||||||
|
show_all_if_ambiguous=0 |
||||||
|
max_dirt_limit=10 |
||||||
|
torben_fj_mode=0 |
||||||
|
use_file_to_guess_type=1 |
||||||
|
alternate_plus_minus=0 |
||||||
|
only_leading_plus_minus=1 |
||||||
|
show_output_starts_shell=0 |
||||||
|
panel_scroll_pages=1 |
||||||
|
xtree_mode=0 |
||||||
|
num_history_items_recorded=60 |
||||||
|
file_op_compute_totals=1 |
||||||
|
skip_check_codeset=0 |
||||||
|
vfs_timeout=60 |
||||||
|
ftpfs_directory_timeout=900 |
||||||
|
use_netrc=1 |
||||||
|
ftpfs_retry_seconds=30 |
||||||
|
ftpfs_always_use_proxy=0 |
||||||
|
ftpfs_use_passive_connections=1 |
||||||
|
ftpfs_use_unix_list_options=1 |
||||||
|
ftpfs_first_cd_then_ls=1 |
||||||
|
fish_directory_timeout=900 |
||||||
|
editor_word_wrap_line_length=72 |
||||||
|
editor_key_emulation=0 |
||||||
|
editor_tab_spacing=8 |
||||||
|
editor_fill_tabs_with_spaces=0 |
||||||
|
editor_return_does_auto_indent=1 |
||||||
|
editor_backspace_through_tabs=0 |
||||||
|
editor_fake_half_tabs=1 |
||||||
|
editor_option_save_mode=0 |
||||||
|
editor_option_save_position=1 |
||||||
|
editor_option_auto_para_formatting=0 |
||||||
|
editor_option_typewriter_wrap=0 |
||||||
|
editor_edit_confirm_save=1 |
||||||
|
editor_syntax_highlighting=1 |
||||||
|
editor_persistent_selections=1 |
||||||
|
editor_visible_tabs=1 |
||||||
|
editor_visible_spaces=1 |
||||||
|
editor_line_state=0 |
||||||
|
editor_simple_statusbar=0 |
||||||
|
nice_rotating_dash=1 |
||||||
|
horizontal_split=0 |
||||||
|
mcview_remember_file_position=0 |
||||||
|
auto_fill_mkdir_name=0 |
||||||
|
editor_backup_extension=~ |
||||||
|
|
||||||
|
[Layout] |
||||||
|
equal_split=1 |
||||||
|
first_panel_size=78 |
||||||
|
message_visible=0 |
||||||
|
keybar_visible=0 |
||||||
|
xterm_title=1 |
||||||
|
output_lines=0 |
||||||
|
command_prompt=1 |
||||||
|
menubar_visible=0 |
||||||
|
show_mini_info=1 |
||||||
|
permission_mode=1 |
||||||
|
filetype_mode=1 |
||||||
|
free_space=1 |
||||||
|
|
||||||
|
[Misc] |
||||||
|
ftp_proxy_host=gate |
||||||
|
find_ignore_dirs= |
||||||
|
ftpfs_password=anonymous@ |
||||||
|
display_codepage=UTF-8 |
||||||
|
source_codepage=UTF-8 |
||||||
|
|
||||||
|
[Colors] |
||||||
|
base_color= |
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
[Panelize] |
||||||
|
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print |
||||||
|
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print |
||||||
|
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print |
@ -0,0 +1,143 @@ |
|||||||
|
|
||||||
|
[Midnight-Commander] |
||||||
|
show_backups=1 |
||||||
|
show_dot_files=1 |
||||||
|
verbose=1 |
||||||
|
mark_moves_down=1 |
||||||
|
pause_after_run=1 |
||||||
|
shell_patterns=1 |
||||||
|
auto_save_setup=1 |
||||||
|
auto_menu=0 |
||||||
|
use_internal_view=1 |
||||||
|
use_internal_edit=0 |
||||||
|
clear_before_exec=1 |
||||||
|
mix_all_files=0 |
||||||
|
fast_reload=0 |
||||||
|
fast_reload_msg_shown=0 |
||||||
|
confirm_delete=1 |
||||||
|
confirm_overwrite=1 |
||||||
|
confirm_execute=0 |
||||||
|
confirm_exit=1 |
||||||
|
confirm_directory_hotlist_delete=1 |
||||||
|
safe_delete=0 |
||||||
|
mouse_repeat_rate=100 |
||||||
|
double_click_speed=250 |
||||||
|
use_8th_bit_as_meta=0 |
||||||
|
confirm_view_dir=0 |
||||||
|
mouse_move_pages=1 |
||||||
|
mouse_move_pages_viewer=1 |
||||||
|
mouse_close_dialog=0 |
||||||
|
fast_refresh=0 |
||||||
|
navigate_with_arrows=1 |
||||||
|
drop_menus=0 |
||||||
|
wrap_mode=1 |
||||||
|
old_esc_mode=0 |
||||||
|
cd_symlinks=1 |
||||||
|
show_all_if_ambiguous=0 |
||||||
|
max_dirt_limit=10 |
||||||
|
torben_fj_mode=0 |
||||||
|
use_file_to_guess_type=1 |
||||||
|
alternate_plus_minus=0 |
||||||
|
only_leading_plus_minus=1 |
||||||
|
show_output_starts_shell=0 |
||||||
|
panel_scroll_pages=1 |
||||||
|
xtree_mode=0 |
||||||
|
num_history_items_recorded=60 |
||||||
|
file_op_compute_totals=1 |
||||||
|
skip_check_codeset=0 |
||||||
|
vfs_timeout=60 |
||||||
|
ftpfs_directory_timeout=900 |
||||||
|
use_netrc=1 |
||||||
|
ftpfs_retry_seconds=30 |
||||||
|
ftpfs_always_use_proxy=0 |
||||||
|
ftpfs_use_passive_connections=1 |
||||||
|
ftpfs_use_unix_list_options=1 |
||||||
|
ftpfs_first_cd_then_ls=1 |
||||||
|
fish_directory_timeout=900 |
||||||
|
editor_word_wrap_line_length=72 |
||||||
|
editor_key_emulation=0 |
||||||
|
editor_tab_spacing=8 |
||||||
|
editor_fill_tabs_with_spaces=0 |
||||||
|
editor_return_does_auto_indent=1 |
||||||
|
editor_backspace_through_tabs=0 |
||||||
|
editor_fake_half_tabs=1 |
||||||
|
editor_option_save_mode=0 |
||||||
|
editor_option_save_position=1 |
||||||
|
editor_option_auto_para_formatting=0 |
||||||
|
editor_option_typewriter_wrap=0 |
||||||
|
editor_edit_confirm_save=1 |
||||||
|
editor_syntax_highlighting=1 |
||||||
|
editor_persistent_selections=1 |
||||||
|
editor_visible_tabs=1 |
||||||
|
editor_visible_spaces=1 |
||||||
|
editor_line_state=0 |
||||||
|
editor_simple_statusbar=0 |
||||||
|
nice_rotating_dash=1 |
||||||
|
horizontal_split=0 |
||||||
|
mcview_remember_file_position=0 |
||||||
|
auto_fill_mkdir_name=0 |
||||||
|
editor_backup_extension=~ |
||||||
|
|
||||||
|
[Layout] |
||||||
|
equal_split=1 |
||||||
|
first_panel_size=78 |
||||||
|
message_visible=0 |
||||||
|
keybar_visible=0 |
||||||
|
xterm_title=1 |
||||||
|
output_lines=0 |
||||||
|
command_prompt=1 |
||||||
|
menubar_visible=0 |
||||||
|
show_mini_info=1 |
||||||
|
permission_mode=1 |
||||||
|
filetype_mode=1 |
||||||
|
free_space=1 |
||||||
|
|
||||||
|
[Misc] |
||||||
|
ftp_proxy_host=gate |
||||||
|
find_ignore_dirs= |
||||||
|
ftpfs_password=anonymous@ |
||||||
|
display_codepage=UTF-8 |
||||||
|
source_codepage=UTF-8 |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
[Colors] |
||||||
|
base_color=,black:normal=,black:selected=black,cyan:marked=,black:markselect=yellow,cyan:errors=white,red:menu=white,cyan:reverse=black,lightgray:dnormal=black,lightgray:dfocus=black,cyan:dhotnormal=blue,lightgray:dhotfocus=blue,cyan:viewunderline=,black:menuhot=yellow,cyan:menusel=white,black:menuhotsel=yellow,black:helpnormal=black,lightgray:helpitalic=red,lightgray:helpbold=blue,lightgray:helplink=black,cyan:helpslink=yellow,blue:gauge=white,black:input=black,cyan:directory=white,black:executable=brightgreen,black:link=cyan,black:stalelink=brightred,blue:device=,black:core=red,blue:special=red,black:editnormal=lightgray,black:editbold=yellow,blue:editmarked=black,cyan:errdhotnormal=yellow,red:errdhotfocus=yellow,lightgray |
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
[Panelize] |
||||||
|
Найти корректуры, отвергнутые командой patch=find . -name \\*.rej -print |
||||||
|
Найти оригиналы (*.orig) после команды patch=find . -name \\*.orig -print |
||||||
|
Найти программы с установленными SUID/SGID битами=find . \\( \\( -perm -04000 -a -perm +011 \\) -o \\( -perm -02000 -a -perm +01 \\) \\) -print |
@ -0,0 +1,97 @@ |
|||||||
|
# Please, use this skin in UTF-8 system codepage only. |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=Zenburn skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
lefttop=╔ |
||||||
|
righttop=╗ |
||||||
|
centertop=╤ |
||||||
|
centerbottom=╧ |
||||||
|
leftbottom=╚ |
||||||
|
rightbottom=╝ |
||||||
|
leftmiddle=╟ |
||||||
|
rightmiddle=╢ |
||||||
|
centermiddle=┼ |
||||||
|
horiz=═ |
||||||
|
vert=║ |
||||||
|
thinhoriz=─ |
||||||
|
thinvert=│ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;default |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;default |
||||||
|
markselect=yellow;cyan; |
||||||
|
gauge=blue;cyan |
||||||
|
input=black;cyan |
||||||
|
reverse=brightgreen;default |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=lightgray;default |
||||||
|
dfocus=blue;default |
||||||
|
dhotnormal=green;default |
||||||
|
dhotfocus=green;default |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=brightred;default |
||||||
|
errdhotnormal=brightred;default |
||||||
|
errdhotfocus=brightred;default |
||||||
|
|
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=blue; |
||||||
|
executable=default; |
||||||
|
symlink=cyan; |
||||||
|
stalelink=cyan; |
||||||
|
device=brightblue; |
||||||
|
special=cyan; |
||||||
|
core=red; |
||||||
|
temp=cyan; |
||||||
|
archive=brightmagenta; |
||||||
|
doc=green; |
||||||
|
source=brightblue; |
||||||
|
media=brown; |
||||||
|
graph=magenta; |
||||||
|
database=cyan; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=black;cyan |
||||||
|
menuhot=black;cyan |
||||||
|
menusel=white;default |
||||||
|
menuhotsel=yellow;default |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=lightgray;default |
||||||
|
button=black;cyan |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=lightgray;default |
||||||
|
helpitalic=red;default |
||||||
|
helpbold=blue;default |
||||||
|
helplink=cyan;default |
||||||
|
helpslink=yellow;default |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;default |
||||||
|
editbold=default;yellow |
||||||
|
editmarked=black;cyan |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
linestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewunderline=yellow;default |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ↑ |
||||||
|
sort-sign-down = ↓ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = ⋅ |
||||||
|
hiddenfiles-sign-hide = • |
||||||
|
history-prev-item-sign = « |
||||||
|
history-next-item-sign = » |
||||||
|
history-show-list-sign = ^ |
||||||
|
|
@ -0,0 +1,44 @@ |
|||||||
|
[executable] |
||||||
|
type=FILE_EXE |
||||||
|
|
||||||
|
[directory] |
||||||
|
type=DIR |
||||||
|
|
||||||
|
[device] |
||||||
|
type=DEVICE |
||||||
|
|
||||||
|
[special] |
||||||
|
type=SPECIAL |
||||||
|
|
||||||
|
[stalelink] |
||||||
|
type=STALE_LINK |
||||||
|
|
||||||
|
[symlink] |
||||||
|
type=SYMLINK |
||||||
|
|
||||||
|
[core] |
||||||
|
regexp=^core\\.*\\d*$ |
||||||
|
|
||||||
|
[temp] |
||||||
|
extensions=tmp;$$$;~;bak;o;elc;toc;out;rej;aux; |
||||||
|
extensions_case=false |
||||||
|
regexp=(^#.*|.*~$) |
||||||
|
|
||||||
|
[archive] |
||||||
|
extensions=gz;bz2;tar;tgz;rpm;rar;zip;arj;cab;lzma;xz;tbz2;iso;mdf; |
||||||
|
|
||||||
|
[doc] |
||||||
|
extensions=txt;srt;ass;ssa;doc;ps;pdf;xml;html;htm;tex;css;chm;dvi;djvu;log;odt;cue; |
||||||
|
|
||||||
|
[source] |
||||||
|
extensions=c;h;cc;hh;cpp;cxx;hpp;asm;py;pl;pm;inc;cgi;php;phps;js;java;jav;jasm;sh;bash;diff;patch;pas;tcl;tk;awk;m4;st;mak;sl;ada;caml;ml;mli;mly;mll;mlp;sas;prg;hs;hi;erl;lisp;el;ebuild; |
||||||
|
|
||||||
|
[media] |
||||||
|
extensions=mov;mpg;mpeg;mkv;ogm;mp4;m2v;m4v;wmv;rmvb;rm;asf;avi;flv;vob;flac;mka;mp3;ogg;wav;ape;m3u; |
||||||
|
|
||||||
|
[graph] |
||||||
|
extensions=jpg;jpeg;gif;bmp;tga;xpm;tif;tiff;png;svgz;svg;pcx;xpm;eps;wmf;ico; |
||||||
|
|
||||||
|
[database] |
||||||
|
extensions=db;mdb;dat;sql;xls |
||||||
|
|
@ -0,0 +1,326 @@ |
|||||||
|
|
||||||
|
[inpmc.hotlist.add] |
||||||
|
0=/home/maks/Downloads/TORRENTS |
||||||
|
1=/media/2TB/Музыка |
||||||
|
2=/media/2TB/Music/new |
||||||
|
3=/home/maks/Книги |
||||||
|
4=/home/maks/.shellrc/config/soft/vim/vim/bundle |
||||||
|
|
||||||
|
[mini_input] |
||||||
|
0=half type name | size | perm |
||||||
|
|
||||||
|
[user-fmt-input] |
||||||
|
0=half type name | size | perm |
||||||
|
|
||||||
|
[inpmc.fm.mkdir] |
||||||
|
0=Slackware |
||||||
|
1=Tcl |
||||||
|
2=Shell |
||||||
|
3=Scheme |
||||||
|
4=Haskell |
||||||
|
5=Алгоритмы |
||||||
|
6=Мысли |
||||||
|
7=Контакты |
||||||
|
8=ПО |
||||||
|
9=Vim |
||||||
|
10=LaTeX |
||||||
|
11=Privoxy |
||||||
|
12=Tor |
||||||
|
13=Hardware |
||||||
|
14=HP PtoBook 4510s |
||||||
|
15=Web |
||||||
|
16=Базы данных |
||||||
|
17=SQL |
||||||
|
18=100 |
||||||
|
19=Даты |
||||||
|
20=Ссылки |
||||||
|
21=Рецепты |
||||||
|
22=Книги |
||||||
|
23=Фильмы |
||||||
|
24=Концерты |
||||||
|
25=content |
||||||
|
26=images |
||||||
|
27=win |
||||||
|
28=Admin |
||||||
|
29=Windows |
||||||
|
30=Industrial Metal |
||||||
|
31=Industrial Doom Metal |
||||||
|
32=scripts |
||||||
|
33=swp |
||||||
|
34=Japanoise |
||||||
|
35=Merzbow [JA] |
||||||
|
36=Музыкальная теория |
||||||
|
37=Гармония |
||||||
|
38=Игра на музыкальных инструментах |
||||||
|
39=[ ] Гитара |
||||||
|
40=[ ] Бас-гитара |
||||||
|
41=[ ] Ударные |
||||||
|
42=[ ] Слух |
||||||
|
43=Аранжировка |
||||||
|
44=[ ] Ноты |
||||||
|
45=Импровизация |
||||||
|
46=О музыке и композиторах |
||||||
|
47=Нотная графика |
||||||
|
48=Нон-фикшн |
||||||
|
49=Agathocles [BG] |
||||||
|
50=EP |
||||||
|
51=Сборники |
||||||
|
52=Live |
||||||
|
53=Demo |
||||||
|
54=Splits |
||||||
|
55=vimwiki |
||||||
|
56=Seminole County [US] |
||||||
|
57=Netra [FR] |
||||||
|
58=Альбомы |
||||||
|
59=Experimental Black Metal |
||||||
|
|
||||||
|
[Dir Hist New Right Panel] |
||||||
|
0=/media/2TB/Видео/Сериалы/+Воздействие (Laverage) |
||||||
|
1=/media/2TB/Видео/Сериалы/+Морская полиция. Спецотдел (NCIS)/NCIS. Season 6 |
||||||
|
2=/media/2TB/Видео/Сериалы/+Морская полиция. Спецотдел (NCIS) |
||||||
|
3=/media/2TB/Видео/Сериалы |
||||||
|
4=/media/2TB/Видео |
||||||
|
5=/ |
||||||
|
6=/home/maks/.thumbnails/normal |
||||||
|
7=/home/maks/.thumbnails |
||||||
|
8=/home/maks/.shellrc |
||||||
|
9=/home/maks/.backup/~ |
||||||
|
10=/home/maks/.backup/tmp |
||||||
|
11=/home/maks/.backup/media |
||||||
|
12=/home/maks/.backup/UNDO |
||||||
|
13=/home/maks/.backup |
||||||
|
14=/home/maks/.cache/fontconfig |
||||||
|
15=/home/maks/.cache/geeqie |
||||||
|
16=/home/maks/.cache |
||||||
|
17=/home/maks/.VirtualBox |
||||||
|
18=/home/maks/.adobe/Flash_Player/AssetCache/5JEBPJNW |
||||||
|
19=/home/maks/.adobe/Flash_Player/AssetCache |
||||||
|
20=/home/maks/.adobe/Flash_Player |
||||||
|
21=/home/maks/.adobe |
||||||
|
22=/home/maks/ДИПЛОМ ППИ |
||||||
|
23=/home/maks/ГС |
||||||
|
24=/home/maks/Ноты |
||||||
|
25=/home/maks/gm |
||||||
|
26=/home/maks/Toontrack |
||||||
|
27=/home/maks/Programs/vimwiki |
||||||
|
28=/home/maks/Native Instruments |
||||||
|
29=/home |
||||||
|
30=/home/maks/Книги |
||||||
|
31=/home/maks/Книги/[ ] CS/Программирование/OOP |
||||||
|
32=/home/maks/Книги/[ ] CS/Программирование/Алгоритмы и теории |
||||||
|
33=/home/maks/Книги/[ ] CS/Программирование/Практика функционального программирования |
||||||
|
34=/home/maks/Книги/[ ] CS/Unix,Unix-like |
||||||
|
35=/home/maks/Книги/[ ] CS/Windows |
||||||
|
36=/home/maks/Книги/[ ] CS/Сети |
||||||
|
37=/home/maks/Книги/[ ] CS/Телефония |
||||||
|
38=/home/maks/Книги/[ ] CS/Языки программирования |
||||||
|
39=/home/maks/Книги/[ ] CS |
||||||
|
40=/home/maks/Книги/[ ] CS/Программирование/Функциональное и логическое программирование/Харрисон |
||||||
|
41=/home/maks/Книги/[ ] CS/Программирование/Функциональное и логическое программирование |
||||||
|
42=/home/maks/Книги/[ ] CS/Программирование |
||||||
|
43=/media/2TB/Music/new |
||||||
|
44=/media/2TB/Music |
||||||
|
45=/media/2TB |
||||||
|
46=/media |
||||||
|
47=/home/maks/Downloads/TORRENTS |
||||||
|
48=/home/maks/Downloads |
||||||
|
49=/home/maks/Programs |
||||||
|
50=/home/maks/Programs/Projects/Admin/Windows |
||||||
|
51=/home/maks/Programs/Projects/Admin |
||||||
|
52=/home/maks/Programs/Projects/Bash/2gisUpdater/updates |
||||||
|
53=/home/maks/Programs/Projects/Bash/2gisUpdater |
||||||
|
54=/home/maks/Programs/Projects/Bash |
||||||
|
55=/home/maks/Programs/Projects/CL |
||||||
|
56=/home/maks/Programs/Projects |
||||||
|
57=/home/maks/Programs/Projects/Perl |
||||||
|
58=/home/maks/Programs/Projects/Perl/2gisUpdater |
||||||
|
59=/home/maks |
||||||
|
|
||||||
|
[cmdline] |
||||||
|
0=z lirika.pdf |
||||||
|
1=z Вахромеев\ -\ Элементарная\ теория\ музыки.pdf |
||||||
|
2=z Famous_Blues_Bass_Lines.pdf |
||||||
|
3=z \[\ \]\ Этингер\ М.\ Раннеклассическая\ гармония.pdf |
||||||
|
4=z \[\ \]\ Шредингер\ Эрвин\ -\ Мой\ взгляд\ на\ мир-2009.pdf |
||||||
|
5=z \[\ \]\ Харт\ Ниббриг\ К.Л.\ Эстетика\ смерти\ \(Studia\ Europaea\).\ 2005.pdf |
||||||
|
6=z \[\ \]\ Теплов\ Б.М.\ Психология\ музыкальных\ способностей.pdf |
||||||
|
7=z \[\ \]\ Способин\ И.В.\ -\ Элементарная\ теория\ музыки\ \(Кифара,\ 1996\).pdf |
||||||
|
8=z \[\ \]\ Святитель\ Николай\ Сербский\ -\ Во\ что\ мы\ верим.\ Объяснение\ Символа\ веры\ -\ 2007.pdf |
||||||
|
9=z \[\ \]\ Рескин\ Д.-Лекции\ об\ искусстве\(Ars\ longa\)-2006.pdf |
||||||
|
10=z \[\ \]\ Плацебо\ и\ терапия.pdf |
||||||
|
11=z \[\ \]\ Нотбом\ Э.\ -\ 10\ вещей,\ о\ которых\ хотел\ бы\ рассказать\ вам\ ребенок\ с\ аутизмом\ -\ 2012.djvu |
||||||
|
12=z \[\ \]\ Н.Агафонников\ -\ Симфоническая\ партитура.\ \(1981\).djvu |
||||||
|
13=z \[\ \]\ Маритен.Ж.Знание.и.мудрость.1999.pdf |
||||||
|
14=z \[\ \]\ Лорка\ Ф.Г.\ Об\ искусстве.\ 1971.djvu |
||||||
|
15=z \[\ \]\ Гусев\ Д.\ Краткий\ курс\ логики\ Искусство\ правильного\ мышления.pdf |
||||||
|
16=z \[\ \]\ Гончаренко\ Н.\ В.\ -\ Гений\ в\ искусстве\ и\ науке\ -\ 1991.djvu |
||||||
|
17=z \[\ \]\ Беньямин.В.1996.Произведение.искусства.pdf |
||||||
|
18=z \[\ \]\ Бадью\ Ален\ -\ Этика\ \ Очерк\ о\ сознании\ Зла\(Критич.б-ка\)-2006.pdf |
||||||
|
19=z \[\ \]\ Авва\ Евагрий\ Понтийский\ -\ О\ помыслах\ -\ 2012.pdf |
||||||
|
20=z \[\ \]\ Volkonsky.djvu |
||||||
|
21=z \[\ \]\ Stepanov.pdf |
||||||
|
22=z \[\ \]\ Opit_prinuditelnoi_trezvosti.pdf |
||||||
|
23=z \!\ Буклет\ тревожных\ времен.pdf |
||||||
|
24=z \[\ \]\ Street-Fighting_Mathematics.pdf |
||||||
|
25=z Руссинович\ М.,\ Маргозис\ А.\ -\ Утилиты\ Sysinternals.\ Справочник\ администратора\ -\ 2012.pdf |
||||||
|
26=z Полное\ Руководство\ по\ Терминальным\ Службам\ Windows\ Server\ 2003.pdf |
||||||
|
27=z Джесси\ Торес\ -\ Скрипты\ для\ администратора\ Windows.djvu |
||||||
|
28=z windows-command-line-administration.pdf |
||||||
|
29=z Batch-File-Programming.pdf |
||||||
|
30=z \!stanek.pdf |
||||||
|
31=z command-line.pdf |
||||||
|
32=z bashguide.pdf |
||||||
|
33=z Fokkinga\ M.M.\ -\ A\ Gentle\ Introduction\ to\ Category\ Theory\ -\ 1994.pdf |
||||||
|
34=z Букур\ Ион,\ Деляну\ Аристид\ -\ Введение\ в\ теорию\ категорий\ и\ функторов.djvu |
||||||
|
35=z \[\ \]\ Practical\ Vim\ V413HAV.pdf |
||||||
|
36=z Asterisk\ -\ будущее\ телефонии,\ OReilly,\ Rus,\ 2008.pdf |
||||||
|
37=z \[\ \]\ \!\ Демпси\ Э.\ -\ Стили,\ школы,\ направления.\ Путеводитель\ по\ современному\ искусству\ -\ 2008.djvu |
||||||
|
38=z \[\ \]\ Шенберг.Стиль\ и\ мысль_1.pdf |
||||||
|
39=z \[\ \]\ Цвет,\ смысл,\ сходство.djvu |
||||||
|
40=z \[\ \]\ Калмыкова\ В.\ -\ Шедевры\ мировой\ живописи.\ Венецианская\ живопись\ XV-XVI\ веков.\(Шедевры\ мировой\ живописи\)-2008.pdf |
||||||
|
41=z \[\ \]\ Джаз.\ Притворись\ его\ знатоком.djvu |
||||||
|
42=z ITIL\ -\ основа\ концепции\ управления\ ИТ-сервисами.pdf |
||||||
|
43=z \!\ book.34-2.pdf |
||||||
|
44=z kurant.pdf |
||||||
|
45=z Тоффлер\ Э.\ -\ Шок\ будущего\ -\ 2002.pdf |
||||||
|
46=z 1.doc |
||||||
|
47=z Лифатов\ С.А.\ \(составитель\)\ -\ Фрейд.\ Новые\ иллюстрации\ -\ 1991.pdf |
||||||
|
48=z \[X\]\ Batch-File-Programming.pdf |
||||||
|
49=z intro2fp-20090518.pdf |
||||||
|
50=z Linux_NTFS.pdf |
||||||
|
51=z hdd.pdf |
||||||
|
52=z issue20-ru.pdf |
||||||
|
53=z issue37_ru.pdf |
||||||
|
54=z linux_commands_list.pdf |
||||||
|
55=z ps.pdf |
||||||
|
56=z vi.pdf |
||||||
|
57=z vim-UM.pdf |
||||||
|
58=:q |
||||||
|
59= |
||||||
|
|
||||||
|
[Dir Hist New Left Panel] |
||||||
|
0=/media/MEDIA |
||||||
|
1=/media |
||||||
|
2=/ |
||||||
|
3=/home/maks/Downloads/Video |
||||||
|
4=/home/maks/Downloads/Vim |
||||||
|
5=/home/maks/Downloads/mtr |
||||||
|
6=/home/maks/MUSIC_DONE |
||||||
|
7=/home/maks/Native Instruments |
||||||
|
8=/home/maks/Programs/Games |
||||||
|
9=/home/maks/Programs/Projects/Admin/Windows |
||||||
|
10=/home/maks/Programs/Projects/Admin |
||||||
|
11=/home/maks/Programs/Projects/Bash/2gisUpdater/updates |
||||||
|
12=/home/maks/Programs/Projects/Bash/2gisUpdater |
||||||
|
13=/home/maks/Programs/Projects/Bash |
||||||
|
14=/home/maks/Programs/Projects/CL |
||||||
|
15=/home/maks/Programs/Projects/Perl |
||||||
|
16=/home/maks/Programs/Projects/Rebol |
||||||
|
17=/home/maks/Programs/Projects/Scheme |
||||||
|
18=/home/maks/Programs/Projects/Tcl |
||||||
|
19=/home/maks/Programs/Projects |
||||||
|
20=/home/maks/Programs/graphviz-2.30.1 |
||||||
|
21=/home/maks/Programs/pkg |
||||||
|
22=/home/maks/Programs/pleac |
||||||
|
23=/home/maks/Programs/vimwiki |
||||||
|
24=/home/maks/Programs/Разработка/Bash/Books |
||||||
|
25=/home/maks/Programs/Разработка/Bash/Readscheme |
||||||
|
26=/home/maks/Programs/Разработка/Bash/Vepss |
||||||
|
27=/home/maks/Programs/Разработка/Bash/hash |
||||||
|
28=/home/maks/Programs/Разработка/Bash/logcleaner |
||||||
|
29=/home/maks/Programs/Разработка/Bash |
||||||
|
30=/home/maks/Programs/Разработка/Prolog/Other |
||||||
|
31=/home/maks/Programs/Разработка/Prolog/Wishlist |
||||||
|
32=/home/maks/Programs/Разработка/Prolog/Братко/Глава 01 |
||||||
|
33=/home/maks/Programs/Разработка/Prolog/Братко |
||||||
|
34=/home/maks/Programs/Разработка/Prolog/ППИ-ИИ |
||||||
|
35=/home/maks/Programs/Разработка/Prolog |
||||||
|
36=/home/maks/Programs/Разработка/Tcl |
||||||
|
37=/home/maks/Programs/Разработка |
||||||
|
38=/home/maks/Programs |
||||||
|
39=/home/maks/REAPER Media |
||||||
|
40=/home/maks/Toontrack/Superior2 |
||||||
|
41=/home/maks/Toontrack |
||||||
|
42=/home/maks/cygwin |
||||||
|
43=/home/maks/gm |
||||||
|
44=/home/maks/.links |
||||||
|
45=/home/maks/.gt5-diffs |
||||||
|
46=/home/maks/.fontconfig |
||||||
|
47=/home/maks/.easytag |
||||||
|
48=/home/maks/.dbus/session-bus |
||||||
|
49=/home/maks/.dbus |
||||||
|
50=/home/maks/.config |
||||||
|
51=/home/maks/Downloads/TORRENTS/Washington - Programming Languages |
||||||
|
52=/home/maks/Downloads/Docs |
||||||
|
53=/home/maks/Downloads |
||||||
|
54=/home/maks/Downloads/TORRENTS |
||||||
|
55=/home/maks/.shellrc |
||||||
|
56=/home/maks/Programs/Projects/Bash/installrc |
||||||
|
57=/home |
||||||
|
58=/home/maks/.kde |
||||||
|
59=/home/maks |
||||||
|
|
||||||
|
[input-def] |
||||||
|
0=* |
||||||
|
|
||||||
|
[input2] |
||||||
|
0=/home/maks/Книги/[ ] _В ПЕРВУЮ ОЧЕРЕДЬ_/ |
||||||
|
1=/home/maks/Книги/[ ] CS/Unix,Unix-like/Shell/ |
||||||
|
2=/home/maks/Книги/[ ] CS/Vim/Книги/ |
||||||
|
3=/home/maks/Книги/[ ] CS/Языки программирования/OCaml/ |
||||||
|
4=Merzbow [JP] |
||||||
|
5=/home/maks/Downloads/wineasio/ |
||||||
|
6=/media/2TB/Видео/Фильмы/ |
||||||
|
7=/media/FLASH/ |
||||||
|
8=Iron Maiden |
||||||
|
9=/media/2TB/Музыка/Goregrind/Agathocles [BG]/Альбомы/ |
||||||
|
10=/media/2TB/Музыка/Goregrind/Agathocles [BG]/EP/ |
||||||
|
11=/media/2TB/Музыка/Goregrind/Agathocles [BG]/ |
||||||
|
12=/media/2TB/Музыка/Goregrind/Agathocles [BG]/Сборники/ |
||||||
|
13=/media/2TB/Музыка/Goregrind/Agathocles [BG]/Live/ |
||||||
|
14=/media/2TB/Музыка/Goregrind/Agathocles [BG]/Demo/ |
||||||
|
15=1988 - Cabbalic Gnosticism |
||||||
|
16=1997 - Live & Noisy |
||||||
|
17=2003 - Alive & Mincing |
||||||
|
18=2007 - Senseless Trip |
||||||
|
19=2009 - Reds At The Mountains Of Death |
||||||
|
20=2010 - Abrir Las Puertas |
||||||
|
21=2010 - Matadores Del Libertad |
||||||
|
22=2010 - Peel Sessions 1997 |
||||||
|
23=2011 - Full On In Nippon |
||||||
|
24=cover 1.jpg |
||||||
|
25=e.jpg |
||||||
|
26=/media/2TB/Музыка/Goregrind/Agathocles [BG]/Splits |
||||||
|
27=/home/maks/Programs/vimwiki/ |
||||||
|
28=/media/2TB/Music/new |
||||||
|
29=/media/2TB/Музыка/Rapcore/Seminole County [US]/Альбомы/ |
||||||
|
30=2005 - Seminole County |
||||||
|
31=../cover.jpg |
||||||
|
32=/media/2TB/Видео/Фильмы |
||||||
|
33=[ ] 1915 - Его выздоровление (His Regeneration, покупатель в эпизоде).avi |
||||||
|
34=[X] Пустой дом [5+] |
||||||
|
35=[X] 2010 - Человек-волк [5].avi |
||||||
|
36=[X] 2001 - Однажды ночью [5].mp4 |
||||||
|
37=[X] 1999 - Матрица.avi |
||||||
|
38=[X] 1997 - Адвокат дьявола [5].avi |
||||||
|
39=[X] 2001 - Мой брат Том [5].avi |
||||||
|
40=[X] 1986 - Перекресток [5+].avi |
||||||
|
41=[X] 2004 - Пустой дом [5+] |
||||||
|
42=/home/maks/Книги/[ ] CS/Языки программирования/Lisp/Scheme/ |
||||||
|
43=/home/maks/ |
||||||
|
44=/home/maks/Книги/[ ] CS/ITIL/ |
||||||
|
45=/media/MEDIA/Книги/[ ] Математика/ |
||||||
|
46=/home/maks/Книги/[ ] CS/Программирование/ |
||||||
|
47=[X] Batch-File-Programming.pdf |
||||||
|
48=[X] Premkumar S. - Batch file programming.pdf |
||||||
|
49=/media/2TB/Music/new/ |
||||||
|
50=2010 - Mélancolie urbaine |
||||||
|
51=2012 - Sørbyen |
||||||
|
52=/media/2TB/Музыка/Post-Black Metal/Netra [FR]/Альбомы/ |
||||||
|
53=/media/2TB/Музыка/Experimental Black Metal/ |
||||||
|
54=2013 - Antidote (Limited Digipack Edition) |
||||||
|
55=2013 - Antiadore (Limited Digipack Edition) |
||||||
|
56=/media/2TB/Music/ |
||||||
|
57=/media/2TB/Музыка/Gothic Metal/Lacrimas Profundere [DE]/Альбомы/ |
||||||
|
58=/home/maks/.shellrc/config/soft/mc/ |
||||||
|
59=mc_new |
@ -0,0 +1,5 @@ |
|||||||
|
ENTRY "/home/maks/Downloads/TORRENTS" URL "/home/maks/Downloads/TORRENTS" |
||||||
|
ENTRY "/media/2TB/Музыка" URL "/media/2TB/Музыка" |
||||||
|
ENTRY "/media/2TB/Music/new" URL "/media/2TB/Music/new" |
||||||
|
ENTRY "/home/maks/Книги" URL "/home/maks/Книги" |
||||||
|
ENTRY "/home/maks/.shellrc/config/soft/vim/vim/bundle" URL "/home/maks/.shellrc/config/soft/vim/vim/bundle" |
@ -0,0 +1,194 @@ |
|||||||
|
|
||||||
|
[Midnight-Commander] |
||||||
|
show_backups=1 |
||||||
|
show_dot_files=1 |
||||||
|
verbose=1 |
||||||
|
mark_moves_down=1 |
||||||
|
pause_after_run=1 |
||||||
|
shell_patterns=1 |
||||||
|
auto_save_setup=1 |
||||||
|
auto_menu=0 |
||||||
|
use_internal_view=1 |
||||||
|
use_internal_edit=0 |
||||||
|
clear_before_exec=1 |
||||||
|
mix_all_files=0 |
||||||
|
fast_reload=0 |
||||||
|
fast_reload_msg_shown=0 |
||||||
|
confirm_delete=1 |
||||||
|
confirm_overwrite=1 |
||||||
|
confirm_execute=0 |
||||||
|
confirm_exit=1 |
||||||
|
confirm_directory_hotlist_delete=1 |
||||||
|
safe_delete=0 |
||||||
|
mouse_repeat_rate=100 |
||||||
|
double_click_speed=250 |
||||||
|
use_8th_bit_as_meta=0 |
||||||
|
confirm_view_dir=0 |
||||||
|
mouse_move_pages=1 |
||||||
|
mouse_move_pages_viewer=1 |
||||||
|
mouse_close_dialog=0 |
||||||
|
fast_refresh=0 |
||||||
|
navigate_with_arrows=1 |
||||||
|
drop_menus=0 |
||||||
|
wrap_mode=1 |
||||||
|
old_esc_mode=0 |
||||||
|
cd_symlinks=1 |
||||||
|
show_all_if_ambiguous=0 |
||||||
|
max_dirt_limit=10 |
||||||
|
torben_fj_mode=0 |
||||||
|
use_file_to_guess_type=1 |
||||||
|
alternate_plus_minus=0 |
||||||
|
only_leading_plus_minus=1 |
||||||
|
show_output_starts_shell=0 |
||||||
|
panel_scroll_pages=1 |
||||||
|
xtree_mode=0 |
||||||
|
num_history_items_recorded=60 |
||||||
|
file_op_compute_totals=1 |
||||||
|
skip_check_codeset=0 |
||||||
|
vfs_timeout=60 |
||||||
|
ftpfs_directory_timeout=900 |
||||||
|
use_netrc=1 |
||||||
|
ftpfs_retry_seconds=30 |
||||||
|
ftpfs_always_use_proxy=0 |
||||||
|
ftpfs_use_passive_connections=1 |
||||||
|
ftpfs_use_unix_list_options=1 |
||||||
|
ftpfs_first_cd_then_ls=1 |
||||||
|
fish_directory_timeout=900 |
||||||
|
editor_word_wrap_line_length=72 |
||||||
|
editor_key_emulation=0 |
||||||
|
editor_tab_spacing=8 |
||||||
|
editor_fill_tabs_with_spaces=0 |
||||||
|
editor_return_does_auto_indent=1 |
||||||
|
editor_backspace_through_tabs=0 |
||||||
|
editor_fake_half_tabs=1 |
||||||
|
editor_option_save_mode=0 |
||||||
|
editor_option_save_position=1 |
||||||
|
editor_option_auto_para_formatting=0 |
||||||
|
editor_option_typewriter_wrap=0 |
||||||
|
editor_edit_confirm_save=1 |
||||||
|
editor_syntax_highlighting=1 |
||||||
|
editor_persistent_selections=1 |
||||||
|
editor_visible_tabs=1 |
||||||
|
editor_visible_spaces=1 |
||||||
|
editor_line_state=0 |
||||||
|
editor_simple_statusbar=0 |
||||||
|
nice_rotating_dash=1 |
||||||
|
mcview_remember_file_position=0 |
||||||
|
auto_fill_mkdir_name=0 |
||||||
|
editor_backup_extension=~ |
||||||
|
|
||||||
|
kilobyte_si=0 |
||||||
|
confirm_history_cleanup=1 |
||||||
|
ftpfs_use_passive_connections_over_proxy=0 |
||||||
|
editor_cursor_beyond_eol=0 |
||||||
|
editor_check_new_line=0 |
||||||
|
editor_show_right_margin=0 |
||||||
|
reverse_files_only=1 |
||||||
|
copymove_persistent_attr=1 |
||||||
|
select_flags=6 |
||||||
|
mcview_eof= |
||||||
|
skin=gotar |
||||||
|
keymap=mc.keymap |
||||||
|
auto_save_setup_panels=1 |
||||||
|
|
||||||
|
filepos_max_saved_entries=1024 |
||||||
|
|
||||||
|
quick_search_case_sensitive=2 |
||||||
|
|
||||||
|
old_esc_mode_timeout=1000000 |
||||||
|
classic_progressbar=1 |
||||||
|
scroll_pages=1 |
||||||
|
filetype_mode=1 |
||||||
|
permission_mode=0 |
||||||
|
ignore_ftp_chattr_errors=true |
||||||
|
|
||||||
|
preallocate_space=0 |
||||||
|
editor_group_undo=0 |
||||||
|
|
||||||
|
editor_cursor_after_inserted_block=0 |
||||||
|
editor_ask_filename_before_edit=0 |
||||||
|
editor_filesize_threshold=64M |
||||||
|
|
||||||
|
horizontal_split=0 |
||||||
|
|
||||||
|
[Layout] |
||||||
|
message_visible=0 |
||||||
|
keybar_visible=0 |
||||||
|
xterm_title=1 |
||||||
|
output_lines=0 |
||||||
|
command_prompt=1 |
||||||
|
menubar_visible=0 |
||||||
|
show_mini_info=1 |
||||||
|
permission_mode=1 |
||||||
|
filetype_mode=1 |
||||||
|
free_space=1 |
||||||
|
|
||||||
|
classic_progressbar=true |
||||||
|
|
||||||
|
horizontal_split=0 |
||||||
|
vertical_equal=1 |
||||||
|
left_panel_size=85 |
||||||
|
horizontal_equal=1 |
||||||
|
top_panel_size=87 |
||||||
|
|
||||||
|
equal_split=1 |
||||||
|
first_panel_size=87 |
||||||
|
|
||||||
|
[Misc] |
||||||
|
ftp_proxy_host=gate |
||||||
|
find_ignore_dirs= |
||||||
|
ftpfs_password=anonymous@ |
||||||
|
display_codepage=UTF-8 |
||||||
|
source_codepage=UTF-8 |
||||||
|
|
||||||
|
timeformat_recent=%b %e %H:%M |
||||||
|
timeformat_old=%b %e %Y |
||||||
|
autodetect_codeset= |
||||||
|
|
||||||
|
clipboard_store= |
||||||
|
clipboard_paste= |
||||||
|
|
||||||
|
[Colors] |
||||||
|
;base_color=lightgray,black:normal=lightgray,black:selected=black,cyan:marked=yellow,black:markselect=yellow,cyan:errors=red,white:menu=white,cyan:reverse=black,lightgray:dnormal=black,lightgray:dfocus=black,cyan:dhotnormal=yellow,lightgray:dhotfocus=yellow,cyan:viewunderline=brightred,blue:menuhot=yellow,cyan:menusel=lightgrey,black:menuhotsel=yellow,black:helpnormal=black,lightgray:helpitalic=red,lightgray:helpbold=yellow,lightgray:helplink=black,cyan:helpslink=yellow,black:gauge=white,black:input=black,cyan:directory=white,black:executable=green,black:link=lightred,black:stalelink=brightred,black:device=brightmagenta,black:core=red,black:special=black,blue:editnormal=lightgray,black:editbold=yellow,black:editmarked=black,cyan:errdhotnormal=red,white:errdhotfocus=yellow,lightgray:archive=brightmagenta |
||||||
|
xterm= |
||||||
|
color_terminals= |
||||||
|
|
||||||
|
rxvt-256color= |
||||||
|
|
||||||
|
linux= |
||||||
|
|
||||||
|
base_color= |
||||||
|
|
||||||
|
rxvt-unicode= |
||||||
|
|
||||||
|
xterm-256color= |
||||||
|
|
||||||
|
[HotlistConfig] |
||||||
|
expanded_view_of_groups=0 |
||||||
|
|
||||||
|
[Panels] |
||||||
|
kilobyte_si=false |
||||||
|
mix_all_files=false |
||||||
|
show_backups=true |
||||||
|
show_dot_files=true |
||||||
|
fast_reload=false |
||||||
|
fast_reload_msg_shown=false |
||||||
|
mark_moves_down=true |
||||||
|
reverse_files_only=true |
||||||
|
auto_save_setup_panels=true |
||||||
|
navigate_with_arrows=true |
||||||
|
panel_scroll_pages=true |
||||||
|
mouse_move_pages=true |
||||||
|
filetype_mode=true |
||||||
|
permission_mode=false |
||||||
|
quick_search_mode=2 |
||||||
|
|
||||||
|
simple_swap=false |
||||||
|
|
||||||
|
show_mini_info=true |
||||||
|
torben_fj_mode=false |
||||||
|
|
||||||
|
[Panelize] |
||||||
|
îÁÊÔÉ ËÏÒÒÅËÔÕÒÙ, ÏÔ×ÅÒÇÎÕÔÙÅ ËÏÍÁÎÄÏÊ patch=find . -name *.rej -print |
||||||
|
îÁÊÔÉ ÏÒÉÇÉÎÁÌÙ (*.orig) ÐÏÓÌÅ ËÏÍÁÎÄÙ patch=find . -name *.orig -print |
||||||
|
îÁÊÔÉ ÐÒÏÇÒÁÍÍÙ Ó ÕÓÔÁÎÏ×ÌÅÎÎÙÍÉ SUID/SGID ÂÉÔÁÍÉ=find . ( ( -perm -04000 -a -perm +011 ) -o ( -perm -02000 -a -perm +01 ) ) -print |
@ -0,0 +1,742 @@ |
|||||||
|
# Midnight Commander 3.0 extension file |
||||||
|
# Warning: Structure of this file has changed completely with version 3.0 |
||||||
|
# |
||||||
|
# All lines starting with # or empty lines are thrown away. |
||||||
|
# Lines starting in the first column should have following format: |
||||||
|
# |
||||||
|
# keyword/descNL, i.e. everything after keyword/ until new line is desc |
||||||
|
# |
||||||
|
# keyword can be: |
||||||
|
# |
||||||
|
# shell (desc is, when starting with a dot, any extension (no wildcars), |
||||||
|
# i.e. matches all the files *desc . Example: .tar matches *.tar; |
||||||
|
# if it doesn't start with a dot, it matches only a file of that name) |
||||||
|
# |
||||||
|
# shell/i (desc is, when starting with a dot, any extension (no wildcars), |
||||||
|
# The same as shell but with case insensitive. |
||||||
|
# |
||||||
|
# regex (desc is an extended regular expression) |
||||||
|
# Please note that we are using the GNU regex library and thus |
||||||
|
# \| matches the literal | and | has special meaning (or) and |
||||||
|
# () have special meaning and \( \) stand for literal ( ). |
||||||
|
# |
||||||
|
# regex/i (desc is an extended regular expression) |
||||||
|
# The same as regex but with case insensitive. |
||||||
|
# |
||||||
|
# type (file matches this if `file %f` matches regular expression desc |
||||||
|
# (the filename: part from `file %f` is removed)) |
||||||
|
# |
||||||
|
# type/i (file matches this if `file %f` matches regular expression desc) |
||||||
|
# The same as type but with case insensitive. |
||||||
|
# |
||||||
|
# directory (matches any directory matching regular expression desc) |
||||||
|
# |
||||||
|
# include (matches an include directive) |
||||||
|
# |
||||||
|
# default (matches any file no matter what desc is) |
||||||
|
# |
||||||
|
# Other lines should start with a space or tab and should be in the format: |
||||||
|
# |
||||||
|
# keyword=commandNL (with no spaces around =), where keyword should be: |
||||||
|
# |
||||||
|
# Open (if the user presses Enter or doubleclicks it), |
||||||
|
# |
||||||
|
# View (F3), Edit (F4) |
||||||
|
# |
||||||
|
# Include is the keyword used to add any further entries from an include/ |
||||||
|
# section |
||||||
|
# |
||||||
|
# command is any one-line shell command, with the following substitutions: |
||||||
|
# |
||||||
|
# %% -> % character |
||||||
|
# %p -> name of the current file (without path, but pwd is its path). |
||||||
|
# Also provided to external application as MC_EXT_BASENAME |
||||||
|
# global variable |
||||||
|
# %f -> name of the current file. Unlike %p, if file is located on a |
||||||
|
# non-local virtual filesystem, i.e. either tarfs or ftpfs, |
||||||
|
# then the file will be temporarily copied into a local directory |
||||||
|
# and %f will be the full path to this local temporal file. |
||||||
|
# If you don't want to get a local copy and want to get the |
||||||
|
# virtual fs path (like /#ftp:ftp.cvut.cz/pub/hungry/xword), then |
||||||
|
# use %d/%p instead of %f. |
||||||
|
# Also provided to external application as MC_EXT_FILENAME |
||||||
|
# global variable |
||||||
|
# %d -> name of the current directory (pwd, without trailing slash) |
||||||
|
# Also provided to external application as MC_EXT_CURRENTDIR |
||||||
|
# global variable |
||||||
|
# %s -> "selected files", i.e. space separated list of tagged files if any |
||||||
|
# or name of the current file. |
||||||
|
# Also provided to external application as MC_EXT_SELECTED |
||||||
|
# global variable |
||||||
|
# %t -> list of tagged files |
||||||
|
# Also provided to external application as MC_EXT_ONLYTAGGED |
||||||
|
# global variable |
||||||
|
# %u -> list of tagged files (they'll be untaged after the command) |
||||||
|
# |
||||||
|
# (If these 6 letters are in uppercase, they refer to the other panel. |
||||||
|
# But you shouldn't have to use it in this file.) |
||||||
|
# |
||||||
|
# |
||||||
|
# %cd -> the rest is a path mc should change into (cd won't work, since it's |
||||||
|
# a child process). %cd handles even vfs names. |
||||||
|
# |
||||||
|
# %view -> the command you type will be piped into mc's internal file viewer |
||||||
|
# if you type only the %view and no command, viewer will load %f file |
||||||
|
# instead (i.e. no piping, so it is different to %view cat %f) |
||||||
|
# %view may be directly followed by {} with a list of any of |
||||||
|
# ascii (Ascii mode), hex (Hex mode), nroff (color highlighting for |
||||||
|
# text using backspace for bold and underscore) and unform |
||||||
|
# (no highlighting for nroff sequences) separated by commas. |
||||||
|
# |
||||||
|
# %var -> You use it like this: %var{VAR:default}. This macro will expand |
||||||
|
# to the value of the VAR variable in the environment if it's set |
||||||
|
# otherwise the value in default will be used. This is similar to |
||||||
|
# the Bourne shell ${VAR-default} construct. |
||||||
|
# |
||||||
|
# Rules are applied from top to bottom, thus the order is important. |
||||||
|
# If some actions are missing, search continues as if this target didn't |
||||||
|
# match (i.e. if a file matches the first and second entry and View action |
||||||
|
# is missing in the first one, then on pressing F3 the View action from |
||||||
|
# the second entry will be used. default should catch all the actions. |
||||||
|
# |
||||||
|
# Any new entries you develop for you are always welcome if they are |
||||||
|
# useful on more than one system. You can post your modifications |
||||||
|
# as tickets at www.midnight-commander.org |
||||||
|
|
||||||
|
|
||||||
|
### Changes ### |
||||||
|
# |
||||||
|
# Reorganization: 2012-03-07 Slava Zanko <slavazanko@gmail.com> |
||||||
|
|
||||||
|
|
||||||
|
### GIT Repo ### |
||||||
|
# gitfs changeset |
||||||
|
regex/^\[git\] |
||||||
|
Open=%cd %p/changesetfs:// |
||||||
|
View=%cd %p/patchsetfs:// |
||||||
|
|
||||||
|
### Archives ### |
||||||
|
|
||||||
|
# .tgz, .tpz, .tar.gz, .tar.z, .tar.Z, .ipk, .gem |
||||||
|
regex/\.t([gp]?z|ar\.g?[zZ])$|\.ipk$|\.gem$ |
||||||
|
Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.gz |
||||||
|
|
||||||
|
shell/.tar.bz |
||||||
|
# Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.bzip |
||||||
|
|
||||||
|
regex/\.t(ar\.bz2|bz2?|b2)$ |
||||||
|
Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.bzip2 |
||||||
|
|
||||||
|
# .tar.lzma, .tlz |
||||||
|
regex/\.t(ar\.lzma|lz)$ |
||||||
|
Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.lzma |
||||||
|
|
||||||
|
# .tar.xz, .txz |
||||||
|
regex/\.t(ar\.xz|xz)$ |
||||||
|
Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.xz |
||||||
|
|
||||||
|
# .tar.F - used in QNX |
||||||
|
shell/.tar.F |
||||||
|
# Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.F |
||||||
|
|
||||||
|
# .qpr/.qpk - QNX Neutrino package installer files |
||||||
|
regex/\.qp[rk]$ |
||||||
|
Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar.qpr |
||||||
|
|
||||||
|
# tar |
||||||
|
shell/i/.tar |
||||||
|
Open=%cd %p/utar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view tar |
||||||
|
|
||||||
|
# lha |
||||||
|
type/^LHa\ .*archive |
||||||
|
Open=%cd %p/ulha:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view lha |
||||||
|
|
||||||
|
# arj |
||||||
|
regex/i/\.a(rj|[0-9][0-9])$ |
||||||
|
Open=%cd %p/uarj:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view arj |
||||||
|
|
||||||
|
# cab |
||||||
|
shell/i/.cab |
||||||
|
Open=%cd %p/ucab:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cab |
||||||
|
|
||||||
|
# ha |
||||||
|
shell/i/.ha |
||||||
|
Open=%cd %p/uha:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view ha |
||||||
|
|
||||||
|
# rar |
||||||
|
regex/i/\.r(ar|[0-9][0-9])$ |
||||||
|
Open=%cd %p/urar:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view rar |
||||||
|
|
||||||
|
# ALZip |
||||||
|
shell/i/.alz |
||||||
|
Open=%cd %p/ualz:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view alz |
||||||
|
|
||||||
|
# cpio |
||||||
|
shell/.cpio.Z |
||||||
|
Open=%cd %p/ucpio:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.z |
||||||
|
|
||||||
|
shell/.cpio.xz |
||||||
|
Open=%cd %p/ucpio:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.xz |
||||||
|
|
||||||
|
shell/.cpio.gz |
||||||
|
Open=%cd %p/ucpio:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio.gz |
||||||
|
|
||||||
|
shell/i/.cpio |
||||||
|
Open=%cd %p/ucpio:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view cpio |
||||||
|
|
||||||
|
# 7zip archives (they are not man pages) |
||||||
|
shell/i/.7z |
||||||
|
Open=%cd %p/u7z:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view 7z |
||||||
|
|
||||||
|
# patch |
||||||
|
regex/\.(diff|patch)(\.bz2)$ |
||||||
|
Open=%cd %p/patchfs:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||||
|
|
||||||
|
regex/\.(diff|patch)(\.(gz|Z))$ |
||||||
|
Open=%cd %p/patchfs:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||||
|
|
||||||
|
# ls-lR |
||||||
|
regex/(^|\.)ls-?lR(\.gz|Z|bz2)$ |
||||||
|
Open=%cd %p/lslR:// |
||||||
|
|
||||||
|
# trpm |
||||||
|
shell/.trpm |
||||||
|
Open=%cd %p/trpm:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view trpm |
||||||
|
|
||||||
|
# RPM packages (SuSE uses *.spm for source packages) |
||||||
|
regex/\.(src\.rpm|spm)$ |
||||||
|
Open=%cd %p/rpm:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view src.rpm |
||||||
|
|
||||||
|
shell/.rpm |
||||||
|
Open=%cd %p/rpm:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view rpm |
||||||
|
|
||||||
|
# deb |
||||||
|
regex/\.u?deb$ |
||||||
|
Open=%cd %p/deb:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view deb |
||||||
|
|
||||||
|
# dpkg |
||||||
|
shell/.debd |
||||||
|
Open=%cd %p/debd:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view debd |
||||||
|
|
||||||
|
# apt |
||||||
|
shell/.deba |
||||||
|
Open=%cd %p/deba:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/package.sh view deba |
||||||
|
|
||||||
|
# ISO9660 |
||||||
|
shell/i/.iso |
||||||
|
Open=%cd %p/iso9660:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view iso9660 |
||||||
|
|
||||||
|
|
||||||
|
regex/\.(diff|patch)$ |
||||||
|
Open=%cd %p/patchfs:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view cat |
||||||
|
|
||||||
|
# ar library |
||||||
|
regex/\.s?a$ |
||||||
|
Open=%cd %p/uar:// |
||||||
|
#Open=%view{ascii} ar tv %f |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view ar |
||||||
|
|
||||||
|
# gplib |
||||||
|
shell/i/.lib |
||||||
|
Open=%cd %p/ulib:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view lib |
||||||
|
|
||||||
|
|
||||||
|
# Mailboxes |
||||||
|
type/^ASCII\ mail\ text |
||||||
|
Open=%cd %p/mailfs:// |
||||||
|
|
||||||
|
|
||||||
|
### Sources ### |
||||||
|
|
||||||
|
# C/C++ |
||||||
|
regex/i/\.(c|cc|cpp)$ |
||||||
|
Include=editor |
||||||
|
|
||||||
|
# C/C++ header |
||||||
|
regex/i/\.(h|hh|hpp)$ |
||||||
|
Include=editor |
||||||
|
|
||||||
|
# Fortran |
||||||
|
shell/i/.f |
||||||
|
Include=editor |
||||||
|
|
||||||
|
# Assembler |
||||||
|
regex/i/\.(s|asm)$ |
||||||
|
Include=editor |
||||||
|
|
||||||
|
include/editor |
||||||
|
Open=%var{EDITOR:vi} %f |
||||||
|
|
||||||
|
# .so libraries |
||||||
|
regex/\.(so|so\.[0-9\.]*)$ |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view so |
||||||
|
|
||||||
|
# Object |
||||||
|
type/^ELF |
||||||
|
#Open=%var{PAGER:more} %f |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view elf |
||||||
|
|
||||||
|
### Documentation ### |
||||||
|
|
||||||
|
# Texinfo |
||||||
|
#regex/\.(te?xi|texinfo)$ |
||||||
|
|
||||||
|
# GNU Info page |
||||||
|
type/^Info\ text |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open info |
||||||
|
|
||||||
|
shell/.info |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open info |
||||||
|
|
||||||
|
# Exception: .3gp are video files not manual pages |
||||||
|
shell/i/.3gp |
||||||
|
Include=video |
||||||
|
|
||||||
|
# Manual page |
||||||
|
regex/(([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])|\.man)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open man %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man %var{PAGER:more} |
||||||
|
|
||||||
|
# Perl pod page |
||||||
|
shell/.pod |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open pod %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view pod %var{PAGER:more} |
||||||
|
|
||||||
|
# Troff with me macros. |
||||||
|
# Exception - "read.me" is not a nroff file. |
||||||
|
shell/read.me |
||||||
|
Open= |
||||||
|
View= |
||||||
|
|
||||||
|
shell/.me |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open nroff.me %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view nroff.me %var{PAGER:more} |
||||||
|
|
||||||
|
# Troff with ms macros. |
||||||
|
shell/.ms |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open nroff.ms %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view nroff.ms %var{PAGER:more} |
||||||
|
|
||||||
|
# Manual page - compressed |
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.g?[Zz]$ |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open man.gz %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.gz %var{PAGER:more} |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz$ |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open man.bz %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.bz %var{PAGER:more} |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.bz2$ |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open man.bz2 %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.bz2 %var{PAGER:more} |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.lzma$ |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open man.lzma %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.lzma %var{PAGER:more} |
||||||
|
|
||||||
|
regex/([^0-9]|^[^\.]*)\.([1-9][A-Za-z]*|[ln])\.xz$ |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open man.xz %var{PAGER:more} |
||||||
|
View=%view{ascii,nroff} /usr/libexec/mc/ext.d/text.sh view man.xz %var{PAGER:more} |
||||||
|
|
||||||
|
# CHM |
||||||
|
shell/i/.chm |
||||||
|
Open=/usr/libexec/mc/ext.d/text.sh open chm |
||||||
|
|
||||||
|
### Images ### |
||||||
|
|
||||||
|
type/^GIF |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^JPEG |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view jpeg |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PC\ bitmap |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PNG |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^JNG |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^MNG |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^TIFF |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PBM |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PGM |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^PPM |
||||||
|
Include=image |
||||||
|
|
||||||
|
type/^Netpbm |
||||||
|
Include=image |
||||||
|
|
||||||
|
shell/.xcf |
||||||
|
Open=/usr/libexec/mc/ext.d/image.sh open xcf |
||||||
|
|
||||||
|
shell/.xbm |
||||||
|
Open=/usr/libexec/mc/ext.d/image.sh open xbm |
||||||
|
|
||||||
|
shell/.xpm |
||||||
|
Include=image |
||||||
|
View=/usr/libexec/mc/ext.d/image.sh view xpm %f |
||||||
|
|
||||||
|
shell/.ico |
||||||
|
Include=image |
||||||
|
|
||||||
|
shell/i/.svg |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view svg |
||||||
|
Open=/usr/libexec/mc/ext.d/image.sh open svg |
||||||
|
|
||||||
|
include/image |
||||||
|
Open=geeqie |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/image.sh view ALL_FORMATS |
||||||
|
|
||||||
|
|
||||||
|
### Sound files ### |
||||||
|
|
||||||
|
regex/i/\.(wav|snd|voc|au|smp|aiff|snd|m4a|ape|aac|wv)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open common |
||||||
|
|
||||||
|
regex/i/\.(mod|s3m|xm|it|mtm|669|stm|ult|far)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open mod |
||||||
|
|
||||||
|
shell/i/.waw22 |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open wav22 |
||||||
|
|
||||||
|
shell/i/.mp3 |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open mp3 |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view mp3 |
||||||
|
|
||||||
|
regex/i/\.og[gax]$ |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open ogg |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view ogg |
||||||
|
|
||||||
|
regex/i/\.(spx|flac)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open common |
||||||
|
|
||||||
|
regex/i/\.(midi?|rmid?)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open midi |
||||||
|
|
||||||
|
shell/i/.wma |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open wma |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/sound.sh view wma |
||||||
|
|
||||||
|
|
||||||
|
### Play lists ### |
||||||
|
|
||||||
|
regex/i/\.(m3u|pls)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/sound.sh open playlist |
||||||
|
|
||||||
|
|
||||||
|
### Video ### |
||||||
|
|
||||||
|
shell/i/.avi |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/i/\.as[fx]$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
shell/i/.divx |
||||||
|
Include=video |
||||||
|
|
||||||
|
shell/i/.mkv |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/i/\.(mov|qt)$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/i/\.(mp4|m4v|mpe?g)$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
# MPEG-2 TS container + H.264 codec |
||||||
|
shell/i/.mts |
||||||
|
Include=video |
||||||
|
|
||||||
|
shell/i/.ts |
||||||
|
Include=video |
||||||
|
|
||||||
|
shell/i/.vob |
||||||
|
Include=video |
||||||
|
|
||||||
|
shell/i/.wmv |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/i/\.fl[icv]$ |
||||||
|
Include=video |
||||||
|
|
||||||
|
shell/i/.ogv |
||||||
|
Include=video |
||||||
|
|
||||||
|
regex/i/\.ra?m$ |
||||||
|
Open=/usr/libexec/mc/ext.d/video.sh open ram |
||||||
|
|
||||||
|
# WebM |
||||||
|
shell/i/.webm |
||||||
|
Include=video |
||||||
|
|
||||||
|
type/WebM |
||||||
|
Include=video |
||||||
|
|
||||||
|
include/video |
||||||
|
Open=vlc %p |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/video.sh view ALL_FORMATS |
||||||
|
|
||||||
|
|
||||||
|
### Documents ### |
||||||
|
|
||||||
|
# Postscript |
||||||
|
type/^PostScript |
||||||
|
Include=zathura |
||||||
|
|
||||||
|
# PDF |
||||||
|
type/^PDF |
||||||
|
Include=zathura |
||||||
|
|
||||||
|
# DjVu |
||||||
|
regex/i/\.djvu?$ |
||||||
|
Include=zathura |
||||||
|
|
||||||
|
include/zathura |
||||||
|
Open=nohup zathura -c %var{SHELLRC:~/.shellrc}/etc/soft/zathura/ -d %var{SHELLRC:~/.shellrc}/etc/soft/zathura/ -p %var{SHELLRC:~/.shellrc}/etc/soft/zathura/plugins %p &>/dev/null & |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view djvu |
||||||
|
|
||||||
|
# html |
||||||
|
regex/i/\.html?$ |
||||||
|
Open=/usr/libexec/mc/ext.d/web.sh open html |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/web.sh view html |
||||||
|
|
||||||
|
# StarOffice 5.2 |
||||||
|
shell/.sdw |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||||
|
|
||||||
|
# StarOffice 6 and OpenOffice.org formats |
||||||
|
regex/i/\.(odt|ott|sxw|stw|ods|ots|sxc|stc|odp|otp|sxi|sti|odg|otg|sxd|std|odb|odf|sxm|odm|sxg)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view odt |
||||||
|
|
||||||
|
# AbiWord |
||||||
|
shell/.abw |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open abw |
||||||
|
|
||||||
|
# Gnumeric |
||||||
|
shell/i/.gnumeric |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open gnumeric |
||||||
|
|
||||||
|
# Microsoft Word Document |
||||||
|
regex/i/\.(do[ct]|wri)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msdoc |
||||||
|
type/^Microsoft\ Word |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msdoc |
||||||
|
|
||||||
|
# RTF document |
||||||
|
shell/i/.rtf |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open msdoc |
||||||
|
|
||||||
|
# Microsoft Excel Worksheet |
||||||
|
regex/i/\.xl[sw]$ |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open msxls |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msxls |
||||||
|
type/^Microsoft\ Excel |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open msxls |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msxls |
||||||
|
|
||||||
|
regex/i/\.(ppt|pps)$ |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open msppt |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view msppt |
||||||
|
|
||||||
|
# Use OpenOffice.org to open any MS Office documents |
||||||
|
type/^Microsoft\ Office\ Document |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open ooffice |
||||||
|
|
||||||
|
# Framemaker |
||||||
|
type/^FrameMaker |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open framemaker |
||||||
|
|
||||||
|
# DVI |
||||||
|
shell/i/.dvi |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open dvi |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view dvi |
||||||
|
|
||||||
|
# TeX |
||||||
|
shell/i/.tex |
||||||
|
Include=editor |
||||||
|
|
||||||
|
# Comic Books |
||||||
|
regex/i/\.cb[zr]$ |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open comic |
||||||
|
|
||||||
|
# Epub |
||||||
|
shell/i/.epub |
||||||
|
Open=/usr/libexec/mc/ext.d/doc.sh open epub |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/doc.sh view epub |
||||||
|
|
||||||
|
|
||||||
|
### Miscellaneous ### |
||||||
|
|
||||||
|
# Compiled Java classes |
||||||
|
shell/.class |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view javaclass |
||||||
|
|
||||||
|
# Makefile |
||||||
|
regex/[Mm]akefile$ |
||||||
|
Open=make -f %f %{Enter parameters} |
||||||
|
|
||||||
|
# Imakefile |
||||||
|
shell/Imakefile |
||||||
|
Open=/usr/libexec/mc/ext.d/misc.sh open imakefile |
||||||
|
|
||||||
|
# Makefile.PL (MakeMaker) |
||||||
|
regex/^Makefile.(PL|pl)$ |
||||||
|
Open=%var{PERL:perl} %f |
||||||
|
|
||||||
|
# sqlite3.db |
||||||
|
type/^SQLite 3.x database |
||||||
|
Open=/usr/libexec/mc/ext.d/misc.sh open sqlite |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view sqlite |
||||||
|
|
||||||
|
# dbf |
||||||
|
shell/i/.dbf |
||||||
|
Open=/usr/libexec/mc/ext.d/misc.sh open dbf |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view dbf |
||||||
|
|
||||||
|
# REXX script |
||||||
|
regex/\.(rexx?|cmd)$ |
||||||
|
Open=rexx %f %{Enter parameters};echo "Press ENTER";read y |
||||||
|
|
||||||
|
# Disk images for Commodore computers (VIC20, C64, C128) |
||||||
|
shell/i/.d64 |
||||||
|
Open=%cd %p/uc1541:// |
||||||
|
View=%view{ascii} c1541 %f -list |
||||||
|
Extract=c1541 %f -extract |
||||||
|
|
||||||
|
# Glade, a user interface designer for GTK+ and GNOME |
||||||
|
shell/i/.glade |
||||||
|
Open=/usr/libexec/mc/ext.d/misc.sh open glade |
||||||
|
|
||||||
|
# Gettext Catalogs |
||||||
|
shell/.mo |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view mo |
||||||
|
|
||||||
|
# lyx |
||||||
|
shell/i/.lyx |
||||||
|
Open=/usr/libexec/mc/ext.d/misc.sh open lyx |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view lyx |
||||||
|
|
||||||
|
# torrent |
||||||
|
shell/i/.torrent |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/misc.sh view torrent |
||||||
|
|
||||||
|
### Plain compressed files ### |
||||||
|
|
||||||
|
# ace |
||||||
|
shell/i/.ace |
||||||
|
Open=%cd %p/uace:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view ace |
||||||
|
Extract=unace x %f |
||||||
|
|
||||||
|
# arc |
||||||
|
shell/i/.arc |
||||||
|
Open=%cd %p/uarc:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view arc |
||||||
|
Extract=arc x %f '*' |
||||||
|
Extract (with flags)=I=%{Enter any Arc flags:}; if test -n "$I"; then arc x $I %f; fi |
||||||
|
|
||||||
|
# zip |
||||||
|
type/i/^zip\ archive |
||||||
|
Open=%cd %p/uzip:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zip |
||||||
|
|
||||||
|
# zoo |
||||||
|
shell/i/.zoo |
||||||
|
Open=%cd %p/uzoo:// |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view zoo |
||||||
|
|
||||||
|
# gzip |
||||||
|
type/^gzip |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh view gz %var{PAGER:more} |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||||
|
|
||||||
|
regex/\.(gz|Z)$ |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||||
|
|
||||||
|
# bzip2 |
||||||
|
type/^bzip2 |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh view bzip2 %var{PAGER:more} |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||||
|
|
||||||
|
regex/\.bz2?$ |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bz2 |
||||||
|
|
||||||
|
# bzip |
||||||
|
type/^bzip |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh view bzip %var{PAGER:more} |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view bzip |
||||||
|
|
||||||
|
# compress |
||||||
|
type/^compress |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh view gz %var{PAGER:more} |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view gz |
||||||
|
|
||||||
|
# lzma |
||||||
|
regex/\.lzma$ |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh view lzma %var{PAGER:more} |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view lzma |
||||||
|
|
||||||
|
# xz |
||||||
|
regex/\.xz$ |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh view xz %var{PAGER:more} |
||||||
|
View=%view{ascii} /usr/libexec/mc/ext.d/archive.sh view xz |
||||||
|
|
||||||
|
# Parity Archive |
||||||
|
type/^Parity\ Archive\ Volume\ Set |
||||||
|
Open=/usr/libexec/mc/ext.d/archive.sh open par2 |
||||||
|
|
||||||
|
### Default ### |
||||||
|
|
||||||
|
# Default target for anything not described above |
||||||
|
default/* |
||||||
|
Open= |
||||||
|
View= |
||||||
|
|
||||||
|
|
||||||
|
### EOF ### |
@ -0,0 +1,32 @@ |
|||||||
|
|
||||||
|
[New Left Panel] |
||||||
|
display=listing |
||||||
|
reverse=0 |
||||||
|
case_sensitive=1 |
||||||
|
exec_first=0 |
||||||
|
sort_order=name |
||||||
|
list_mode=full |
||||||
|
user_format=half type name | size | perm |
||||||
|
user_status0=half type name | size | perm |
||||||
|
user_status1=half type name | size | perm |
||||||
|
user_status2=half type name | size | perm |
||||||
|
user_status3=half type name | size | perm |
||||||
|
user_mini_status=0 |
||||||
|
|
||||||
|
[New Right Panel] |
||||||
|
display=listing |
||||||
|
reverse=0 |
||||||
|
case_sensitive=1 |
||||||
|
exec_first=0 |
||||||
|
sort_order=name |
||||||
|
list_mode=full |
||||||
|
user_format=half type name | size | perm |
||||||
|
user_status0=half type name | size | perm |
||||||
|
user_status1=half type name | size | perm |
||||||
|
user_status2=half type name | size | perm |
||||||
|
user_status3=half type name | size | perm |
||||||
|
user_mini_status=0 |
||||||
|
|
||||||
|
[Dirs] |
||||||
|
other_dir=/home/maks |
||||||
|
current_is_left=1 |
@ -0,0 +1,151 @@ |
|||||||
|
[skin] |
||||||
|
description=Dark skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=─ |
||||||
|
dvert=│ |
||||||
|
dlefttop=┌ |
||||||
|
drighttop=┐ |
||||||
|
dleftbottom=└ |
||||||
|
drightbottom=┘ |
||||||
|
dtopmiddle=─ |
||||||
|
dbottommiddle=─ |
||||||
|
dleftmiddle=├ |
||||||
|
drightmiddle=┤ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;black |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;black |
||||||
|
markselect=yellow;cyan |
||||||
|
gauge=white;black |
||||||
|
input=black;cyan |
||||||
|
inputunchanged=gray;cyan |
||||||
|
inputmark=cyan;black |
||||||
|
disabled=gray;blue |
||||||
|
reverse=black;lightgray |
||||||
|
commandlinemark=black;lightgray |
||||||
|
header=yellow;black |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=brightcyan;blue |
||||||
|
dfocus=blue;cyan |
||||||
|
dhotnormal=white; |
||||||
|
dhotfocus=white;cyan |
||||||
|
dtitle=white; |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=white; |
||||||
|
executable=brightmagenta; |
||||||
|
symlink=lightgray; |
||||||
|
hardlink= |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=brightblue; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=brightgreen; |
||||||
|
doc=brown; |
||||||
|
source=cyan; |
||||||
|
media=green; |
||||||
|
graph=brightcyan; |
||||||
|
database=brightred; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=lightgray;blue |
||||||
|
menuhot=white;blue |
||||||
|
menusel=black;cyan |
||||||
|
menuhotsel=white;cyan |
||||||
|
menuinactive=black;white |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;lightgray |
||||||
|
helpitalic=red;lightgray |
||||||
|
helpbold=blue;lightgray |
||||||
|
helplink=black;cyan |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=blue;lightgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;black |
||||||
|
editbold=yellow;brightgreen |
||||||
|
editmarked=black;white |
||||||
|
editwhitespace=brightblue;black |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=white;blue |
||||||
|
# editbg= |
||||||
|
editframe=gray; |
||||||
|
editframeactive=lightgray; |
||||||
|
editframedrag=red; |
||||||
|
window-state-char = ↕ |
||||||
|
window-close-char = ✕ |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=yellow;black |
||||||
|
viewunderline=brightred;black |
||||||
|
viewselected=yellow;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;green |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=red;white |
||||||
|
button=black;white |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=lightgray;blue |
||||||
|
menusel=black;cyan |
||||||
|
menutitle=lightgray;blue |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↑ |
||||||
|
sort-sign-down=↓ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = • |
||||||
|
hiddenfiles-sign-hide = ○ |
||||||
|
history-prev-item-sign = ← |
||||||
|
history-next-item-sign = → |
||||||
|
history-show-list-sign = ↓ |
||||||
|
filename-scroll-left-char = « |
||||||
|
filename-scroll-right-char = » |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
||||||
|
|
@ -0,0 +1,150 @@ |
|||||||
|
[skin] |
||||||
|
description=Dark Far skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;black |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;black |
||||||
|
markselect=yellow;cyan |
||||||
|
gauge=white;black |
||||||
|
input=black;cyan |
||||||
|
inputunchanged=gray;cyan |
||||||
|
inputmark=cyan;black |
||||||
|
disabled=gray;blue |
||||||
|
reverse=black;lightgray |
||||||
|
commandlinemark=black;lightgray |
||||||
|
header=yellow;black |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=brightcyan;blue |
||||||
|
dfocus=blue;cyan |
||||||
|
dhotnormal=white; |
||||||
|
dhotfocus=white;cyan |
||||||
|
dtitle=white; |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=white; |
||||||
|
executable=brightmagenta; |
||||||
|
symlink=lightgray; |
||||||
|
hardlink= |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=brightblue; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=brightgreen; |
||||||
|
doc=brown; |
||||||
|
source=cyan; |
||||||
|
media=green; |
||||||
|
graph=brightcyan; |
||||||
|
database=brightred; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=lightgray;blue |
||||||
|
menuhot=white;blue |
||||||
|
menusel=black;cyan |
||||||
|
menuhotsel=white;cyan |
||||||
|
menuinactive=black;white |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;lightgray |
||||||
|
helpitalic=red;lightgray |
||||||
|
helpbold=blue;lightgray |
||||||
|
helplink=black;cyan |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=blue;lightgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;black |
||||||
|
editbold=yellow;brightgreen |
||||||
|
editmarked=black;white |
||||||
|
editwhitespace=brightblue;black |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=white;blue |
||||||
|
# editbg= |
||||||
|
editframe=gray; |
||||||
|
editframeactive=lightgray; |
||||||
|
editframedrag=white; |
||||||
|
window-state-char = ↕ |
||||||
|
window-close-char = × |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=yellow;black |
||||||
|
viewunderline=brightred;black |
||||||
|
viewselected=yellow;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;green |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=red;white |
||||||
|
button=black;white |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=lightgray;blue |
||||||
|
menusel=black;cyan |
||||||
|
menutitle=lightgray;blue |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↑ |
||||||
|
sort-sign-down=↓ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = • |
||||||
|
hiddenfiles-sign-hide = ○ |
||||||
|
history-prev-item-sign = ← |
||||||
|
history-next-item-sign = → |
||||||
|
history-show-list-sign = ↓ |
||||||
|
filename-scroll-left-char = « |
||||||
|
filename-scroll-right-char = » |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,138 @@ |
|||||||
|
[skin] |
||||||
|
description=Standard skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=─ |
||||||
|
dvert=│ |
||||||
|
dlefttop=┌ |
||||||
|
drighttop=┐ |
||||||
|
dleftbottom=└ |
||||||
|
drightbottom=┘ |
||||||
|
dtopmiddle=─ |
||||||
|
dbottommiddle=─ |
||||||
|
dleftmiddle=├ |
||||||
|
drightmiddle=┤ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;blue |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;blue |
||||||
|
markselect=yellow;cyan |
||||||
|
gauge=white;black |
||||||
|
input=black;cyan |
||||||
|
inputunchanged=gray;cyan |
||||||
|
inputmark=cyan;black |
||||||
|
disabled=gray;lightgray |
||||||
|
reverse=black;lightgray |
||||||
|
commandlinemark=black;lightgray |
||||||
|
header=yellow;blue |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;lightgray |
||||||
|
dfocus=black;cyan |
||||||
|
dhotnormal=blue;lightgray |
||||||
|
dhotfocus=blue;cyan |
||||||
|
dtitle=blue;lightgray |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdtitle=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=white; |
||||||
|
executable=brightgreen; |
||||||
|
symlink=lightgray; |
||||||
|
hardlink= |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=black; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=brightmagenta; |
||||||
|
doc=brown; |
||||||
|
source=cyan; |
||||||
|
media=green; |
||||||
|
graph=brightcyan; |
||||||
|
database=brightred; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=white;cyan |
||||||
|
menuhot=yellow;cyan |
||||||
|
menusel=white;black |
||||||
|
menuhotsel=yellow;black |
||||||
|
menuinactive=black;cyan |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=white;black |
||||||
|
button=black;cyan |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;cyan |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;lightgray |
||||||
|
helpitalic=red;lightgray |
||||||
|
helpbold=blue;lightgray |
||||||
|
helplink=black;cyan |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=blue;lightgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;blue |
||||||
|
editbold=yellow;brightgreen |
||||||
|
editmarked=black;cyan |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=brightblue;black |
||||||
|
# editbg=lightgray; |
||||||
|
# editframe=lightgray; |
||||||
|
editframeactive=white; |
||||||
|
editframedrag=green; |
||||||
|
window-state-char = * |
||||||
|
window-close-char = X |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=yellow;blue |
||||||
|
viewunderline=brightred;blue |
||||||
|
viewselected=yellow;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;green |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=white;cyan |
||||||
|
menusel=yellow;black |
||||||
|
menutitle=yellow;cyan |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ' |
||||||
|
sort-sign-down = , |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
filename-scroll-left-char = { |
||||||
|
filename-scroll-right-char = } |
@ -0,0 +1,137 @@ |
|||||||
|
[skin] |
||||||
|
description=Far-like skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;blue |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;blue |
||||||
|
markselect=yellow;cyan |
||||||
|
gauge=white;black |
||||||
|
input=black;cyan |
||||||
|
inputunchanged=gray;cyan |
||||||
|
inputmark=cyan;black |
||||||
|
commandlinemark=black;lightgray |
||||||
|
disabled=gray;lightgray |
||||||
|
reverse=black;lightgray |
||||||
|
header=yellow;blue |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;lightgray |
||||||
|
dfocus=black;cyan |
||||||
|
dhotnormal=blue;lightgray |
||||||
|
dhotfocus=blue;cyan |
||||||
|
dtitle=blue;lightgray |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=white; |
||||||
|
executable=brightgreen; |
||||||
|
symlink=lightgray; |
||||||
|
hardlink= |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=black; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=brightmagenta; |
||||||
|
doc=brown; |
||||||
|
source=cyan; |
||||||
|
media=green; |
||||||
|
graph=brightcyan; |
||||||
|
database=brightred; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=white;cyan |
||||||
|
menuhot=yellow;cyan |
||||||
|
menusel=white;black |
||||||
|
menuhotsel=yellow;black |
||||||
|
menuinactive=lightgray;blue |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=lightgray;blue |
||||||
|
button=lightgray;blue |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;cyan |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;lightgray |
||||||
|
helpitalic=red;lightgray |
||||||
|
helpbold=blue;lightgray |
||||||
|
helplink=black;cyan |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=blue;lightgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;blue |
||||||
|
editbold=yellow;brightgreen |
||||||
|
editmarked=black;cyan |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=brightblue;black |
||||||
|
# editbg= |
||||||
|
# editframe= |
||||||
|
editframeactive=white; |
||||||
|
editframedrag=green; |
||||||
|
window-state-char = * |
||||||
|
window-close-char = X |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=yellow;blue |
||||||
|
viewunderline=brightred;blue |
||||||
|
viewselected=yellow;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;green |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=white;cyan |
||||||
|
menusel=white;black |
||||||
|
menutitle=white;cyan |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ' |
||||||
|
sort-sign-down = , |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
filename-scroll-left-char = { |
||||||
|
filename-scroll-right-char = } |
@ -0,0 +1,156 @@ |
|||||||
|
# Please, use this skin in UTF-8 system codepage only. |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=Enhanced standart skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;blue |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;blue |
||||||
|
markselect=yellow;cyan |
||||||
|
gauge=white;black |
||||||
|
input=black;cyan |
||||||
|
inputunchanged=gray;cyan |
||||||
|
inputmark=cyan;black |
||||||
|
disabled=gray;lightgray |
||||||
|
reverse=black;lightgray |
||||||
|
commandlinemark=black;lightgray |
||||||
|
header=yellow;blue |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;lightgray |
||||||
|
dfocus=black;cyan |
||||||
|
dhotnormal=blue;lightgray |
||||||
|
dhotfocus=blue;cyan |
||||||
|
dtitle=blue;lightgray |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=white; |
||||||
|
executable=brightgreen; |
||||||
|
symlink=lightgray; |
||||||
|
hardlink= |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=black; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=brightmagenta; |
||||||
|
doc=brown; |
||||||
|
source=cyan; |
||||||
|
media=green; |
||||||
|
graph=brightcyan; |
||||||
|
database=brightred; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=white;cyan |
||||||
|
menuhot=yellow;cyan |
||||||
|
menusel=white;black |
||||||
|
menuhotsel=yellow;black |
||||||
|
menuinactive=black;cyan |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=white;black |
||||||
|
button=black;cyan |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;cyan |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;lightgray |
||||||
|
helpitalic=red;lightgray |
||||||
|
helpbold=blue;lightgray |
||||||
|
helplink=black;cyan |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=blue;lightgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;blue |
||||||
|
editbold=yellow;brightgreen |
||||||
|
editmarked=black;cyan |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=brightblue;black |
||||||
|
# editbg= |
||||||
|
# editframe= |
||||||
|
editframeactive=lightgray; |
||||||
|
editframedrag=cyan; |
||||||
|
window-state-char = ↕ |
||||||
|
window-close-char = ✕ |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=yellow;blue |
||||||
|
viewunderline=brightred;blue |
||||||
|
viewselected=yellow;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;green |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=white;cyan |
||||||
|
menusel=white;black |
||||||
|
menutitle=white;cyan |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ↓ |
||||||
|
sort-sign-down = ↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = ⋅ |
||||||
|
hiddenfiles-sign-hide = • |
||||||
|
history-prev-item-sign = « |
||||||
|
history-next-item-sign = » |
||||||
|
history-show-list-sign = ^ |
||||||
|
filename-scroll-left-char = « |
||||||
|
filename-scroll-right-char = » |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
|
@ -0,0 +1,131 @@ |
|||||||
|
[skin] |
||||||
|
description=GoTaR @PLD Linux |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=─ |
||||||
|
dvert=│ |
||||||
|
dlefttop=┌ |
||||||
|
drighttop=┐ |
||||||
|
dleftbottom=└ |
||||||
|
drightbottom=┘ |
||||||
|
dtopmiddle=─ |
||||||
|
dbottommiddle=─ |
||||||
|
dleftmiddle=├ |
||||||
|
drightmiddle=┤ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;black |
||||||
|
selected=white;blue |
||||||
|
marked=brightred; |
||||||
|
markselect=yellow; |
||||||
|
gauge=;yellow |
||||||
|
input=brightgreen; |
||||||
|
disabled=gray;blue |
||||||
|
reverse=brightgreen;blue |
||||||
|
header=brightred; |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=brightcyan;blue |
||||||
|
dfocus=brightred;black |
||||||
|
dhotnormal=brightred; |
||||||
|
dhotfocus=yellow;black |
||||||
|
dtitle=brightred; |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=brightgreen;blue |
||||||
|
errdhotnormal=yellow; |
||||||
|
errdhotfocus=yellow;blue |
||||||
|
errdtitle=yellow; |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=brightcyan; |
||||||
|
executable=brightgreen; |
||||||
|
symlink=red; |
||||||
|
hardlink= |
||||||
|
stalelink=yellow;blue |
||||||
|
device=green; |
||||||
|
special=brightblue; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=cyan; |
||||||
|
doc=brown; |
||||||
|
source=green; |
||||||
|
media=white; |
||||||
|
graph=magenta; |
||||||
|
database=; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=brightgreen;black |
||||||
|
menuhot=brightred; |
||||||
|
menusel=brightcyan;blue |
||||||
|
menuhotsel=yellow; |
||||||
|
menuinactive=lightgray; |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=lightgray;black |
||||||
|
button=white;blue |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=white;blue |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=brightred;black |
||||||
|
helpitalic=brightcyan; |
||||||
|
helpbold=brightgreen; |
||||||
|
helplink=white; |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=brightgreen; |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;black |
||||||
|
editbold=yellow;blue |
||||||
|
editmarked=brightgreen;red |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
editlinestate=brightgreen |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=brightblue;blue |
||||||
|
# editbg= |
||||||
|
# editframe= |
||||||
|
editframeactive=white; |
||||||
|
editframedrag=green; |
||||||
|
window-state-char = * |
||||||
|
window-close-char = X |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=brightred;black |
||||||
|
viewunderline=brightgreen;black |
||||||
|
viewselected=yellow;black |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
_default_=lightgray;black |
||||||
|
added=brightgreen; |
||||||
|
changedline=cyan; |
||||||
|
changednew=yellow; |
||||||
|
changed=;brown |
||||||
|
removed=;blue |
||||||
|
folder=brightblue; |
||||||
|
error=white;red |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=brightgreen;black |
||||||
|
menusel=brightcyan;blue |
||||||
|
menutitle=brightcyan;black |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
filename-scroll-left-char = { |
||||||
|
filename-scroll-right-char = } |
@ -0,0 +1,129 @@ |
|||||||
|
[skin] |
||||||
|
description=mc-4.6 skin |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=─ |
||||||
|
dvert=│ |
||||||
|
dlefttop=┌ |
||||||
|
drighttop=┐ |
||||||
|
dleftbottom=└ |
||||||
|
drightbottom=┘ |
||||||
|
dtopmiddle=─ |
||||||
|
dbottommiddle=─ |
||||||
|
dleftmiddle=├ |
||||||
|
drightmiddle=┤ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;blue |
||||||
|
selected=black;cyan |
||||||
|
marked=yellow;blue |
||||||
|
markselect=yellow;cyan |
||||||
|
gauge=white;black |
||||||
|
input=black;cyan |
||||||
|
inputunchanged=black;cyan |
||||||
|
inputmark=cyan;black |
||||||
|
disabled=gray;lightgray |
||||||
|
reverse=black;lightgray |
||||||
|
commandlinemark=black;lightgray |
||||||
|
header=yellow;blue |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;lightgray |
||||||
|
dfocus=black;cyan |
||||||
|
dhotnormal=blue;lightgray |
||||||
|
dhotfocus=blue;cyan |
||||||
|
dtitle=blue;lightgray |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdtitle=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=white; |
||||||
|
executable=brightgreen; |
||||||
|
symlink=lightgray; |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=black; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=black;cyan |
||||||
|
menuhot=yellow;cyan |
||||||
|
menusel=white;black |
||||||
|
menuhotsel=yellow;black |
||||||
|
menuinactive=gray;cyan |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=lightgray;black |
||||||
|
button=black;cyan |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;cyan |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;lightgray |
||||||
|
helpitalic=red;lightgray |
||||||
|
helpbold=blue;lightgray |
||||||
|
helplink=black;cyan |
||||||
|
helpslink=yellow;blue |
||||||
|
helptitle=blue;lightgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;blue |
||||||
|
editbold=yellow; |
||||||
|
editmarked=black;cyan |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=brightblue;black |
||||||
|
# editbg= |
||||||
|
# editframe= |
||||||
|
editframeactive=lightgray; |
||||||
|
editframedrag=cyan; |
||||||
|
window-state-char = * |
||||||
|
window-close-char = X |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=yellow;blue |
||||||
|
viewunderline=brightred;blue |
||||||
|
viewselected=yellow;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;green |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=white;cyan |
||||||
|
menusel=yellow;black |
||||||
|
menutitle=yellow;cyan |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ' |
||||||
|
sort-sign-down = , |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
filename-scroll-left-char = { |
||||||
|
filename-scroll-right-char = } |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarCon16-DefaultBG (user) |
||||||
|
256colors=false |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color7;default |
||||||
|
selected=color15;color2 |
||||||
|
marked=color11;;bold |
||||||
|
markselect=color11;color2;bold |
||||||
|
gauge=color15;color2 |
||||||
|
input=color15;color0 |
||||||
|
inputmark=color11;color2;bold |
||||||
|
inputunchanged=;color0 |
||||||
|
commandlinemark=color11;color2;bold |
||||||
|
reverse=color0;color10 |
||||||
|
header=color3 |
||||||
|
disabled=color8;color7 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color0;color7 |
||||||
|
dhotnormal=color3 |
||||||
|
dfocus=color11;color2;bold |
||||||
|
dhotfocus=color3;color2 |
||||||
|
dtitle=color11;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color15;color1 |
||||||
|
errdfocus=color11;color2;bold |
||||||
|
errdhotnormal=color13 |
||||||
|
errdhotfocus=color13;color2 |
||||||
|
errdtitle=color11;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color15;;bold |
||||||
|
executable=color10 |
||||||
|
symlink=color12 |
||||||
|
hardlink= |
||||||
|
stalelink=color9 |
||||||
|
device=color13 |
||||||
|
special=color3 |
||||||
|
core=color1 |
||||||
|
temp=color8 |
||||||
|
archive=color3 |
||||||
|
doc=color14 |
||||||
|
source=color6 |
||||||
|
media=color5 |
||||||
|
graph=color13 |
||||||
|
database=color2 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color7;default |
||||||
|
menuhot=color3 |
||||||
|
menusel=color11;color2;bold |
||||||
|
menuhotsel=color3;color2 |
||||||
|
menuinactive=color8 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color7;default |
||||||
|
menusel=color11;color2;bold |
||||||
|
menutitle=color11;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color7 |
||||||
|
hotkey=color15;color3 |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color15;color2 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color0;color7 |
||||||
|
helpitalic=color10;;bold |
||||||
|
helpbold=color5 |
||||||
|
helplink=color14 |
||||||
|
helpslink=color11;color2;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color7;default |
||||||
|
editbold=color15;;bold |
||||||
|
editmarked=color11;color2;bold |
||||||
|
editwhitespace=color12;color4 |
||||||
|
editlinestate=color2;color0 |
||||||
|
bookmark=color0;color7 |
||||||
|
bookmarkfound=color0;color7 |
||||||
|
editrightmargin=color0;color7 |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color7;default |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color15;color4 |
||||||
|
changednew=color15;color2 |
||||||
|
changed=color15;color6 |
||||||
|
added=color0;color7 |
||||||
|
removed=color8;color0 |
||||||
|
folder=color11;color0;bold |
||||||
|
error=color15;color1 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarCon16 (user) |
||||||
|
256colors=false |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color7;color0 |
||||||
|
selected=color15;color2 |
||||||
|
marked=color11;;bold |
||||||
|
markselect=color11;color2;bold |
||||||
|
gauge=color15;color2 |
||||||
|
input=color15 |
||||||
|
inputmark=color11;color2;bold |
||||||
|
inputunchanged= |
||||||
|
commandlinemark=color11;color2;bold |
||||||
|
reverse=color0;color10 |
||||||
|
header=color3 |
||||||
|
disabled=color8;color7 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color0;color7 |
||||||
|
dhotnormal=color3 |
||||||
|
dfocus=color11;color2;bold |
||||||
|
dhotfocus=color3;color2 |
||||||
|
dtitle=color11;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color15;color1 |
||||||
|
errdfocus=color11;color2;bold |
||||||
|
errdhotnormal=color13 |
||||||
|
errdhotfocus=color13;color2 |
||||||
|
errdtitle=color11;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color15;;bold |
||||||
|
executable=color10 |
||||||
|
symlink=color12 |
||||||
|
hardlink= |
||||||
|
stalelink=color9 |
||||||
|
device=color13 |
||||||
|
special=color3 |
||||||
|
core=color1 |
||||||
|
temp=color8 |
||||||
|
archive=color3 |
||||||
|
doc=color14 |
||||||
|
source=color6 |
||||||
|
media=color5 |
||||||
|
graph=color13 |
||||||
|
database=color2 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color0;color7 |
||||||
|
menuhot=color3 |
||||||
|
menusel=color11;color2;bold |
||||||
|
menuhotsel=color3;color2 |
||||||
|
menuinactive=color8 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color0;color7 |
||||||
|
menusel=color11;color2;bold |
||||||
|
menutitle=color11;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color7 |
||||||
|
hotkey=color15;color3 |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color15;color2 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color0;color7 |
||||||
|
helpitalic=color10;;bold |
||||||
|
helpbold=color5 |
||||||
|
helplink=color14 |
||||||
|
helpslink=color11;color2;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color7;color0 |
||||||
|
editbold=color15;;bold |
||||||
|
editmarked=color11;color2;bold |
||||||
|
editwhitespace=color12;color4 |
||||||
|
editlinestate=color2;color0 |
||||||
|
bookmark=color0;color7 |
||||||
|
bookmarkfound=color0;color7 |
||||||
|
editrightmargin=color0;color7 |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color7;color0 |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color15;color4 |
||||||
|
changednew=color15;color2 |
||||||
|
changed=color15;color6 |
||||||
|
added=color0;color7 |
||||||
|
removed=color8;color0 |
||||||
|
folder=color11;color0;bold |
||||||
|
error=color15;color1 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarCon16root-DefaultBG (root) |
||||||
|
256colors=false |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color7;default |
||||||
|
selected=color15;color1 |
||||||
|
marked=color11;;bold |
||||||
|
markselect=color11;color1;bold |
||||||
|
gauge=color15;color1 |
||||||
|
input=color15;color0 |
||||||
|
inputmark=color11;color1;bold |
||||||
|
inputunchanged=;color0 |
||||||
|
commandlinemark=color11;color1;bold |
||||||
|
reverse=color0;color9 |
||||||
|
header=color3 |
||||||
|
disabled=color8;color7 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color0;color7 |
||||||
|
dhotnormal=color3 |
||||||
|
dfocus=color11;color1;bold |
||||||
|
dhotfocus=color5;color1;bold |
||||||
|
dtitle=color11;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color15;color1 |
||||||
|
errdfocus=color11;color3;bold |
||||||
|
errdhotnormal=color13 |
||||||
|
errdhotfocus=color13;color3 |
||||||
|
errdtitle=color11;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color15;;bold |
||||||
|
executable=color10 |
||||||
|
symlink=color12 |
||||||
|
hardlink= |
||||||
|
stalelink=color9 |
||||||
|
device=color13 |
||||||
|
special=color3 |
||||||
|
core=color1 |
||||||
|
temp=color8 |
||||||
|
archive=color3 |
||||||
|
doc=color14 |
||||||
|
source=color6 |
||||||
|
media=color5 |
||||||
|
graph=color13 |
||||||
|
database=color2 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color7;default |
||||||
|
menuhot=color3 |
||||||
|
menusel=color11;color1;bold |
||||||
|
menuhotsel=color5;color1;bold |
||||||
|
menuinactive=color8 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color7;default |
||||||
|
menusel=color11;color1;bold |
||||||
|
menutitle=color11;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color7 |
||||||
|
hotkey=color15;color3 |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color15;color1 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color0;color7 |
||||||
|
helpitalic=color10;;bold |
||||||
|
helpbold=color5 |
||||||
|
helplink=color14 |
||||||
|
helpslink=color11;color1;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color7;default |
||||||
|
editbold=color15;;bold |
||||||
|
editmarked=color11;color1;bold |
||||||
|
editwhitespace=color12;color4 |
||||||
|
editlinestate=color1;color0 |
||||||
|
bookmark=color0;color7 |
||||||
|
bookmarkfound=color0;color7 |
||||||
|
editrightmargin=color0;color7 |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color7;default |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color15;color4 |
||||||
|
changednew=color15;color5 |
||||||
|
changed=color15;color3 |
||||||
|
added=color0;color7 |
||||||
|
removed=color8;color0 |
||||||
|
folder=color11;color0;bold |
||||||
|
error=color15;color1 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarCon16root (root) |
||||||
|
256colors=false |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color7;color0 |
||||||
|
selected=color15;color1 |
||||||
|
marked=color11;;bold |
||||||
|
markselect=color11;color1;bold |
||||||
|
gauge=color15;color1 |
||||||
|
input=color15 |
||||||
|
inputmark=color11;color1;bold |
||||||
|
inputunchanged= |
||||||
|
commandlinemark=color11;color1;bold |
||||||
|
reverse=color0;color9 |
||||||
|
header=color3 |
||||||
|
disabled=color8;color7 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color0;color7 |
||||||
|
dhotnormal=color3 |
||||||
|
dfocus=color11;color1;bold |
||||||
|
dhotfocus=color5;color1;bold |
||||||
|
dtitle=color11;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color15;color1 |
||||||
|
errdfocus=color11;color3;bold |
||||||
|
errdhotnormal=color13 |
||||||
|
errdhotfocus=color13;color3 |
||||||
|
errdtitle=color11;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color15;;bold |
||||||
|
executable=color10 |
||||||
|
symlink=color12 |
||||||
|
hardlink= |
||||||
|
stalelink=color9 |
||||||
|
device=color13 |
||||||
|
special=color3 |
||||||
|
core=color1 |
||||||
|
temp=color8 |
||||||
|
archive=color3 |
||||||
|
doc=color14 |
||||||
|
source=color6 |
||||||
|
media=color5 |
||||||
|
graph=color13 |
||||||
|
database=color2 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color0;color7 |
||||||
|
menuhot=color3 |
||||||
|
menusel=color11;color1;bold |
||||||
|
menuhotsel=color5;color1;bold |
||||||
|
menuinactive=color8 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color0;color7 |
||||||
|
menusel=color11;color1;bold |
||||||
|
menutitle=color11;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color7 |
||||||
|
hotkey=color15;color3 |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color15;color1 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color0;color7 |
||||||
|
helpitalic=color10;;bold |
||||||
|
helpbold=color5 |
||||||
|
helplink=color14 |
||||||
|
helpslink=color11;color1;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color7;color0 |
||||||
|
editbold=color15;;bold |
||||||
|
editmarked=color11;color1;bold |
||||||
|
editwhitespace=color12;color4 |
||||||
|
editlinestate=color1;color0 |
||||||
|
bookmark=color0;color7 |
||||||
|
bookmarkfound=color0;color7 |
||||||
|
editrightmargin=color0;color7 |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color7;color0 |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color15;color4 |
||||||
|
changednew=color15;color5 |
||||||
|
changed=color15;color3 |
||||||
|
added=color0;color7 |
||||||
|
removed=color8;color0 |
||||||
|
folder=color11;color0;bold |
||||||
|
error=color15;color1 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarIn256-DefaultBG (user) |
||||||
|
256colors=true |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color250;default |
||||||
|
selected=color253;color23 |
||||||
|
marked=color228;;bold |
||||||
|
markselect=color228;color23;bold |
||||||
|
gauge=color250;color66 |
||||||
|
input=color187;color235;bold |
||||||
|
inputmark=color228;color23;bold |
||||||
|
inputunchanged=color144;color235;bold |
||||||
|
commandlinemark=color228;color23;bold |
||||||
|
reverse=color254;color66 |
||||||
|
header=color180;;bold |
||||||
|
disabled=color246;color239 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color252;color239 |
||||||
|
dhotnormal=color214 |
||||||
|
dfocus=color228;color23;bold |
||||||
|
dhotfocus=color214;color23 |
||||||
|
dtitle=color180;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color230;color52 |
||||||
|
errdfocus=color254;color23;bold |
||||||
|
errdhotnormal=color203;color52 |
||||||
|
errdhotfocus=color203;color23;bold |
||||||
|
errdtitle=color227;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color144;;bold |
||||||
|
executable=color114 |
||||||
|
symlink=color45 |
||||||
|
hardlink= |
||||||
|
stalelink=color203 |
||||||
|
device=color170 |
||||||
|
special=color142 |
||||||
|
core=color197 |
||||||
|
temp=color245 |
||||||
|
archive=color172 |
||||||
|
doc=color153 |
||||||
|
source=color109 |
||||||
|
media=color141 |
||||||
|
graph=color216 |
||||||
|
database=color103 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color250;default |
||||||
|
menuhot=color214 |
||||||
|
menusel=color253;color23 |
||||||
|
menuhotsel=color214;color23 |
||||||
|
menuinactive=color245 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color250;default |
||||||
|
menusel=color253;color23 |
||||||
|
menutitle=color180;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color253;color236 |
||||||
|
hotkey=color214;color238;bold |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color253;color66 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color252;color239 |
||||||
|
helpitalic=color114;;bold |
||||||
|
helpbold=color180;;bold |
||||||
|
helplink=color45 |
||||||
|
helpslink=color228;color23;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color250;default |
||||||
|
editbold=color228;;bold |
||||||
|
editmarked=color228;color23;bold |
||||||
|
editwhitespace=color56;color234 |
||||||
|
editlinestate=color66;color235 |
||||||
|
bookmark=;color239 |
||||||
|
bookmarkfound=;color239;bold |
||||||
|
editrightmargin=;color235;bold |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color250;default |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color231;color29 |
||||||
|
changednew=color232;color78 |
||||||
|
changed=color231;color39 |
||||||
|
added=color232;color81 |
||||||
|
removed=;color234 |
||||||
|
folder=color232;color185 |
||||||
|
error=color231;color160 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarIn256 (user) |
||||||
|
256colors=true |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color252;color237 |
||||||
|
selected=color253;color23 |
||||||
|
marked=color228;;bold |
||||||
|
markselect=color228;color23;bold |
||||||
|
gauge=color250;color66 |
||||||
|
input=color187;color235;bold |
||||||
|
inputmark=color228;color23;bold |
||||||
|
inputunchanged=color144;color235;bold |
||||||
|
commandlinemark=color228;color23;bold |
||||||
|
reverse=color254;color66 |
||||||
|
header=color180;;bold |
||||||
|
disabled=color246;color239 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color252;color239 |
||||||
|
dhotnormal=color214 |
||||||
|
dfocus=color228;color23;bold |
||||||
|
dhotfocus=color214;color23 |
||||||
|
dtitle=color180;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color230;color52 |
||||||
|
errdfocus=color254;color23;bold |
||||||
|
errdhotnormal=color203;color52 |
||||||
|
errdhotfocus=color203;color23;bold |
||||||
|
errdtitle=color227;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color144;;bold |
||||||
|
executable=color114 |
||||||
|
symlink=color45 |
||||||
|
hardlink= |
||||||
|
stalelink=color203 |
||||||
|
device=color170 |
||||||
|
special=color142 |
||||||
|
core=color197 |
||||||
|
temp=color245 |
||||||
|
archive=color172 |
||||||
|
doc=color153 |
||||||
|
source=color109 |
||||||
|
media=color141 |
||||||
|
graph=color216 |
||||||
|
database=color103 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color252;color239 |
||||||
|
menuhot=color214 |
||||||
|
menusel=color253;color23 |
||||||
|
menuhotsel=color214;color23 |
||||||
|
menuinactive=color246 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color252;color239 |
||||||
|
menusel=color253;color23 |
||||||
|
menutitle=color180;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color253;color236 |
||||||
|
hotkey=color214;color238;bold |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color253;color66 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color252;color239 |
||||||
|
helpitalic=color114;;bold |
||||||
|
helpbold=color180;;bold |
||||||
|
helplink=color45 |
||||||
|
helpslink=color228;color23;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color252;color237 |
||||||
|
editbold=color228;;bold |
||||||
|
editmarked=color228;color23;bold |
||||||
|
editwhitespace=color56;color234 |
||||||
|
editlinestate=color66;color235 |
||||||
|
bookmark=;color239 |
||||||
|
bookmarkfound=;color239;bold |
||||||
|
editrightmargin=;color235;bold |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color252;color237 |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color231;color29 |
||||||
|
changednew=color232;color78 |
||||||
|
changed=color231;color39 |
||||||
|
added=color232;color81 |
||||||
|
removed=;color235 |
||||||
|
folder=color232;color185 |
||||||
|
error=color231;color160 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarIn256root-DefaultBG (root) |
||||||
|
256colors=true |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color250;default |
||||||
|
selected=color253;color88 |
||||||
|
marked=color228;;bold |
||||||
|
markselect=color228;color88;bold |
||||||
|
gauge=color250;color95 |
||||||
|
input=color187;color235;bold |
||||||
|
inputmark=color228;color88;bold |
||||||
|
inputunchanged=color144;color235;bold |
||||||
|
commandlinemark=color228;color88;bold |
||||||
|
reverse=color254;color95 |
||||||
|
header=color180;;bold |
||||||
|
disabled=color246;color239 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color252;color239 |
||||||
|
dhotnormal=color214 |
||||||
|
dfocus=color228;color88;bold |
||||||
|
dhotfocus=color214;color88;bold |
||||||
|
dtitle=color180;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color230;color52 |
||||||
|
errdfocus=color254;color95;bold |
||||||
|
errdhotnormal=color203;color52 |
||||||
|
errdhotfocus=color203;color95;bold |
||||||
|
errdtitle=color227;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color144;;bold |
||||||
|
executable=color114 |
||||||
|
symlink=color45 |
||||||
|
hardlink= |
||||||
|
stalelink=color203 |
||||||
|
device=color170 |
||||||
|
special=color142 |
||||||
|
core=color197 |
||||||
|
temp=color245 |
||||||
|
archive=color172 |
||||||
|
doc=color153 |
||||||
|
source=color109 |
||||||
|
media=color141 |
||||||
|
graph=color216 |
||||||
|
database=color103 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color250;default |
||||||
|
menuhot=color214 |
||||||
|
menusel=color253;color88 |
||||||
|
menuhotsel=color214;color88 |
||||||
|
menuinactive=color245 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color250;default |
||||||
|
menusel=color253;color88 |
||||||
|
menutitle=color180;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color253;color236 |
||||||
|
hotkey=color214;color238;bold |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color254;color95 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color252;color239 |
||||||
|
helpitalic=color114;;bold |
||||||
|
helpbold=color180;;bold |
||||||
|
helplink=color45 |
||||||
|
helpslink=color228;color88;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color250;default |
||||||
|
editbold=color228;;bold |
||||||
|
editmarked=color228;color88;bold |
||||||
|
editwhitespace=color56;color234 |
||||||
|
editlinestate=color95;color235 |
||||||
|
bookmark=;color239 |
||||||
|
bookmarkfound=;color239;bold |
||||||
|
editrightmargin=;color235;bold |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color250;default |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color231;color130 |
||||||
|
changednew=color232;color208 |
||||||
|
changed=color231;color96 |
||||||
|
added=color232;color218 |
||||||
|
removed=;color234 |
||||||
|
folder=color232;color185 |
||||||
|
error=color231;color160 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,182 @@ |
|||||||
|
# |
||||||
|
# modarin256: a moderate-dark-independent 256-color skin for MidnightCommander. |
||||||
|
# |
||||||
|
# This skin is using colors independent from the default 16 terminal colors, |
||||||
|
# i.e., no matter how the 16 standard colors are configured, the appearance |
||||||
|
# of Midnight Commander will not be affected. |
||||||
|
# |
||||||
|
# There are 4 variants of this skin: |
||||||
|
# |
||||||
|
# modarin256 |
||||||
|
# - default skin, no standard colors used. |
||||||
|
# |
||||||
|
# modarin256-defbg |
||||||
|
# - like modarin256, but using the default background color for core, editor, |
||||||
|
# viewer, menu and popupmenu backgrounds, for use with (semi-)transparent |
||||||
|
# background colors. |
||||||
|
# |
||||||
|
# modarin256root |
||||||
|
# modarin256root-defbg |
||||||
|
# - like the other two skins, but for the root user, with red colors used |
||||||
|
# instead of green colors for things like select/focus/statusbar etc., |
||||||
|
# to keep reminding the user that mc is running as root. |
||||||
|
# |
||||||
|
# Fallback skins for 16-color terminals (poor man's skins): |
||||||
|
# |
||||||
|
# modarcon16 |
||||||
|
# modarcon16-defbg |
||||||
|
# modarcon16root |
||||||
|
# modarcon16root-defbg |
||||||
|
# - like everything running in a 16-color terminal, these skins look ugly |
||||||
|
# and are no subsitute for the 256-color versions. As some terminals don't |
||||||
|
# support using dark gray as background color, i used a black background |
||||||
|
# and adjusted the remaining colors accordingly. |
||||||
|
# |
||||||
|
# 256-color skins require mc version 4.8 or newer. |
||||||
|
# |
||||||
|
# Author: Oliver Lange <modarin@bloody.in-berlin.de> |
||||||
|
# |
||||||
|
# Version: 1.2 |
||||||
|
# |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=MoDarIn256root (root) |
||||||
|
256colors=true |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color252;color237 |
||||||
|
selected=color253;color88 |
||||||
|
marked=color228;;bold |
||||||
|
markselect=color228;color88;bold |
||||||
|
gauge=color250;color95 |
||||||
|
input=color187;color235;bold |
||||||
|
inputmark=color228;color88;bold |
||||||
|
inputunchanged=color144;color235;bold |
||||||
|
commandlinemark=color228;color88;bold |
||||||
|
reverse=color254;color95 |
||||||
|
header=color180;;bold |
||||||
|
disabled=color246;color239 |
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=color252;color239 |
||||||
|
dhotnormal=color214 |
||||||
|
dfocus=color228;color88;bold |
||||||
|
dhotfocus=color214;color88;bold |
||||||
|
dtitle=color180;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=color230;color52 |
||||||
|
errdfocus=color254;color95;bold |
||||||
|
errdhotnormal=color203;color52 |
||||||
|
errdhotfocus=color203;color95;bold |
||||||
|
errdtitle=color227;;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=color144;;bold |
||||||
|
executable=color114 |
||||||
|
symlink=color45 |
||||||
|
hardlink= |
||||||
|
stalelink=color203 |
||||||
|
device=color170 |
||||||
|
special=color142 |
||||||
|
core=color197 |
||||||
|
temp=color245 |
||||||
|
archive=color172 |
||||||
|
doc=color153 |
||||||
|
source=color109 |
||||||
|
media=color141 |
||||||
|
graph=color216 |
||||||
|
database=color103 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=color252;color239 |
||||||
|
menuhot=color214 |
||||||
|
menusel=color253;color88 |
||||||
|
menuhotsel=color214;color88 |
||||||
|
menuinactive=color246 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=color252;color239 |
||||||
|
menusel=color253;color88 |
||||||
|
menutitle=color180;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=color253;color236 |
||||||
|
hotkey=color214;color238;bold |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=color254;color95 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=color252;color239 |
||||||
|
helpitalic=color114;;bold |
||||||
|
helpbold=color180;;bold |
||||||
|
helplink=color45 |
||||||
|
helpslink=color228;color88;bold |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color252;color237 |
||||||
|
editbold=color228;;bold |
||||||
|
editmarked=color228;color88;bold |
||||||
|
editwhitespace=color56;color234 |
||||||
|
editlinestate=color95;color235 |
||||||
|
bookmark=;color239 |
||||||
|
bookmarkfound=;color239;bold |
||||||
|
editrightmargin=;color235;bold |
||||||
|
|
||||||
|
[viewer] |
||||||
|
_default_=color252;color237 |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=color231;color130 |
||||||
|
changednew=color232;color208 |
||||||
|
changed=color231;color96 |
||||||
|
added=color232;color218 |
||||||
|
removed=;color235 |
||||||
|
folder=color232;color185 |
||||||
|
error=color231;color160 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up=↓ |
||||||
|
sort-sign-down=↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show=• |
||||||
|
hiddenfiles-sign-hide=○ |
||||||
|
history-prev-item-sign=« |
||||||
|
history-next-item-sign=» |
||||||
|
history-show-list-sign=^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
@ -0,0 +1,143 @@ |
|||||||
|
[skin] |
||||||
|
description=Nice and Dark |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=─ |
||||||
|
dvert=│ |
||||||
|
dlefttop=┌ |
||||||
|
drighttop=┐ |
||||||
|
dleftbottom=└ |
||||||
|
drightbottom=┘ |
||||||
|
dtopmiddle=─ |
||||||
|
dbottommiddle=─ |
||||||
|
dleftmiddle=├ |
||||||
|
drightmiddle=┤ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=lightgray;black |
||||||
|
selected=lightgray;blue |
||||||
|
marked=brown;black |
||||||
|
markselect=brown;blue |
||||||
|
gauge=black;lightgray |
||||||
|
input=lightgray;black |
||||||
|
inputunchanged=gray;black |
||||||
|
inputmark=black;lightgray |
||||||
|
disabled=gray;darkgray |
||||||
|
reverse=brown;black |
||||||
|
commandlinemark=black;lightgray |
||||||
|
header=lightgray;black |
||||||
|
inputhistory= |
||||||
|
commandhistory= |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=lightgray;darkgray |
||||||
|
dfocus=lightgray;blue |
||||||
|
dhotnormal=brown;darkgray |
||||||
|
dhotfocus=brown;blue |
||||||
|
dtitle=brown;darkgray |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=red;black |
||||||
|
errdfocus=black;red |
||||||
|
errdhotnormal=brightred;black |
||||||
|
errdhotfocus=brown;red |
||||||
|
errdtitle=brown;black |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=blue; |
||||||
|
executable=brightgreen; |
||||||
|
symlink=gray; |
||||||
|
hardlink= |
||||||
|
stalelink=brightred; |
||||||
|
device=brightmagenta; |
||||||
|
special=gray; |
||||||
|
core=red; |
||||||
|
temp=gray; |
||||||
|
archive=magenta; |
||||||
|
doc=lightgray; |
||||||
|
source=brightcyan; |
||||||
|
media=green; |
||||||
|
graph=cyan; |
||||||
|
database=brightred; |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=lightgray;black |
||||||
|
menuhot=brown;black |
||||||
|
menusel=lightgray;blue |
||||||
|
menuhotsel=brown;blue |
||||||
|
menuinactive=gray;black |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=lightgray;blue |
||||||
|
button=lightgray;black |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=lightgray;black |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=lightgray;darkgray |
||||||
|
helpitalic=red;darkgray |
||||||
|
helpbold=brown;darkgray |
||||||
|
helplink=blue;darkgray |
||||||
|
helpslink=lightgray;blue |
||||||
|
helptitle=brown;darkgray |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=lightgray;darkgray |
||||||
|
editbold=brown;blue |
||||||
|
editmarked=black;cyan |
||||||
|
editwhitespace=brightblue;blue |
||||||
|
editlinestate=white;cyan |
||||||
|
bookmark=white;red |
||||||
|
bookmarkfound=black;green |
||||||
|
editrightmargin=brightblue;black |
||||||
|
# editbg= |
||||||
|
editframe=gray; |
||||||
|
editframeactive=lightgray; |
||||||
|
editframedrag=brightblue; |
||||||
|
window-state-char = ↕ |
||||||
|
window-close-char = ✕ |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewbold=brown;blue |
||||||
|
viewunderline=brightred;blue |
||||||
|
viewselected=brown;cyan |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=white;brown |
||||||
|
changedline=blue;cyan |
||||||
|
changednew=red;cyan |
||||||
|
changed=white;cyan |
||||||
|
removed=white;red |
||||||
|
folder=blue;black |
||||||
|
error=red;white |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=lightgray;black |
||||||
|
menusel=lightgray;blue |
||||||
|
menutitle=lightgray;black |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-down=↑ |
||||||
|
sort-sign-up=↓ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = • |
||||||
|
hiddenfiles-sign-hide = ○ |
||||||
|
history-prev-item-sign = « |
||||||
|
history-next-item-sign = » |
||||||
|
history-show-list-sign = ^ |
||||||
|
filename-scroll-left-char = « |
||||||
|
filename-scroll-right-char = » |
||||||
|
|
@ -0,0 +1,201 @@ |
|||||||
|
# This skin demonstrates how to use 256 colors in mc. |
||||||
|
# |
||||||
|
# As a prerequisite, you will need to: |
||||||
|
# 1) Have a terminal emulator that supports 256 colors (a few examples: |
||||||
|
# xterm, Gnome terminal and other VTE derivatives, KDE's Konsole; |
||||||
|
# iTerm for Mac OS X, PuTTY for Windows). |
||||||
|
# 2) Adjust your TERM variable accordingly, e.g.: export TERM=xterm-256color |
||||||
|
# Verify by running tput colors |
||||||
|
# |
||||||
|
# Each of the 256 colors has two names, you can use whichever you prefer. |
||||||
|
# |
||||||
|
# One possibility is to use the names "color0" to "color255" to access every |
||||||
|
# color directly based on their number. |
||||||
|
# |
||||||
|
# The first 16 colors ("color0" to "color15") can also be specified by their |
||||||
|
# names (these names are already being used by mc for 8/16 color terminals): |
||||||
|
# black gray |
||||||
|
# red brightred |
||||||
|
# green brightgreen |
||||||
|
# brown yellow |
||||||
|
# blue brightblue |
||||||
|
# magenta brightmagenta |
||||||
|
# cyan brightcyan |
||||||
|
# lightgray white |
||||||
|
# Note that with 8/16 color terminal settings (such as TERM=xterm), colors |
||||||
|
# of the second column can only be used for the foreground, and their actual |
||||||
|
# interpretation varies across terminals. Some terminals show the colors |
||||||
|
# from the first column instead (that is, you only have 8 colors), but make |
||||||
|
# them bold. Others show the brighter version (16 foreground colors). Yet |
||||||
|
# others make them bold and bright at the same time. Switching to 256 colors |
||||||
|
# should end this ambiguity: you should have 16 separate colors according to |
||||||
|
# their names, none of them are bold by default but any of them can be |
||||||
|
# switched to bold, and all of them are available for background, too. This |
||||||
|
# is the intended behavior, the actual behavior might vary across terminals. |
||||||
|
# |
||||||
|
# Colors of the 6x6x6 cube ("color16" to "color231") can alternatively be |
||||||
|
# referred to as "rgb000" to "rgb555", all three digits ranging from 0 to 5, |
||||||
|
# corresponding to the R, G and B color components. |
||||||
|
# |
||||||
|
# The 24 grayscale colors ("color232" to "color255") have the aliases "gray0" |
||||||
|
# to "gray23". |
||||||
|
# |
||||||
|
# In addition to the 256 colors, the special word "default" means the |
||||||
|
# default foreground or background color of your terminal, while "base" means |
||||||
|
# mc's main colors. A missing value means falling back to the _default_ of the |
||||||
|
# given section. |
||||||
|
# |
||||||
|
# Following the foreground and background colors, the third (optional) value |
||||||
|
# can specify special attributes to enable. Valid values are bold, underline, |
||||||
|
# reverse and blink. Append more with a plus sign, e.g. "underline+bold". |
||||||
|
# Leaving the field empty makes it fall back to the attributes of _default_. |
||||||
|
# Use any other word (e.g. "none") to prevent fallback and disable all flags. |
||||||
|
|
||||||
|
[skin] |
||||||
|
description=Sand skin using 256 colors |
||||||
|
256colors=true |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=─ |
||||||
|
dvert=│ |
||||||
|
dlefttop=┌ |
||||||
|
drighttop=┐ |
||||||
|
dleftbottom=└ |
||||||
|
drightbottom=┘ |
||||||
|
dtopmiddle=─ |
||||||
|
dbottommiddle=─ |
||||||
|
dleftmiddle=├ |
||||||
|
drightmiddle=┤ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=black;rgb554 |
||||||
|
selected=;rgb452 |
||||||
|
marked=rgb400 |
||||||
|
markselect=rgb400;rgb452 |
||||||
|
gauge=;rgb452 |
||||||
|
input=;rgb452 |
||||||
|
inputunchanged=gray;rgb452 |
||||||
|
inputmark=rgb452;gray |
||||||
|
disabled=gray;rgb553 |
||||||
|
reverse=;rgb452 |
||||||
|
commandlinemark=white;gray |
||||||
|
header=red |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;rgb553 |
||||||
|
dfocus=;rgb452 |
||||||
|
dhotnormal=;;underline |
||||||
|
dhotfocus=;rgb452;underline |
||||||
|
dtitle=;;underline |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=rgb554;rgb320;bold |
||||||
|
errdfocus=black;rgb452;bold |
||||||
|
errdhotnormal=;;bold+underline |
||||||
|
errdhotfocus=black;rgb452;bold+underline |
||||||
|
errdtitle=;;bold+underline |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory= |
||||||
|
executable=rgb030 |
||||||
|
symlink=rgb202 |
||||||
|
hardlink= |
||||||
|
# 404 Not Found :) |
||||||
|
stalelink=rgb404 |
||||||
|
device=rgb231 |
||||||
|
special=rgb331 |
||||||
|
core=rgb430 |
||||||
|
temp=gray15 |
||||||
|
archive=rgb012 |
||||||
|
doc=rgb103 |
||||||
|
source=rgb310 |
||||||
|
media=rgb024 |
||||||
|
graph=rgb033 |
||||||
|
database=rgb421 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=black;rgb452 |
||||||
|
menuhot=;;underline |
||||||
|
menusel=;rgb551 |
||||||
|
menuhotsel=;rgb551;underline |
||||||
|
menuinactive= |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=black;rgb553 |
||||||
|
menusel=;rgb452;underline |
||||||
|
menutitle=;;underline |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
hotkey=black;rgb554 |
||||||
|
button=black;rgb452 |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;rgb452 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;rgb553 |
||||||
|
helpitalic=green |
||||||
|
helpbold=red |
||||||
|
helplink=blue;;underline |
||||||
|
helpslink=blue;;reverse |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=black;rgb554 |
||||||
|
editbold=rgb400 |
||||||
|
editmarked=;rgb452 |
||||||
|
editwhitespace=rgb400;rgb553 |
||||||
|
editlinestate=;rgb553 |
||||||
|
bookmark=;rgb551 |
||||||
|
bookmarkfound=;rgb530 |
||||||
|
editrightmargin=rgb400;rgb553 |
||||||
|
# editbg= |
||||||
|
editframe=rgb530; |
||||||
|
editframeactive=black; |
||||||
|
editframedrag=rgb400; |
||||||
|
window-state-char = ↕ |
||||||
|
window-close-char = ✕ |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
added=;rgb450 |
||||||
|
changedline=blue;rgb553 |
||||||
|
changednew=rgb400;rgb553 |
||||||
|
changed=;rgb553 |
||||||
|
removed=;rgb511 |
||||||
|
folder=;rgb530 |
||||||
|
error=rgb554;rgb320 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ↓ |
||||||
|
sort-sign-down = ↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = • |
||||||
|
hiddenfiles-sign-hide = ○ |
||||||
|
history-prev-item-sign = « |
||||||
|
history-next-item-sign = » |
||||||
|
history-show-list-sign = ^ |
||||||
|
filename-scroll-left-char = « |
||||||
|
filename-scroll-right-char = » |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
||||||
|
|
@ -0,0 +1,192 @@ |
|||||||
|
# This is a 256 colors MidnightCommander color scheme |
||||||
|
# based on the Xoria256 color scheme for the Vim editor |
||||||
|
# (http://www.vim.org/scripts/script.php?script_id=2140) |
||||||
|
|
||||||
|
# Note you'll need mc > 4.7.5 for this scheme to work (256 colors support) |
||||||
|
# Hint: compile from the git repository |
||||||
|
|
||||||
|
# Author : Alexander Glyzov (isee@inbox.ru) |
||||||
|
# Last Change : Jan 11, 2011 |
||||||
|
|
||||||
|
# Special Thanks to Dmitriy Zotikov -- author of the Vim Xoria256 color scheme. |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[skin] |
||||||
|
description=Xoria256 |
||||||
|
256colors=true |
||||||
|
|
||||||
|
# [Lines] |
||||||
|
# horiz=─ |
||||||
|
# vert=│ |
||||||
|
# lefttop=┌ |
||||||
|
# righttop=┐ |
||||||
|
# leftbottom=└ |
||||||
|
# rightbottom=┘ |
||||||
|
# topmiddle=─ |
||||||
|
# bottommiddle=─ |
||||||
|
# leftmiddle=├ |
||||||
|
# rightmiddle=┤ |
||||||
|
# cross=┼ |
||||||
|
# dhoriz=─ |
||||||
|
# dvert=│ |
||||||
|
# dlefttop=┌ |
||||||
|
# drighttop=┐ |
||||||
|
# dleftbottom=└ |
||||||
|
# drightbottom=┘ |
||||||
|
# dtopmiddle=─ |
||||||
|
# dbottommiddle=─ |
||||||
|
# dleftmiddle=├ |
||||||
|
# drightmiddle=┤ |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color250;color234 |
||||||
|
selected=;color60 |
||||||
|
marked=color228 |
||||||
|
markselect=color228;color60 |
||||||
|
reverse=color234;color250; |
||||||
|
header=color180;;bold |
||||||
|
|
||||||
|
gauge=white;black |
||||||
|
|
||||||
|
input=color252;color60;bold |
||||||
|
inputunchanged=color250;color60;bold |
||||||
|
inputmark=color228;color236;bold |
||||||
|
|
||||||
|
disabled=color244;color250 |
||||||
|
|
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
#commandlinemark=black;lightgray |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;color250 |
||||||
|
dhotnormal=color88;; |
||||||
|
dfocus=black;color73; |
||||||
|
dhotfocus=color88;color73; |
||||||
|
dtitle=color235;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=;;bold |
||||||
|
executable=color114 |
||||||
|
symlink=color180 |
||||||
|
hardlink= |
||||||
|
stalelink=rgb404 |
||||||
|
device=rgb231 |
||||||
|
special=rgb331 |
||||||
|
core=rgb430 |
||||||
|
temp=color239 |
||||||
|
archive=color174 |
||||||
|
doc=rgb033 |
||||||
|
source=color29 |
||||||
|
media=color110 |
||||||
|
graph=color182 |
||||||
|
database=color31 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=black;color250 |
||||||
|
menuhot=color88;; |
||||||
|
menusel=black;color73; |
||||||
|
menuhotsel=color88;color73; |
||||||
|
menuinactive=color244 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=black;color250 |
||||||
|
menusel=black;color73 |
||||||
|
menutitle=;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=black;color250 |
||||||
|
hotkey=color88;color181;bold |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;color250 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;color250 |
||||||
|
helpitalic=color88;;bold |
||||||
|
helpbold=color235;;bold |
||||||
|
helplink=color19;; |
||||||
|
helpslink=black;color73;inverse |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color250;color234 |
||||||
|
editbold=;;bold |
||||||
|
editmarked=;color60 |
||||||
|
editwhitespace=color236;color234 |
||||||
|
editlinestate=;color235 |
||||||
|
bookmark=;color239; |
||||||
|
bookmarkfound=;color239;bold |
||||||
|
editrightmargin=color180;color235;bold |
||||||
|
# editbg= |
||||||
|
editframe=color244; |
||||||
|
editframeactive=color250; |
||||||
|
editframedrag=color73; |
||||||
|
window-state-char = ↕ |
||||||
|
window-close-char = ✕ |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=;color60 |
||||||
|
changednew=black;color174 |
||||||
|
|
||||||
|
added=black;color181 |
||||||
|
changed=black;color151 |
||||||
|
removed=;color235 |
||||||
|
|
||||||
|
folder=;color60 |
||||||
|
error=rgb554;rgb320 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ↓ |
||||||
|
sort-sign-down = ↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = • |
||||||
|
hiddenfiles-sign-hide = ○ |
||||||
|
history-prev-item-sign = « |
||||||
|
history-next-item-sign = » |
||||||
|
history-show-list-sign = ^ |
||||||
|
filename-scroll-left-char = « |
||||||
|
filename-scroll-right-char = » |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
||||||
|
|
@ -0,0 +1,181 @@ |
|||||||
|
# This is a 256 colors MidnightCommander color scheme |
||||||
|
# based on the Xoria256 color scheme for the Vim editor |
||||||
|
# (http://http://www.vim.org/scripts/script.php?script_id=2140) |
||||||
|
|
||||||
|
# Note you'll need mc >= 4.7.6 for this scheme to work (256 colors support) |
||||||
|
# Hint: compile from the git repository |
||||||
|
|
||||||
|
# Author : Alexander Glyzov (isee@inbox.ru) |
||||||
|
# Last Change : Jan 11, 2011 |
||||||
|
|
||||||
|
# Special Thanks to Dmitriy Zotikov -- author of the Vim Xoria256 color scheme. |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[skin] |
||||||
|
description=Xoria256 |
||||||
|
|
||||||
|
# [Lines] |
||||||
|
# horiz=─ |
||||||
|
# vert=│ |
||||||
|
# lefttop=┌ |
||||||
|
# righttop=┐ |
||||||
|
# leftbottom=└ |
||||||
|
# rightbottom=┘ |
||||||
|
# topmiddle=─ |
||||||
|
# bottommiddle=─ |
||||||
|
# leftmiddle=├ |
||||||
|
# rightmiddle=┤ |
||||||
|
# cross=┼ |
||||||
|
# dhoriz=─ |
||||||
|
# dvert=│ |
||||||
|
# dlefttop=┌ |
||||||
|
# drighttop=┐ |
||||||
|
# dleftbottom=└ |
||||||
|
# drightbottom=┘ |
||||||
|
# dtopmiddle=─ |
||||||
|
# dbottommiddle=─ |
||||||
|
# dleftmiddle=├ |
||||||
|
# drightmiddle=┤ |
||||||
|
|
||||||
|
[Lines] |
||||||
|
horiz=─ |
||||||
|
vert=│ |
||||||
|
lefttop=┌ |
||||||
|
righttop=┐ |
||||||
|
leftbottom=└ |
||||||
|
rightbottom=┘ |
||||||
|
topmiddle=─ |
||||||
|
bottommiddle=─ |
||||||
|
leftmiddle=├ |
||||||
|
rightmiddle=┤ |
||||||
|
cross=┼ |
||||||
|
dhoriz=═ |
||||||
|
dvert=║ |
||||||
|
dlefttop=╔ |
||||||
|
drighttop=╗ |
||||||
|
dleftbottom=╚ |
||||||
|
drightbottom=╝ |
||||||
|
dtopmiddle=╤ |
||||||
|
dbottommiddle=╧ |
||||||
|
dleftmiddle=╟ |
||||||
|
drightmiddle=╢ |
||||||
|
|
||||||
|
[core] |
||||||
|
_default_=color250;color234 |
||||||
|
selected=;color60 |
||||||
|
marked=color228 |
||||||
|
markselect=color228;color60 |
||||||
|
reverse=color234;color250; |
||||||
|
header=color180;;bold |
||||||
|
|
||||||
|
gauge=white;black |
||||||
|
|
||||||
|
input=color252;color60;bold |
||||||
|
inputunchanged=color250;color60;bold |
||||||
|
inputmark=color228;color236;bold |
||||||
|
|
||||||
|
disabled=color244;color250 |
||||||
|
|
||||||
|
#inputhistory= |
||||||
|
#commandhistory= |
||||||
|
#commandlinemark=black;lightgray |
||||||
|
|
||||||
|
[dialog] |
||||||
|
_default_=black;color250 |
||||||
|
dhotnormal=color88;; |
||||||
|
dfocus=black;color73; |
||||||
|
dhotfocus=color88;color73; |
||||||
|
dtitle=color235;;bold |
||||||
|
|
||||||
|
[error] |
||||||
|
_default_=white;red |
||||||
|
errdfocus=black;lightgray |
||||||
|
errdhotnormal=yellow;red |
||||||
|
errdhotfocus=yellow;lightgray |
||||||
|
errdtitle=yellow;red;bold |
||||||
|
|
||||||
|
[filehighlight] |
||||||
|
directory=;;bold |
||||||
|
executable=color114 |
||||||
|
symlink=color180 |
||||||
|
stalelink=rgb404 |
||||||
|
device=rgb231 |
||||||
|
special=rgb331 |
||||||
|
core=rgb430 |
||||||
|
temp=color239 |
||||||
|
archive=color174 |
||||||
|
doc=rgb033 |
||||||
|
source=color29 |
||||||
|
media=color110 |
||||||
|
graph=color182 |
||||||
|
database=color31 |
||||||
|
|
||||||
|
[menu] |
||||||
|
_default_=black;color250 |
||||||
|
menuhot=color88;; |
||||||
|
menusel=black;color73; |
||||||
|
menuhotsel=color88;color73; |
||||||
|
menuinactive=color244 |
||||||
|
|
||||||
|
[popupmenu] |
||||||
|
_default_=black;color250 |
||||||
|
menusel=black;color73 |
||||||
|
menutitle=;;bold |
||||||
|
|
||||||
|
[buttonbar] |
||||||
|
button=black;color250 |
||||||
|
hotkey=color88;color181;bold |
||||||
|
|
||||||
|
[statusbar] |
||||||
|
_default_=black;color250 |
||||||
|
|
||||||
|
[help] |
||||||
|
_default_=black;color250 |
||||||
|
helpitalic=color88;;bold |
||||||
|
helpbold=color235;;bold |
||||||
|
helplink=color19;; |
||||||
|
helpslink=black;color73;inverse |
||||||
|
|
||||||
|
[editor] |
||||||
|
_default_=color250;color234 |
||||||
|
editbold=;;bold |
||||||
|
editmarked=;color60 |
||||||
|
editwhitespace=color236;color234 |
||||||
|
editlinestate=;color235 |
||||||
|
bookmark=;color239; |
||||||
|
bookmarkfound=;color239;bold |
||||||
|
editrightmargin=color180;color235;bold |
||||||
|
|
||||||
|
[viewer] |
||||||
|
viewunderline=;;underline |
||||||
|
|
||||||
|
[diffviewer] |
||||||
|
changedline=;color60 |
||||||
|
changednew=black;color174 |
||||||
|
|
||||||
|
added=black;color181 |
||||||
|
changed=black;color151 |
||||||
|
removed=;color235 |
||||||
|
|
||||||
|
folder=;color60 |
||||||
|
error=rgb554;rgb320 |
||||||
|
|
||||||
|
[widget-common] |
||||||
|
sort-sign-up = ↓ |
||||||
|
sort-sign-down = ↑ |
||||||
|
|
||||||
|
[widget-panel] |
||||||
|
hiddenfiles-sign-show = • |
||||||
|
hiddenfiles-sign-hide = ○ |
||||||
|
history-prev-item-sign = « |
||||||
|
history-next-item-sign = » |
||||||
|
history-show-list-sign = ^ |
||||||
|
|
||||||
|
[widget-scollbar] |
||||||
|
first-vert-char=↑ |
||||||
|
last-vert-char=↓ |
||||||
|
first-horiz-char=« |
||||||
|
last-horiz-char=» |
||||||
|
current-char=■ |
||||||
|
background-char=▒ |
Loading…
Reference in new issue