commit 78a3192a042990e5b818b0ff14ba39d98251201c Author: zlax Date: Sun Dec 19 20:49:53 2021 +0300 init diff --git a/README.md b/README.md new file mode 100644 index 0000000..f314550 --- /dev/null +++ b/README.md @@ -0,0 +1,46 @@ +Midnight Commander with scrollbar, mountpoints menu and F3 shows dirsize +====== + +![mc](https://dev.ussr.win/zlax/mc/raw/branch/master/mc.png) + +**patches:** + +1-scrollbar.patch - Scrollbar in active panel + +2-f3-dirsize.patch - F3 shows dirsize + +3-selmnt.patch - F11/F12 (Shift+F1/F2) Mountpoints menu + +Authors: Oleg «Olegarch» Konovalov, [ose](https://www.linux.org.ru/people/ose/profile) + +**files:** + +mc-4.8.19-patches_ose.tbz - [mc patches pack by ose](https://www.linux.org.ru/forum/general/13373610?cid=13374027) + +mc-4.8.26-patches.tar.gz - mc patches for mc-4.8.26 + +mc_4.8.26-1.1_amd64.deb, mc_4.8.26-1.1_arm64.deb, mc_4.8.26-1.1_armhf.deb, mc-data_4.8.26-1.1_all.deb - mc debian packages for amd64, arm64 and armhf + +config_samples/ - config sample for advanced Mountpoints menu + +### Installation: + +**1. Install build dependencies:** +debian based: +``` +sudo apt-get build-dep mc +``` +redhat based: +``` +sudo dnf builddep mc +``` +**2. Configure:** +``` +./autogen.sh +./configure +``` +**3. Compile and install:** +``` +make +sudo make install +``` diff --git a/config_samples/.config/mc/hotlist b/config_samples/.config/mc/hotlist new file mode 100644 index 0000000..66893c6 --- /dev/null +++ b/config_samples/.config/mc/hotlist @@ -0,0 +1,5 @@ +ENTRY "~r/root" URL "/root" +ENTRY "~ddownloads" URL "/home/user/Downloads" +ENTRY "~mmusic" URL "/home/user/Music" +ENTRY "~vvideo" URL "/home/user/Videos" +ENTRY "~o/sftp:/user@rpi/home" URL "/sftp://user@192.168.0.29/home/user" diff --git a/config_samples/.config/mc/ini b/config_samples/.config/mc/ini new file mode 100644 index 0000000..02f914e --- /dev/null +++ b/config_samples/.config/mc/ini @@ -0,0 +1,7 @@ +[Midnight-Commander] +selmnt_with_hotlist=true +selmnt_always_show=false +selmnt_separators_name_show=true + +[Misc] +selmnt_filter=^(/boot/.*|/boot|/dev/.*|/dev|/proc/.*|/proc|/run/.*|/run|/sys/.*|/sys|/tmp/.*|/tmp|/var/.*|/var)$ diff --git a/mc-4.8.19-patches_ose.tbz b/mc-4.8.19-patches_ose.tbz new file mode 100644 index 0000000..2492c4b Binary files /dev/null and b/mc-4.8.19-patches_ose.tbz differ diff --git a/mc-4.8.26-patches.tar.gz b/mc-4.8.26-patches.tar.gz new file mode 100644 index 0000000..67617cc Binary files /dev/null and b/mc-4.8.26-patches.tar.gz differ diff --git a/mc-data_4.8.26-1.1_all.deb b/mc-data_4.8.26-1.1_all.deb new file mode 100644 index 0000000..c783873 Binary files /dev/null and b/mc-data_4.8.26-1.1_all.deb differ diff --git a/mc.png b/mc.png new file mode 100644 index 0000000..836a7ac Binary files /dev/null and b/mc.png differ diff --git a/mc_4.8.26-1.1_amd64.deb b/mc_4.8.26-1.1_amd64.deb new file mode 100644 index 0000000..1864fce Binary files /dev/null and b/mc_4.8.26-1.1_amd64.deb differ diff --git a/mc_4.8.26-1.1_arm64.deb b/mc_4.8.26-1.1_arm64.deb new file mode 100644 index 0000000..eef9b7c Binary files /dev/null and b/mc_4.8.26-1.1_arm64.deb differ diff --git a/mc_4.8.26-1.1_armhf.deb b/mc_4.8.26-1.1_armhf.deb new file mode 100644 index 0000000..f11aeb5 Binary files /dev/null and b/mc_4.8.26-1.1_armhf.deb differ