Giter VIP home page Giter VIP logo

gridify's Introduction

PowerShell Gridify

'Gridify' module provides a cmdlet 'Set-GridLayout' that can resize and arrange applications in an automatic grid layout with predefined formats using the ProcessID's of the target applications passed as a parameter(-ProcessID) value.

Cmdlet can automatically calculate the your screen resolution and set Applications in a neat grid layout in predefined/custom layout

Available predifined layout formats are

  • Mosaic : This is the default layout of the cmdlet.

    Set-GridLayout -ProcessID $ProcessID
  • Vertical : Vertical Layout sets all application vertically side by side in a single row to fit the screen resolution

    Set-GridLayout -ProcessID $ProcessID -Layout Vertical
  • Horizontal : Horizontal Layout sets all application horizontally one over another in a single column to fit the screen resolution

    Set-GridLayout -ProcessID $ProcessID -Layout Horizontal

and a customizable grid layout for special requirements

  • Custom : A custom format can be used to set the applications in a grid-layout on the screen, by passing a custom string as a value to the parameter(-Custom).

    To set applications is custom grid-layout utilize the 'Custom' parameter and pass the custom layout as comma-separated string of * (Asterisk)

    Where "*" represent an application and "," separates a row in the grid-layout

    So, with custom format like in the below example the grid layout would be like

        Row1 has 3 applications
        Row2 has 2 applications
        Row3 has 1 applications
        Row4 has 4 applications
    
    Set-GridLayout -ProcessID $ProcessID -Custom '***,**,*,****'

Installation

PowerShell V5 and Later

You can install the Gridify module directly from the PowerShell Gallery

  • [Recommended] Install to your personal PowerShell Modules folder
Install-Module Gridify -scope CurrentUser

  • [Requires Elevation] Install for Everyone (computer PowerShell Modules folder)
Install-Module Gridify

PowerShell V4 and Earlier

To install to your personal modules folder run:

iex (new-object System.Net.WebClient).DownloadString('https://raw.githubusercontent.com/PrateekKumarSingh/Gridify/master/Install.ps1')

Help Information

Run below commands to see some examples

Get-Help Set-GridLayout -Examples

Known Issues

Issue # Short Description
Issue#1 Fixed Application window size
Issue#2 Limited only to the Primary monitor

gridify's People

Watchers

 avatar  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.