6 lines
166 B
Bash
Executable File
6 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
socketdir="${XDG_CACHE_HOME:-$HOME/.cache}/dtach"
|
|
mkdir -p "$socketdir"
|
|
command="$(dmenu_path | dmenu)"
|
|
urxvtc -e dtach -A "$socketdir/$command" $command
|