rtfm-filemanager 3.14.1592 → 3.15
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/bin/rtfm +8 -5
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 262ffa40c282512971254207ef6a81132d547e3bf709f84cb5ea53a3643ae5b6
|
4
|
+
data.tar.gz: 930ba4d15a5bd5880b27d035ee885c61577050d4a5f842a21e1b681e895516b3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 05f5ccadcf288aeb60ebc4a50e5ccec49c6d081e8a6a1489e17e54b6a05258b5baa0d832345fd72eafaa4b7b81acb81fb8b820c1e8ec5f15e01ed015bb59f7d2
|
7
|
+
data.tar.gz: c064e8f83e4594e671d6baa8a06ec4d9fb3cc7e711e34b23799ea60a1d35717cf8c89ad70d92a1cbdbc6b92f3e717b4bcfd98f509eab5f86b35b9e3433590206
|
data/bin/rtfm
CHANGED
@@ -14,7 +14,7 @@
|
|
14
14
|
# for any damages resulting from its use. Further, I am under no
|
15
15
|
# obligation to maintain or extend this software. It is provided
|
16
16
|
# on an 'as is' basis without any expressed or implied warranty.
|
17
|
-
@version = "3.
|
17
|
+
@version = "3.15"
|
18
18
|
|
19
19
|
# PRELIMINARIES
|
20
20
|
@help = <<HELPTEXT
|
@@ -1066,7 +1066,9 @@ def list_dir(active) # LIST CONTENT OF A DIRECTORY (BOTH active AND RIGHT WINDOW
|
|
1066
1066
|
base_length = base_name.length
|
1067
1067
|
ext_name = File.extname(str)
|
1068
1068
|
ext_length = ext_name.length
|
1069
|
-
nbl = win.maxx -
|
1069
|
+
nbl = win.maxx - 5 - ext_length # nbl: new_base_length
|
1070
|
+
nbl -= 1 if dir != "" # Account for one extra character
|
1071
|
+
nbl -= 1 if link != "" # Account for one extra character
|
1070
1072
|
str = base_name[0..nbl] + "…" + ext_name
|
1071
1073
|
end
|
1072
1074
|
if !active and ix == win.maxy - 1 # Add indicator of more at bottom @w_r list
|
@@ -1401,8 +1403,8 @@ def sysinfo
|
|
1401
1403
|
cpu = "CPUs = " + `nproc`.chop + " "
|
1402
1404
|
cpuinfo = `lscpu`
|
1403
1405
|
cpu += cpuinfo[/^.*Model name:\s*(.*)/, 1] + " "
|
1404
|
-
cpu += "Max: " + cpuinfo[/^.*CPU max MHz:\s*(.*)/, 1]
|
1405
|
-
cpu += "Min: " + cpuinfo[/^.*CPU min MHz:\s*(.*)/, 1]
|
1406
|
+
cpu += "Max: " + cpuinfo[/^.*CPU max MHz:\s*(.*)/, 1].to_i.to_s + "MHz "
|
1407
|
+
cpu += "Min: " + cpuinfo[/^.*CPU min MHz:\s*(.*)/, 1].to_i.to_s + "MHz\n\n"
|
1406
1408
|
text += [[154, 0, cpu]]
|
1407
1409
|
mem = `free -h` + "\n"
|
1408
1410
|
text += [[229, 0, mem]]
|
@@ -1411,7 +1413,8 @@ def sysinfo
|
|
1411
1413
|
disk = `df -H | head -8`
|
1412
1414
|
text += [[172, 0, disk]]
|
1413
1415
|
dmesg = "\nDMESG (latest first):\n"
|
1414
|
-
|
1416
|
+
dcmd = `dmesg 2>/dev/null | tail -6`.split("\n").sort.reverse.join("\n")
|
1417
|
+
dcmd != "" ? dmesg += dcmd : dmesg += "dmesg requires root, run 'sudo sysctl kernel.dmesg_restrict=0' if you need permission\n"
|
1415
1418
|
text += [[219, 0, dmesg]]
|
1416
1419
|
w_r_info(ansifix(text))
|
1417
1420
|
rescue
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rtfm-filemanager
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: '3.15'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Geir Isene
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: curses
|
@@ -48,7 +48,7 @@ description: 'A full featured terminal browser with syntax highlighted files, im
|
|
48
48
|
shown in the terminal, videos thumbnailed, etc. You can bookmark and jump around
|
49
49
|
easily, delete, rename, copy, symlink and move files. RTFM has a a wide range of
|
50
50
|
other features. New in 3.14: Better error handling. 3.14.1: Fixed bug in launching
|
51
|
-
rtfm without the launcher ''r''. 3.
|
51
|
+
rtfm without the launcher ''r''. 3.15: Fixed System Info panel (key = ''S'')'
|
52
52
|
email: g@isene.com
|
53
53
|
executables:
|
54
54
|
- rtfm
|