aboutsummaryrefslogtreecommitdiffstats
path: root/caja
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--caja/Makefile12
-rwxr-xr-xcaja/c16
2 files changed, 28 insertions, 0 deletions
diff --git a/caja/Makefile b/caja/Makefile
new file mode 100644
index 0000000..b0c08a5
--- /dev/null
+++ b/caja/Makefile
@@ -0,0 +1,12 @@
+.POSIX:
+include ../common.mk
+
+install:
+ $(CHECK_INSTALLED) dash
+ mkdir -p -- ~/.local/bin
+ ln -sf -- ~/.dotfiles/caja/c ~/.local/bin/
+
+uninstall:
+ -unlink -- ~/.local/bin/c
+
+.PHONY: install uninstall
diff --git a/caja/c b/caja/c
new file mode 100755
index 0000000..88f50b4
--- /dev/null
+++ b/caja/c
@@ -0,0 +1,16 @@
+#!/bin/dash
+
+for i in $(ls /dev/fd/); do
+ eval "exec $i>&-"
+done
+exec 0</dev/null
+exec 1>/dev/null
+exec 2>/dev/null
+
+if test $# = 0; then
+ exec caja --no-desktop &
+else
+ p="$(realpath -- "$*" || printf '%s\n' "$*")"
+ cd /
+ exec caja --no-desktop -- "$p" &
+fi