You are here > Les forums > Your creations. > Script showing all installed programs and their wine versions sv ru pl es fr

Forums

Script showing all installed programs and their wine versions

New topic  - Reply
Author Replies
hasi Sunday 10 February 2008 at 15:44 - [Quote]
Membre

Membre

Hey all,
the following is a pretty basic script that has proven very useful for me. It creates a list of all apps installed under POL, including their wine versions. It helps me to keep track of things.

Console:

#!/bin/bash
cd ~/.PlayOnLinux/configurations/installed
echo "-------------------------------"
# look at all script names in the POL script directory
for ARG in *
do
        # check if they are assigned to a specific wine version
        WV=`grep WineVersions "$ARG"`
        WV=${WV##PATH="$HOME/.PlayOnLinux/WineVersions/}
        WV=${WV%%/usr/bin/:$PATH"}
        # take the script name, add some spaces to make it look pretty
        ARG="$ARG""                         "
        ARG=`expr substr "$ARG" 1 24`
        # print the script name and the wine version (if existing)
        echo "$ARG" $WV
done
echo "-------------------------------"
exit 0


If more people think this is very useful, something like that may be included into POL? Maybe like a menu function that invokes the POL shell and executes the script?
Even better, of course, would be a function, where the wine version is shown in the POL window, maybe to the right side of the program icons?
Let me know what you think.
--hasi
Quentin PÂRIS Friday 15 February 2008 at 4:46 - [Quote]
Admin

Admin
Yep, good idea. I will add this kind of feature in the next version of PlayOnLinux

Thank's
Il n'y a rien à voir ici