Posts: 670
Joined: Jan 2011
Reputation:
4
Great work teeedubb !!! I am very impressed with this addon and the support you provide.
Posts: 100
Joined: Jan 2013
Reputation:
0
Is there any chance to include an option to start Steam in normal desktop mode and not Big Picture mode?
I'm using my HTPC as a Home Streaming client (which works really well) but Big Picture mode is slow and glitchy. I've already edited the AHK script to do it this way myself but I'd like to keep up to date with the latest developments as you seem to be doing a lot of work to improve the add-on and I'm stuck with a much older version.
Kind regards
Dave
Posts: 36
Joined: Jun 2011
Reputation:
0
Hi;
Thank you for your hard work.
Posts: 6
Joined: Feb 2014
Reputation:
0
Thank you for your work teedubb.
I am using XBMC on my Mac Mini, and unfortunately, your case switch statement does not work for OSX.
I have been tweaking it a bit and managed to get it working(while running the script outside XBMC and with Advanced Launcher), however not with your add-on.
Also, if Steam is already running, it will give me an error message saying another instance is already running, so somehow the "$STEAM_LOCATION steam://open/bigpicture" does not work.
I have also commented out the while loop as I currently would like to have XBMC going in the background. (I may change this though, if I see my Steam In Home Stream gaming lagging)
Here is what I have so far:
XBMC_PID=$(ps -A | grep XBMC.app | grep -v Helper | grep -v grep | awk '{print $1}')
XBMC_BIN=$(ps -A | grep XBMC.app | grep -v Helper | grep -v grep | awk '{print $4}')
STEAM_PID=$(ps -A | grep Steam.app | grep -v Helper | grep -v grep | awk '{print $1}')
STEAM_BIN=$(ps -A | grep Steam.app | grep -v Helper | grep -v grep | awk '{print $4}')
STEAM_LOCATION=/Applications/Steam.app/Contents/MacOS/steam.sh
XBMC_LOCATION=/Applications/XBMC.app/Contents/MacOS/XBMC
# Is Steam running?
if [ $STEAM_PID ];
then
$STEAM_LOCATION steam://open/bigpicture #steam is brought to focus better this way # Does not work!
echo "Steam already running"
else
echo "Steam not running, launching"
# kill $XBMC_PID
$STEAM_LOCATION -bigpicture
fi
# Wait for Steam to exit
# while [ $STEAM_PID ];
# do
# echo "Steam running"
# sleep 1
# done
# $XBMC_LOCATION &
#
As you can see, I haven't changed that much in your code (only OSX default application location and a minor change of awk command regarding the PID(from $5 to $4))
Again thank you for this add-on, and I hope this will be of some help to others.
Posts: 6
Joined: Feb 2014
Reputation:
0
Hm, have you tried follow the Tony Mac OSX guide? (Im not sure if Im allowed to link the page, but its the first hit in google)
Also, the case statement is working per se(uname -s will give me Darwin), its just that when grepping for the processes, OSX needs it to be case sensitive.
Trying to run steam-launch.sh directly in terminal does work, however trying to launch it from XBMC gives me just a loading icon and then nothing.
If I get some time later today I will try to debug it some more.
Posts: 274
Joined: Mar 2011
Reputation:
3
Hi, I've just updated from 0.5.2 to 0.9.8 and it doesn't work. Steam bpm doesn't launch (add-on settings are correct).
The only version that works is 0.5.2 so I reinstall it.
Posts: 22
Joined: Jul 2013
Reputation:
2
The automatic update to 0.9.8 broke Steam Launcher on my Windows 7 install as well. Reverting to 0.9.7 fixed the problem for me. I haven't had time to look into the problem other than glancing at the log files, which only show the add-on thread starting and then terminating. On-screen, the "working" dialog in XBMC pops up for a few seconds then closes. XBMC isn't terminated and steam isn't launched. The behavior is the same whether steam is already running in the background or hasn't been started.
I'll dig into it a bit more later today and see if I can isolate the problem.
Posts: 670
Joined: Jan 2011
Reputation:
4
2014-02-15, 15:17
(This post was last modified: 2014-02-15, 15:21 by dkplayaclub.)
Same here. 0.9.8 no longer works for me.
How can I roll back to 0.9.7?
Posts: 3,545
Joined: Mar 2010
Reputation:
120
2014-02-15, 15:57
(This post was last modified: 2014-02-15, 16:18 by teeedubb.)
In the add on information via system > addons... Ill have a look to see what the problem could be.
Posts: 670
Joined: Jan 2011
Reputation:
4
The rollback option is greyed out and the original post does not have links for the newer versions, which is why I was asking.
Posts: 670
Joined: Jan 2011
Reputation:
4
Thanks teedubb. Hope you figure the bug out. I have been using this addeon non-stop since I discovered it.