blob: 6d667758fd254cabcce0f4e6c97e870a89e1e049 (
plain) (
blame)
1
2
3
4
5
6
7
|
#!/bin/sh
#
# Collect all your clunky JNLPs used for IPMI connection in ~/ipmis and just enjoy this nice
# graphical selector. Quick action is all that matters when death & destruction comes.
#################################################################################
find ~/ipmis/* -name '*.jnlp' -print | rofi -dmenu | xargs javaws
|