Difference between revisions of "Borderless Gaming"
Jump to navigation
Jump to search
(Link update) |
|||
Line 1: | Line 1: | ||
− | Borderless gaming is a little app that can be used to make a game borderless fullscreen that does not naturally support it. It is very useful for games that run in exclusive fullscreen that you can not | + | Borderless gaming is a little app that can be used to make a game borderless fullscreen that does not naturally support it. It is very useful for games that run in exclusive fullscreen that you can not show the Sinden border on top. |
You can download it from [https://github.com/Codeusa/Borderless-Gaming/releases Code USA's GitHub] | You can download it from [https://github.com/Codeusa/Borderless-Gaming/releases Code USA's GitHub] | ||
+ | |||
+ | === Example Usage: Forcing Fullscreen on Luigi’s Mansion === | ||
+ | |||
+ | ===== Borderless Gaming: ===== | ||
+ | |||
+ | * Download and install [https://github.com/Codeusa/Borderless-Gaming/releases Borderless Gaming] | ||
+ | * Launch Borderless Gaming (BorderlessGaming.exe). | ||
+ | ** Options > Enable Start Minimized To Tray | ||
+ | |||
+ | ===== Luigi's Mansion: ===== | ||
+ | |||
+ | * Enable Windowed in TeknoParrot’s Game Settings menu. | ||
+ | * Launch Luigi’s Mansion and minimize the game. | ||
+ | |||
+ | ===== Borderless Gaming GUI: ===== | ||
+ | |||
+ | * Under ''Applications'', highlight ''VACUUM'' and click on the right arrow to add it to '''Favorites'''. | ||
+ | |||
+ | [[File:BorderlessGaming Luigi.png|none|thumb|Applications]] | ||
+ | |||
+ | |||
+ | Under ''Favorites'', right-click on ''VACUUM'' and set to Full Screen and Auto-Maximize. | ||
+ | [[File:BorderlessGaming Luigi2.png|none|thumb|Favorites]] | ||
+ | |||
+ | ===== Example AHK Script: ===== | ||
+ | |||
+ | * This script will launch ''Borderless Gaming'' before starting the game. | ||
+ | * The AHK script must be compiled and run as administrator. | ||
+ | <syntaxhighlight lang="ahk"> | ||
+ | #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | ||
+ | ; #Warn ; Enable warnings to assist with detecting common errors. | ||
+ | SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | ||
+ | SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | ||
+ | |||
+ | #SingleInstance Force | ||
+ | |||
+ | Run, “D:\Borderless Gaming\BorderlessGaming.exe" | ||
+ | |||
+ | Sleep, 1000 | ||
+ | Run, D:\Teknoparrot\TeknoParrotUi.exe --profile=LuigisMansion.xml | ||
+ | |||
+ | ~Esc:: | ||
+ | Process,Close,TeknoParrotUi.exe | ||
+ | Run,taskkill /im "TeknoParrotUi.exe" /F | ||
+ | Process,Close,BorderlessGaming.exe | ||
+ | Run,taskkill /im "BorderlessGaming.exe" /F | ||
+ | ExitApp | ||
+ | return | ||
+ | </syntaxhighlight> |
Revision as of 06:15, 20 December 2022
Borderless gaming is a little app that can be used to make a game borderless fullscreen that does not naturally support it. It is very useful for games that run in exclusive fullscreen that you can not show the Sinden border on top.
You can download it from Code USA's GitHub
Example Usage: Forcing Fullscreen on Luigi’s Mansion
Borderless Gaming:
- Download and install Borderless Gaming
- Launch Borderless Gaming (BorderlessGaming.exe).
- Options > Enable Start Minimized To Tray
Luigi's Mansion:
- Enable Windowed in TeknoParrot’s Game Settings menu.
- Launch Luigi’s Mansion and minimize the game.
Borderless Gaming GUI:
- Under Applications, highlight VACUUM and click on the right arrow to add it to Favorites.
Under Favorites, right-click on VACUUM and set to Full Screen and Auto-Maximize.
Example AHK Script:
- This script will launch Borderless Gaming before starting the game.
- The AHK script must be compiled and run as administrator.
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
#SingleInstance Force
Run, “D:\Borderless Gaming\BorderlessGaming.exe"
Sleep, 1000
Run, D:\Teknoparrot\TeknoParrotUi.exe --profile=LuigisMansion.xml
~Esc::
Process,Close,TeknoParrotUi.exe
Run,taskkill /im "TeknoParrotUi.exe" /F
Process,Close,BorderlessGaming.exe
Run,taskkill /im "BorderlessGaming.exe" /F
ExitApp
return