2017-04-23 17:42:54 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# #############################################################################
|
|
|
|
# nlay: a customizable script to play files in different apps by file type
|
|
|
|
#
|
|
|
|
# usage: nlay file type
|
|
|
|
#
|
|
|
|
# MUST READ:
|
|
|
|
#
|
|
|
|
# 1. Feel free to change the default apps to your favourite ones.
|
2017-06-05 04:54:28 +00:00
|
|
|
# If you change the app for a group you may also need to modify the opts and
|
|
|
|
# bg settings. If bg is set the app is detached and started in the background
|
|
|
|
# in silent mode.
|
2017-04-23 17:42:54 +00:00
|
|
|
#
|
|
|
|
# The bg setting depends on personal preference and type of app, e.g.,
|
|
|
|
# I would start vim (CLI) in the foreground but Sublime Text (GUI) in the
|
2017-06-06 14:46:32 +00:00
|
|
|
# background.
|
2017-04-23 17:42:54 +00:00
|
|
|
#
|
|
|
|
# Check (and TOGGLE as you wish) the default bg settings.
|
|
|
|
#
|
|
|
|
# 2. Detached apps are not killed when nnn exits. Use kill(1) or killall(1) to
|
|
|
|
# to stop console based background apps.
|
|
|
|
#
|
2017-06-05 18:26:38 +00:00
|
|
|
# 3. nlay is OVERWRITTEN during nnn upgrade. You can store your custom nlay in a
|
2017-05-14 15:30:46 +00:00
|
|
|
# location other than the default and have an alias with nnn option '-p' to
|
|
|
|
# invoke it. Remember it might break or lack new capabilities added to nlay
|
|
|
|
# in future releases. Check the file diff once in a while.
|
2017-04-23 17:42:54 +00:00
|
|
|
#
|
|
|
|
# Author: Arun Prakash Jana
|
|
|
|
# Email: engineerarun@gmail.com
|
2017-09-04 04:53:02 +00:00
|
|
|
# Homepage: https://github.com/jarun
|
|
|
|
# Copyright © 2016-2017 Arun Prakash Jana
|
2017-04-23 17:42:54 +00:00
|
|
|
# #############################################################################
|
|
|
|
|
|
|
|
|
|
|
|
# Enable the lines below to handle file by extension
|
|
|
|
# This is provided for using a custom player for specific files
|
|
|
|
# $ext holds the extension
|
|
|
|
<<ENABLE_FILE_TYPE_HANDLING
|
|
|
|
fname=$(basename "$1")
|
|
|
|
if [[ $fname != *"."* ]]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
ext="${fname##*.}"
|
|
|
|
if [ -z "$ext" ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# bash 4.0 way to switch to lowercase
|
|
|
|
ext="${ext,,}"
|
|
|
|
|
|
|
|
# handle this extension and exit
|
|
|
|
ENABLE_FILE_TYPE_HANDLING
|
|
|
|
|
|
|
|
|
2017-06-06 14:46:32 +00:00
|
|
|
#------------ PLAINTEXT (UNUSED) ------------
|
2017-06-05 18:26:38 +00:00
|
|
|
if [ "$2" == "text" ]; then
|
2017-06-05 04:54:28 +00:00
|
|
|
app=("vim")
|
2017-04-23 17:42:54 +00:00
|
|
|
|
2017-06-05 04:54:28 +00:00
|
|
|
opts=("")
|
2017-04-23 17:42:54 +00:00
|
|
|
|
2017-06-05 04:54:28 +00:00
|
|
|
bg=("")
|
2017-05-15 14:44:13 +00:00
|
|
|
|
|
|
|
#----------------- SEARCH -------------------
|
2017-06-05 04:54:28 +00:00
|
|
|
elif [ "$2" == "search" ]; then
|
|
|
|
app=("gnome-search-tool"
|
|
|
|
"catfish")
|
2017-05-15 14:44:13 +00:00
|
|
|
|
2017-08-17 03:13:24 +00:00
|
|
|
opts=("--path"
|
2017-06-05 04:54:28 +00:00
|
|
|
"--path")
|
2017-05-15 14:44:13 +00:00
|
|
|
|
2017-06-05 04:54:28 +00:00
|
|
|
bg=(">/dev/null 2>&1 &"
|
|
|
|
">/dev/null 2>&1 &")
|
2017-06-04 18:46:43 +00:00
|
|
|
|
|
|
|
#--------------- SCREENSAVER ----------------
|
2017-06-05 04:54:28 +00:00
|
|
|
elif [ "$2" == "screensaver" ]; then
|
2017-06-04 18:46:43 +00:00
|
|
|
app=vlock
|
2017-06-05 04:54:28 +00:00
|
|
|
|
2017-06-04 18:46:43 +00:00
|
|
|
#opts=
|
|
|
|
|
|
|
|
#bg=">/dev/null 2>&1 &"
|
|
|
|
|
2017-06-05 04:54:28 +00:00
|
|
|
type -P $app &>/dev/null &&
|
2017-06-04 18:46:43 +00:00
|
|
|
eval $app $opts $bg
|
2017-05-15 14:44:13 +00:00
|
|
|
exit 0
|
|
|
|
fi
|
2017-06-05 04:54:28 +00:00
|
|
|
|
2017-08-17 03:13:24 +00:00
|
|
|
#----------------- RUN APP ------------------
|
2017-06-05 04:54:28 +00:00
|
|
|
for index in ${!app[@]}
|
|
|
|
do
|
|
|
|
type -P ${app[$index]} &>/dev/null &&
|
2017-06-06 16:07:16 +00:00
|
|
|
eval ${app[$index]} ${opts[$index]} "\"$1\"" ${bg[$index]} &&
|
|
|
|
break
|
2017-06-05 04:54:28 +00:00
|
|
|
done
|