A great release!
Congratulation!
What about a dynamic menu at right-click on the desktop? I think it is already part of LXDE (menu-cache). I used it with Openbox --> http://mimasgpc.free.fr/openbox-menu-en.html
Thank you,
flux.
christian wrote:Maybe xarchiver would be a better archive manager than file-roller.
christian wrote:Maybe xarchiver would be a better archive manager than file-roller.
christian wrote:Maybe xarchiver would be a better archive manager than file-roller. At least at my old computer (AMD Duron 700 Mhz, 192 MB RAM) the GUI of Xarchiver is faster and smoother than file-roller.
flux wrote:What about a dynamic menu at right-click on the desktop? I think it is already part of LXDE (menu-cache). I used it with Openbox --> http://mimasgpc.free.fr/openbox-menu-en.html
mjjzf wrote:Does Xarchiver (or any application) plug into PCManFM2 like it does with Thunar? Does PCManFM have something like Thunar's Custom Actions?
mjjzf wrote:Secondly, doesn't File-Roller add a horrifying number of dependencies?
autogestion wrote:But wanted to suggest to encourage to some developer a Salix with jwm, is the one who uses Puppy and to the opinion is the best for the oldest computers.
mjjzf wrote:Does PCManFM have something like Thunar's Custom Actions?
#!/bin/bash
##script dlc directory-link-creator## open directory with pcmanfm##pizuxmepis ate gmail point com ,thx to anubisg1 IRC#lxde
##the .desktop create got the suffix (dlc-)foo.desktop for dissociate from other one
########################################################################################
DIR() {
cd $HOME
if [[ -e .config/user-dirs.dirs ]]; then
. .config/user-dirs.dirs
else
XDG_DESKTOP_DIR="$HOME/Desktop"
fi
mkdir -p $XDG_DESKTOP_DIR
if [[ $LANG = fr_* ]]; then #####check lang
TXT=$"Choisir un dossier à lier sur votre bureau"
TXT2=$"Ce lien vers ce dossier existe Déjà, choisissez en un autre ou éffacé le depuis votre bureau"
else
TXT=$"Choose a directory to link on your desktop"
TXT2=$"This directory link already exist, please choose another one or delete it from your desktop"
fi
name=$(zenity --file-selection \
--directory --title="$TXT")
if [[ $? -ne 0 ]];then exit; fi;
base=$(basename $name)
cd $XDG_DESKTOP_DIR
if [[ -e dlc-$base.desktop ]]; then
zenity --warning --text=\
"$TXT2"; cd $HOME ; DIR
else
echo "[Desktop Entry]
Comment=pcmanfm link to directory $name
Name=$base
Exec=pcmanfm $name
Icon=folder
Type=Application
Terminal=false
OnlyShowIn=LXDE;" >>dlc-$base.desktop
DIR
fi
}
DIRpizux wrote:ive just update my zenity script for create desktop pcmanfm directory launcher perhaps you could add it to openbox right clicl menu m this script is very useful for beginners on lxde try it and give me feedback