summaryrefslogtreecommitdiffstats
path: root/.dmenu
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2015-08-21 03:14:10 -0700
committerThibaut Horel <thibaut.horel@gmail.com>2015-08-21 03:25:54 -0700
commit1212a9d32dbc809bcce679b9d36f3a233af3193e (patch)
tree0c5927010e7b51eaccc412f44f076c67971fbe61 /.dmenu
parent56ce88c7944443d7e097847a6bf0dadb66859c24 (diff)
downloaddotfiles-1212a9d32dbc809bcce679b9d36f3a233af3193e.tar.gz
Switch to stow
Diffstat (limited to '.dmenu')
-rw-r--r--.dmenu/dmenurc1
-rwxr-xr-x.dmenu/open.sh6
2 files changed, 0 insertions, 7 deletions
diff --git a/.dmenu/dmenurc b/.dmenu/dmenurc
deleted file mode 100644
index 2e68bd1..0000000
--- a/.dmenu/dmenurc
+++ /dev/null
@@ -1 +0,0 @@
-DMENU="dmenu -fn Terminus-10 -h 20"
diff --git a/.dmenu/open.sh b/.dmenu/open.sh
deleted file mode 100755
index a9b9da6..0000000
--- a/.dmenu/open.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#! /bin/bash
-. $HOME/.dmenu/dmenurc
-FILE=$(find ~ -path "$HOME/.*" -prune -o -path "*.git" -prune -o -mtime -7 -type f -printf '%TY-%Tm-%Td %TT\t%p\n' | sort -r | cut -f2 | cut -d/ -f4- | $DMENU -p Open)
-if [ -n "${FILE}" ]; then
- xdg-open $HOME/$FILE
-fi