


Green Steel
GTK3/4 Themes by camshron 2 comments
i am not sure. i do not use a desktop environment, im mainly using i3 window manager and openbox with thunar as file manager i will look into this further
- Jun 16 2014

Enqueue in Audacious
Nautilus Scripts by SteffenS81 7 comments
#! /bin/sh
# A small script to enqueue media files in audacious recursively
# Written by Thura
# Modified by Phillip Cameron
is_player_present=$(ps -e | grep audacious)
walk()
{
for file in "$1"/*
do
if [ -d "$file" ];then
walk "$file"
else
if [ -n "$is_player_present" ];then
audacious --enqueue "$file"
else
audacious "$file"
fi
fi
done
}
if [ -d "$arg" ];then
walk "$arg"
else
if [ -n "$is_player_present" ];then
audacious --enqueue "$@"
else
audacious "$@"
fi
fi - Oct 29 2010
# A small script to enqueue media files in audacious recursively
# Written by Thura
# Modified by Phillip Cameron
is_player_present=$(ps -e | grep audacious)
walk()
{
for file in "$1"/*
do
if [ -d "$file" ];then
walk "$file"
else
if [ -n "$is_player_present" ];then
audacious --enqueue "$file"
else
audacious "$file"
fi
fi
done
}
if [ -d "$arg" ];then
walk "$arg"
else
if [ -n "$is_player_present" ];then
audacious --enqueue "$@"
else
audacious "$@"
fi
fi - Oct 29 2010