summaryrefslogtreecommitdiffstats
path: root/debian/skins
diff options
context:
space:
mode:
Diffstat (limited to '')
-rwxr-xr-xdebian/skins/mc_skin2thin.pl63
-rw-r--r--debian/skins/modarin-1.2-thin/modarcon16-defbg-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarcon16-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarcon16root-defbg-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarcon16root-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarin256-defbg-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarin256-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarin256root-defbg-thin.ini184
-rw-r--r--debian/skins/modarin-1.2-thin/modarin256root-thin.ini184
-rw-r--r--debian/skins/modarin-1.2.txt32
10 files changed, 1567 insertions, 0 deletions
diff --git a/debian/skins/mc_skin2thin.pl b/debian/skins/mc_skin2thin.pl
new file mode 100755
index 0000000..2713dc9
--- /dev/null
+++ b/debian/skins/mc_skin2thin.pl
@@ -0,0 +1,63 @@
+#!/usr/bin/perl
+
+=head1 mc_skin2thin.pl
+
+ Make "thin frame" variant of midnight-commander skins.
+
+=head1 SYNOPSIS
+
+ mc_skin2thin.pl [directory]
+
+=head1 DESCRIPTION
+
+ B<This program> will read all *.ini files in given directory,
+ replace thick frame border characters with thin ones and save
+ generated files to directory with '-thin' appended to
+ the directory name and to all generated files,
+ overwriting files in destination.
+
+ It is meant to be used by maintainer to generate thin set of
+ skins.
+
+=head1 EXAMPLES
+
+ mc_skin2thin.pl modarin-1.2
+
+=head1 AUTHOR
+
+ This script written by Dmitry Smirnov <onlyjob@member.fsf.org>
+ on 2012-03-12
+
+=cut
+
+use strict;
+use utf8;
+use File::Find qw(finddepth find);
+
+die "E: please invoke by giving directory with *.ini scripts as argument."
+ if $#ARGV<0;
+
+while(my $dir=shift @ARGV){
+ my $newdir=$dir.'-thin';
+ finddepth {
+ no_chdir=>1,
+ wanted=>sub{ s{.*/}{};
+ return if $_ eq '.' or $_ eq '..' or not m{\.ini\Z};
+ if(open my $INFIL, '<:encoding(UTF-8)', $File::Find::name){
+ my $skintext;
+ read $INFIL, $skintext, -s $INFIL;
+ close $INFIL;
+ if($skintext=~y{═║╔╗╚╝╤╧╟╢}{─│┌┐└┘──├┤}){
+ mkdir $newdir unless -d $newdir;
+ my $newfil=$_;
+ $newfil=~s{(\.ini)\Z}{-thin$1};
+ if(open my $OUFIL,'>:encoding(UTF-8)',"$newdir/$newfil"){
+ print "Transforming $File::Find::name --> $newdir/$newfil\n";
+ print $OUFIL $skintext;
+ close $OUFIL;
+ }
+ }
+ }else{ die "can't open file $File::Find::name" }
+ }},
+ $dir;
+}
diff --git a/debian/skins/modarin-1.2-thin/modarcon16-defbg-thin.ini b/debian/skins/modarin-1.2-thin/modarcon16-defbg-thin.ini
new file mode 100644
index 0000000..9f9e299
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarcon16-defbg-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color11;color2;bold
+ menuhot = color3
+ 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
+ helptitle = color11;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color11;color2;bold
+
+[diffviewer]
+ changedline = color15;color4
+ changednew = color15;color2
+ changed = color15;color6
+ added = color0;color7
+ removed = color8;color0
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarcon16-thin.ini b/debian/skins/modarin-1.2-thin/modarcon16-thin.ini
new file mode 100644
index 0000000..86101f5
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarcon16-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color11;color2;bold
+ menuhot = color3
+ 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
+ helptitle = color11;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color11;color2;bold
+
+[diffviewer]
+ changedline = color15;color4
+ changednew = color15;color2
+ changed = color15;color6
+ added = color0;color7
+ removed = color8;color0
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarcon16root-defbg-thin.ini b/debian/skins/modarin-1.2-thin/modarcon16root-defbg-thin.ini
new file mode 100644
index 0000000..5d0d391
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarcon16root-defbg-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color11;color1;bold
+ menuhot = color3
+ 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
+ helptitle = color11;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color11;color1;bold
+
+[diffviewer]
+ changedline = color15;color4
+ changednew = color15;color5
+ changed = color15;color3
+ added = color0;color7
+ removed = color8;color0
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarcon16root-thin.ini b/debian/skins/modarin-1.2-thin/modarcon16root-thin.ini
new file mode 100644
index 0000000..bd9fae7
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarcon16root-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color11;color1;bold
+ menuhot = color3
+ 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
+ helptitle = color11;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color11;color1;bold
+
+[diffviewer]
+ changedline = color15;color4
+ changednew = color15;color5
+ changed = color15;color3
+ added = color0;color7
+ removed = color8;color0
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarin256-defbg-thin.ini b/debian/skins/modarin-1.2-thin/modarin256-defbg-thin.ini
new file mode 100644
index 0000000..ded04ef
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarin256-defbg-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color253;color23
+ menuhot = color214
+ 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
+ helptitle = color180;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color228;color23;bold
+
+[diffviewer]
+ changedline = color231;color29
+ changednew = color232;color78
+ changed = color231;color39
+ added = color232;color81
+ removed = ;color234
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarin256-thin.ini b/debian/skins/modarin-1.2-thin/modarin256-thin.ini
new file mode 100644
index 0000000..992c690
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarin256-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color253;color23
+ menuhot = color214
+ 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
+ helptitle = color180;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color228;color23;bold
+
+[diffviewer]
+ changedline = color231;color29
+ changednew = color232;color78
+ changed = color231;color39
+ added = color232;color81
+ removed = ;color235
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarin256root-defbg-thin.ini b/debian/skins/modarin-1.2-thin/modarin256root-defbg-thin.ini
new file mode 100644
index 0000000..17c871d
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarin256root-defbg-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color253;color88
+ menuhot = color214
+ 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
+ helptitle = color180;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color228;color88;bold
+
+[diffviewer]
+ changedline = color231;color130
+ changednew = color232;color208
+ changed = color231;color96
+ added = color232;color218
+ removed = ;color234
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2-thin/modarin256root-thin.ini b/debian/skins/modarin-1.2-thin/modarin256root-thin.ini
new file mode 100644
index 0000000..082274f
--- /dev/null
+++ b/debian/skins/modarin-1.2-thin/modarin256root-thin.ini
@@ -0,0 +1,184 @@
+#
+# 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
+ menusel = color253;color88
+ menuhot = color214
+ 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
+ helptitle = color180;;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
+ viewbold = ;;bold
+ viewunderline = ;;underline
+ viewselected = color228;color88;bold
+
+[diffviewer]
+ changedline = color231;color130
+ changednew = color232;color208
+ changed = color231;color96
+ added = color232;color218
+ removed = ;color235
+ 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 = ▒
diff --git a/debian/skins/modarin-1.2.txt b/debian/skins/modarin-1.2.txt
new file mode 100644
index 0000000..1ce0d73
--- /dev/null
+++ b/debian/skins/modarin-1.2.txt
@@ -0,0 +1,32 @@
+Last-Update: 2012-03-12
+Author: Dmitry Smirnov <onlyjob@member.fsf.org>
+From: Oliver Lange <modarin@bloody.in-berlin.de>
+Bug-MC: https://www.midnight-commander.org/ticket/2737
+Forwarded: not-needed
+Description: add 8 beautiful 256 color skins "modarin-1.2"
+ With most of the common desktop terminals, enabling 256-color mode is easily
+ done just by setting $TERM to "xterm-256color". Ubuntu users: make sure that
+ the ncurses-term package is installed.
+ .
+ Hint: if you decide to use a 256-color skin as default skin in your mc ini,
+ note that if mc is started in a 16-color terminal, mc will pop up a warning
+ saying that 256 color skins can't be used and that mc will switch to the
+ "default" skin. To get a skin of your choice loaded instead of mc's default
+ skin, you might consider the following solution:
+ .
+ Create an alias for mc in your ~/.bashrc, like:
+ if [ $TERM = "linux" ]; then
+ if [ $USER = "root" ]; then
+ myMCFallbackSkin="modarcon16root-defbg"
+ else
+ myMCFallbackSkin="modarcon16-defbg"
+ fi
+ alias mc="mc --skin $myMCFallbackSkin"
+ alias mcedit="mcedit --skin $myMCFallbackSkin"
+ alias mcview="mcview --skin $myMCFallbackSkin"
+ alias mcdiff="mcdiff --skin $myMCFallbackSkin"
+ fi
+ Linux users: to use 256-color skins in the linux console, run fbterm,
+ set $TERM to "fbterm" and then run mc within fbterm.
+ You need to specify a gfx mode in your bootloader for the kernel to use a
+ framebuffer console instead of the default text mode.