Skip to content
This repository has been archived by the owner on May 19, 2022. It is now read-only.

Dmenu Frontend

Théo Laurent edited this page Dec 22, 2016 · 1 revision

Here is a small dmenu script for opening recent files/directories

#!/bin/bash
exec xdg-open "$(fasd -al |\
    tac |\
    sed "s:$HOME:~:" |\
    dmenu "$@" |\
    sed "s:~:$HOME:")"
Clone this wiki locally