8 lines
182 B
Bash
Executable File
8 lines
182 B
Bash
Executable File
#!/bin/bash
|
|
session="$(abduco | tail -n +2 | cut -f3 | dmenu)"
|
|
if [ ! -z "$session" ]; then
|
|
if abduco | grep -q "$session"; then
|
|
urxvtc -e abduco -a "$session"
|
|
fi
|
|
fi
|