mirror of
https://github.com/balkian/dotfiles.git
synced 2024-11-23 12:42:29 +00:00
Flasher handles TID in lsof and other players
The default will be parole (xfce). As for the TID and lsof, I should look for a more elegant method...
This commit is contained in:
parent
3947f1b99c
commit
3ccd46b2b6
10
flasher.sh
10
flasher.sh
@ -4,6 +4,12 @@
|
|||||||
# The video can be played, but it's deleted when the flash player is closed (unless you copied it).
|
# The video can be played, but it's deleted when the flash player is closed (unless you copied it).
|
||||||
# @author: balkian
|
# @author: balkian
|
||||||
|
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
PLAYER=parole;
|
||||||
|
else
|
||||||
|
PLAYER=$1;
|
||||||
|
fi
|
||||||
|
|
||||||
destfile="$HOME/VideoCuevana$$"
|
destfile="$HOME/VideoCuevana$$"
|
||||||
# PID1=$(pgrep -f flash)
|
# PID1=$(pgrep -f flash)
|
||||||
# info=($(lsof -p $PID1 | grep -i /tmp/flash | awk '{print $2; print $9}'))
|
# info=($(lsof -p $PID1 | grep -i /tmp/flash | awk '{print $2; print $9}'))
|
||||||
@ -12,7 +18,7 @@ destfile="$HOME/VideoCuevana$$"
|
|||||||
# #echo "pid" $pid
|
# #echo "pid" $pid
|
||||||
# #echo "file" $file
|
# #echo "file" $file
|
||||||
# fdn=$(ls -l $dir | grep $file | awk '{print $9}')
|
# fdn=$(ls -l $dir | grep $file | awk '{print $9}')
|
||||||
files=$(sudo lsof 2>/dev/null | grep "Pepper Data" | awk '{gsub(/[a-Z]/,"",$4);print "/proc/"$2"/fd/"$4}')
|
files=$(sudo lsof 2>/dev/null | grep "Pepper Data" | awk '{gsub(/[a-z]/,"",$4);print "/proc/"$2"/fd/"$4}' | uniq -u)
|
||||||
|
|
||||||
echo "Files:" $files
|
echo "Files:" $files
|
||||||
for file in $files; do
|
for file in $files; do
|
||||||
@ -20,7 +26,7 @@ for file in $files; do
|
|||||||
sel=$(zenity --list --radiolist --text "Select action for: $file" --column "pick" --column "Option" TRUE "play" FALSE "copy" FALSE "link")
|
sel=$(zenity --list --radiolist --text "Select action for: $file" --column "pick" --column "Option" TRUE "play" FALSE "copy" FALSE "link")
|
||||||
case $sel in
|
case $sel in
|
||||||
play)
|
play)
|
||||||
sudo totem $file
|
sudo $PLAYER $file
|
||||||
;;
|
;;
|
||||||
link)
|
link)
|
||||||
ln -s $file $destfile && echo "Video linked successfully to $destfile." && echo "Enjoy"
|
ln -s $file $destfile && echo "Video linked successfully to $destfile." && echo "Enjoy"
|
||||||
|
Loading…
Reference in New Issue
Block a user