• Hey, guest user. Hope you're enjoying NeoGAF! Have you considered registering for an account? Come join us and add your take to the daily discourse.

Custom Steam icons for Grid View

Salsa

Member
oh and I made this one for those who preordered Borderlands 2

8nT4t.jpg


pretty bad and quick, will probably do a better one (that fits more with the one for the first game) later
 
anyone found a good one for Sanctum Beta yet? that's a thing now apparently, and no Icon as with the TF2 one

I made something quickly the other day when it popped up:

LajM5.jpg


Note: I'm terrible at this type of stuff so feel free to mock/not use. Or improve drastically if that's your sort of thing.
 
Got three Sanctum images with repositioned text (didn't know the best place to put the font).

lnzgV.png


aUnbk.png


SVgX0.png


Aaaand here's one for Hitman Codename 47.

f1irD.png


And another one (that's going to have tiny baby font in grid view).

ga3Uh.png
 
I've been jumping back into some PS2 games via PCSX2 so I drummed up some grid artwork. I have zero graphical skills (I used Irfanview and mspaint to crop/adjust) and these are all based on either the title screen, or art assets found on Google so they aren't the greatest. But if anyone's interested here they are

Metal Gear Solid 2: Substance
kh2ZH.png


Metal Gear Solid 3: Subsistence
ac3A5.png


Dragon Quest VIII
a9Qxm.png


Shadow Hearts: From the New World
oAzQl.png


Shin Megami Tensei: Nocturne
QJz30.png


Tales of Legendia
ZCwgs.png


Tales of Rebirth
grTNX.png


Kingdom Hearts / Kingdom Hearts Final Mix
vBsqX.png

gHav1.png


Kingdom Hearts II / Kingdom Hearts II Final Mix
AwBmG.png

mKz3G.png


Final Fantasy X
O25Gv.jpg


Final Fantasy XII
zm0Ny.png


Lumines Plus
cGiKC.png


Dawn of Mana
nJgl4.png


Gitaroo Man
LGT92.jpg


Xenosaga II
Ppem1.png


Xenosaga III
Iqbxz.png


Star Ocean: Till the End of Time - Director's Cut
qmTuy.png


Tokyo Bus Guide 2
yuepC.png


GrimGrimoire
h5dFQ.png


Valkyrie Profile 2: Silmeria
WQbcD.png


Ryu ga Gotoku 2
w4JC5.png
 

Greyvvolf

Member
I made the first two icons for Minecraft and the Just Cause 2 Multiplayer Mod. The third is for the DayZ Mod, which I didn't make. I found it while browsing for icons for DayZ, thought you guys would like it.
Edit: Made one for Cobalt.
Minecraft_Steam_Icon.png
Cobalt_Steam_Icon.png

JC2MP_Steam_Icon.png

46af73894d026a31ca0cacc15ca8088a2e1f6dfd.jpg
 
Rather than copying the entire emulator to multiple places to allow for steam grid images, I created executables in AutoIt that start the emulator with command line options. That way you only have the emulator in one location (which saves space and effort when updating it).

Here's the script for PCSX2, it fetches the path PCSX2 from the environment variable PCSX2. (that way when you update PCSX2, perhaps to a different filename, you only have to update the environment variable rather than every executable)
Code:
#RequireAdmin

; Get path to PCSX2
Dim $env = EnvGet("PCSX2")
Dim $envPos = StringInStr($env, '\', 1, -1)

; Get which game to play
Dim $game = StringTrimRight(@AutoItExe, 4)

; Run
Run ( '"' & $env & '" --fullscreen "' & $game & '"', StringMid($env, 1, $envPos) )

The image it starts is the same as the executable's name minus .exe (in the same directory). So if you want to it to start Fatal_Frame.iso you name it Fatal_Frame.iso.exe.


The same thing could be done for any emulator that supports commandline arguments. I did it myself for epsxe and Project64.
Env var: EPSXE
Code:
; Get path to ePSXe
Dim $env = EnvGet("EPSXE")
Dim $envPos = StringInStr($env, '\', 1, -1)

; Get which game to play
Dim $game = StringTrimRight(@AutoItExe, 4)

; Run
Run ( '"' & $env & '" -nogui -loadbin "' & $game & '"', StringMid($env, 1, $envPos) )

Env var: PROJECT64
Code:
#RequireAdmin

; Get path to Project64
Dim $env = EnvGet("PROJECT64")
Dim $envPos = StringInStr($env, '\', 1, -1)

; Get which game to play
Dim $game = StringTrimRight(@AutoItExe, 4)

; Run
Run ( '"' & $env & '" ' & $game, StringMid($env, 1, $envPos) )


LSD: Dream Emulator
7Jjms.png


UFO A Day in the Life
WFVjC.png


Moon - Remix RPG Adventure
BZTOK.png


Wanko to Kurasou (fix of this)
LucWu.png
 

Gvaz

Banned
I just learned about this last night.

This is pretty cool, though I never ever use grid view (too big, I always use compact mode with a compact skin because I hate GUI's that take up excessive space for the sake of looking pretty).

Still, it's nice they let everyone do this.
 
Top Bottom