Setup for Total Commander
github.com/Tensionix/setup-for-total-commander ↗
Eine vollständige Installation des bekannten Dateimanagers, fein abgestimmt über fast alles, was er heute kann: eine große Auswahl an Editoren, Menüs und Systemeinstellungen — ohne die Panels zu verlassen. Acht Megabyte Konfiguration statt hundertdreißig, und keine einzige fremde Datei. Total Commander selbst ist nicht enthalten und wird nicht verändert: Weitergegeben wird nur das Eigene — Panels, Menüs, Farben, Skripte, Konfigurationen — und als Ganzes auf ein frisches Programm aufgespielt. Fehlt der Manager noch, holt ihn das Set selbst von der Seite des Entwicklers: Der Installer wird direkt gelesen, ohne fremde Entpacker. Für alle, die einem Kollegen ihre Arbeitseinrichtung geben wollen und nicht einen Build mit fremden Dateien darin. Lieber nichts installieren? Dann nehmen Sie TC Portable.
2 Downloads über GitHubAudion Setup for Total Commander
A file manager configuration that can be distributed.
Why It Exists
A configured file manager means panels, menus, colours, shortcuts, embedded scripts. It takes years to assemble and travels badly: the settings are spread across several files, some in a non-standard encoding, some tied to paths.
The Central Decision
The manager itself is not included and is not modified.
The package contains only what is ours: panels, menus, colours, scripts, configuration. All of it is applied to a freshly installed manager as complete baselines — not piecemeal, and not by editing what is already there.
From which the main point follows: the package can be distributed. It contains no third-party program, so there is no question of the right to redistribute one.
Next
- Run the batch file in the root.
Das Programm ist portabel: der entpackte Ordner ist das installierte Programm. In die Registry wird nichts geschrieben; zum Entfernen den Ordner löschen.
$name = "Audion_Setup_for_Total_Commander_v1.0.1_Full.zip"
Invoke-WebRequest "https://audion.dev/get/setup-for-total-commander/1.0.1/Audion_Setup_for_Total_Commander_v1.0.1_Full.zip" -OutFile $name
Invoke-WebRequest "https://audion.dev/get/setup-for-total-commander/1.0.1/Audion_Setup_for_Total_Commander_v1.0.1_Full.zip.sha256" -OutFile "$name.sha256"
$want = (Get-Content "$name.sha256").Split(" ")[0]
$have = (Get-FileHash $name -Algorithm SHA256).Hash.ToLower()
if ($want -ne $have) { throw "Prüfsumme stimmt nicht: der Download ist beschädigt" }
Expand-Archive $name -DestinationPath ".\setup-for-total-commander"