23 changed files with 3912 additions and 5 deletions
@ -0,0 +1,742 @@
@@ -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,151 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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 @@
@@ -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