xaizek / vifm (License: GPLv2+) (since 2018-12-07)
Vifm is a file manager with curses interface, which provides Vi[m]-like environment for managing objects within file systems, extended with some useful ideas from mutt.
Commit b27dbbe4e6518036f9b42417067289ae31252f63

Correct unusual formatting in vifm-media-osx
Author: xaizek
Author date (UTC): 2025-07-23 21:24
Committer name: xaizek
Committer date (UTC): 2025-07-23 21:24
Parent(s): c1abe08f24cd6620fe85921ebe654e03a958b624
Signing key: 99DC5E4DB05F6BE2
Tree: c2a64c78f356f711588b5d5cf6e9c05398e0b277
File Lines added Lines deleted
data/vifm-media-osx 1 2
File data/vifm-media-osx changed (mode: 100755) (index 4727d8710..7aec783df)
... ... def list(args):
41 41 """List media""" """List media"""
42 42 try: try:
43 43 # Use '-plist' to get XML output # Use '-plist' to get XML output
44 output = subprocess.check_output(
45 [DISKUTIL, "list", "-plist"])
44 output = subprocess.check_output([DISKUTIL, "list", "-plist"])
46 45 except subprocess.CalledProcessError: except subprocess.CalledProcessError:
47 46 print("Failed to execute '{}'".format(DISKUTIL), file=sys.stderr) print("Failed to execute '{}'".format(DISKUTIL), file=sys.stderr)
48 47 return(1) return(1)
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/vifm

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/vifm

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master