configuration/local/bin/abduco_list

8 lines
182 B
Plaintext
Raw Normal View History

#!/bin/bash
session="$(abduco | tail -n +2 | cut -f3 | dmenu)"
if [ ! -z "$session" ]; then
2016-02-02 08:52:32 +01:00
if abduco | grep -q "$session"; then
urxvtc -e abduco -a "$session"
fi
fi