Among the main applications run on my Arch system are:-
dmix
;where it allows software mixing (the ability to play multiple sound files or applications at the same time through the same device) in an easy to use syntax and without the hassle of installing/understanding a new application first.
python
, named [2] ranger
(click [this link] for an image). To add a keybind that moves files to a created directory ~/.Trash/
with DD, add the following line to ~/.config/ranger/rc.conf:map DD shell mv -t /home/${USER}/.Trash %s
Some commands then need to be defined following the above example. Add the following entry to ~/.config/ranger/commands.py to empty the trash directory ~/.Trash.
class empty(Command):
""":empty
Empties the trash directory ~/.Trash
"""
def execute(self):
self.fm.run("rm -rf /home/myname/.Trash/{*,.[^.]*}")
To use it, type :empty
and Enter with tab completion as desired.