This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$BetterJoy = "D:\Programs\BetterJoy\BetterJoyForCemu.exe" | |
$CEMU = "D:\WiiU\CEMU\Cemu.exe" | |
$GamePath = "`"D:\WiiU\Games\BOTW\Game\The Legend of Zelda Breath of the Wild [ALZE01]\code\U-King.rpx`"" | |
Start-Process -FilePath $BetterJoy -WorkingDirectory (Get-Item $BetterJoy).DirectoryName | |
Start-Process -FilePath $CEMU -WorkingDirectory (Get-Item $CEMU).DirectoryName -ArgumentList "-g",$GamePath, -Wait | |
Get-Process -Name BetterJoyForCemu | Stop-Process |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-AppxPackage -name "Microsoft.MicrosoftOfficeHub" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.MicrosoftFeedbackHub" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.WindowsFeedbackHub" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.WindowsCamera" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.MicrosoftStickyNotes" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.WindowsSoundRecorder" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.OneConnect" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.3DBuilder" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.BingWeather" | Remove-AppxPackage | |
Get-AppxPackage -name "Microsoft.DesktopAppInstaller" | Remove-AppxPackage |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# description: Apache Tomcat init script | |
# processname: tomcat | |
# chkconfig: 234 20 80 | |
# | |
# | |
# Copyright (C) 2014 Miglen Evlogiev | |
# | |
# This program is free software: you can redistribute it and/or modify it under |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
xprop -f _GTK_THEME_VARIANT 8u -set _GTK_THEME_VARIANT "dark" |