Windows 10 Themes created by Ten Forums members


  1. Posts : 27,157
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1361

    Hopachi said:
    I've missed that episode...

    Thank you for the effort Cliff!
    This one is also good!
    Attachment 61604
    I like those yellow gradients, kind of a daylight theme.

    Cheers!
    Go ahead and play with it, and then post what you get
      My Computers


  2. Posts : 1,323
    Windows 11 Pro 64-bit
       #1362

    Wynona said:
    @Hopachi

    I went to bitly.com and it's pretty much a no-brainer. Since I have dual monitors, I can collect the mile long link, paste it into bitly and voila, I can copy it to the spreadsheet!

    If I do each one as I go, it's not such a chore.
    Good to hear that Wynona! Thank you for all the work you put in the list.
      My Computers


  3. Posts : 1,323
    Windows 11 Pro 64-bit
       #1363

    Cliff S said:
    Go ahead and play with it, and then post what you get
    OK :) Mixed something up.
    Here it is: SunnyRodiliusSpiral
    Based on @Cliff S Pre-Wood (Beta) Theme, the base of Team Theme 2

    Rodilius?
    Wallpaper is made in GIMP using GMIC Rodilius filter.

    Windows 10 Themes created by Ten Forums members-sunnypreview.png

    I've tried to put a fancy Recycle Bin icon in it. I need to right click refresh on my PC to switch from full to empty state. Hmmm...

    It should eclipse when full.
    Windows 10 Themes created by Ten Forums members-rcbin.png

    For the rest, not much, used Aero Red cursors.
    A yellow cursor can be downloaded as well.

    EDIT: zip added below
    Windows 10 Themes created by Ten Forums members Attached Files
    Last edited by Hopachi; 30 Jan 2016 at 15:55. Reason: forgot the zip attach (thank you Cliff)
      My Computers


  4. Posts : 27,157
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1364

    No download yet?
      My Computers


  5. Posts : 1,323
    Windows 11 Pro 64-bit
       #1365

    Cliff S said:
    No download yet?
    oOPS!
    Thank you Cliff!
    Added!
      My Computers


  6. Posts : 27,157
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1366

    That's a cool Banana Pudding color!
    Windows 10 Themes created by Ten Forums members-thb4fvb2ym.jpg

    Notice your Recycle Bin on my taskbar:
    Windows 10 Themes created by Ten Forums members-image-001.png

    Windows 10 Themes created by Ten Forums members-image-002.png

    Windows 10 Themes created by Ten Forums members-image-003.png
      My Computers


  7. Posts : 1,323
    Windows 11 Pro 64-bit
       #1367

    Mmm... banana pudding!


    Thanks for the previews!

    Then the icons work fine!
      My Computers


  8. Posts : 27,157
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1368

    @Hopachi I figured out how to get that custom Hyper-V tile .exe you created, to run elevated. I just had to go to C:\Users\Cliff S\AppData\Roaming\Microsoft\Windows\Start Menu\Programs by right clicking it and going to file location, which took it to the shortcut. Once at the shortcut, I right clicked it and in properties/shortcut tab, chose advance button, then checked the "Run as administrator". Now when I click the tile the UAC pops up like it should. Just Geeking it up!
    Last edited by Cliff S; 31 Jan 2016 at 04:03.
      My Computers


  9. Posts : 27,157
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1369

    @Edwin fitting to your usual theme colors, here are some settings for your command prompt.

    How it looks:
    Windows 10 Themes created by Ten Forums members-image-004.png

    Settings:
    Windows 10 Themes created by Ten Forums members-image-003.png

    Windows 10 Themes created by Ten Forums members-image-001.png

    Windows 10 Themes created by Ten Forums members-image-002.png
      My Computers


  10. Posts : 27,157
    Win11 Pro, Win10 Pro N, Win10 Home, Windows 8.1 Pro, Ubuntu
       #1370

    @Hopachi @Edwin @Superfly, you all more advanced ones need to take a look at C:\Windows\diagnostics\system\AERO and see if any of those API scripts can further us in theming.

    Examples:

    Code:
    # Copyright © 2008, Microsoft Corporation. All rights reserved.
    
    
    PARAM($originalName, $originalThemeStatus, $originalVisualStyleName)
    
    
    Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData
    
    
    Write-DiagProgress -activity $localizationString.colorTheme_progress
    
    
    . .\cl_Utility.ps1
    
    
    if("Stopped" -eq (Get-Service "Themes").Status) {
        $startupType = (Get-WmiObject -query "select * from win32_baseService where Name='Themes'").StartMode
    
    
        if($startupType -ne "auto" -and $startupType -ne $null) {
            (Get-WmiObject -query "select * from win32_baseService where Name='Themes'").changeStartMode("automatic") > $null
        }
    
    
        Start-Service "Themes"
        WaitFor-ServiceStatus "Themes" ([ServiceProcess.ServiceControllerStatus]::Running)
    }
    
    
    [string]$sourceCode = Get-ThemeSourceCode
    [string]$themeFilePath = Join-Path ${env:windir} "Resources\Themes\aero.theme"
    Invoke-Method $sourceCode "ThemeTool.exe" "changetheme $themeFilePath"
    
    
    [string]$name = Invoke-Method $sourceCode "ThemeTool.exe" "getcurrentthemename"
    [string]$themeStatus = Invoke-Method $sourceCode "ThemeTool.exe" "getthemestatus"
    [string]$visualStyleName = Invoke-Method $sourceCode "ThemeTool.exe" "getcurrentvisualstylename"
    
    
    $propertyArray = @()
    if($name -ne $originalName) {
        $propertyArray += @{Name=$localizationString.modifiedThemeStatus;Expression={$themeStatus}}
    }
    
    
    if($themeStatus -ne $originalThemeStatus) {
        $propertyArray += @{Name=$localizationString.modifiedThemeName;Expression={$name}}
    }
    
    
    if($visualStyleName -ne $originalVisualStyleName) {
        $propertyArray += @{Name=$localizationString.modifiedVisualStyle;Expression={$visualStyleName}}
    }
    
    
    if(0 -ne $propertyArray.Count) {
        New-Object -TypeName System.Management.Automation.PSObject | Select-Object $propertyArray | Convertto-Xml | Update-DiagReport -id ModifiedThemeInfo -name $localizationString.ThemeInfo -Verbosity informational
    }
    Code:
    # Copyright © 2008, Microsoft Corporation. All rights reserved.
    
    
    
    function CheckAeroTransprance()
    {
        if(-not(Test-Path HKCU:\Software\microsoft\windows\dwm))
        {
            return $true
        }
    
    
        [int]$colorizationOpaqueBlend = (Get-ItemProperty -Path HKCU:\Software\microsoft\windows\dwm -Name ColorizationOpaqueBlend).ColorizationOpaqueBlend
        return -not($colorizationOpaqueBlend -eq 1)
    }
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 01:26.
Find Us




Windows 10 Forums