GithubHelp home page GithubHelp logo

mucahitimre / toggle-show-hide-desktop-icons-with-windows-10 Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 1.21 MB

An autohotkey script, windows scheduler and hotkey that toggles windows 10 with show/hide desktop icons.

AutoHotkey 100.00%
windows-10 shortcut autohotkey autohotkey-script autohotkey-scripts desktop-icons desktop

toggle-show-hide-desktop-icons-with-windows-10's Introduction

Toggle show hide desktop icons with windows 10

An autohotkey script, windows scheduler and hotkey that toggles windows 10 with show/hide desktop icons.

Autohotkey script

F4:: 
if (viewStatus != 2 && viewStatus := 1)
{
    Control, show ,, SysListView321, ahk_class WorkerW
    Control, show ,, SysListView321, ahk_class Progman
    viewStatus = 2
}
else
{
    Control, hide ,, SysListView321, ahk_class WorkerW
    Control, hide ,, SysListView321, ahk_class Progman
    viewStatus = 1
}
return

F4:: here we specify when it will be triggered by a key combination F4 viewStatus to understand the changing situation.

Windows task scheduler or Startup folder

  • Windows task scheduler
    1. Create a new task.
    2. Name the task and make sure the security settings are correct.
    3. New create "at startup" and "at log on" triggers from the Triggers tab.
    4. From the Actions tab, you can select the script(.ahk) or the .exe file that you can create with scirpt.
    5. A task has been set up that will automatically start the shortcut when your computer boots up.. good job :)
  • Startup folder
    1. C:\Users\Username\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup this windows startup folder.
    2. If we create a shortcut of the applications that windows will run at startup to this folder, windows will automatically run this application at startup, Don't forget to replace Username with yours :)

References and other resources

toggle-show-hide-desktop-icons-with-windows-10's People

Contributors

mucahitimre avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.