Johann1870 / jWCE

My custom windows setup.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

$1\<\/li\>$$1\<\/li\>$$1\<\/li\>$ # johann1870's Windows Custom Environment My custom windows setup. <style> ol ol { list-style-type: lower-alpha; }

ol ol ol{ list-style-type: lower-roman; } </style>

Taskbar

The taskbar is customized by running ~~[TranslucentTB](/TranslucentTB/TranslucentTB)~~ ~~and~~ [TClock](https://github.com/White-Tiger/T-Clock). It is set to Auto-hide and display on one monitor on the left side of the screen.

TranslucentTB is run from a batch script scheduled by Task Scheduler.

TClock is configured to show week numbers, the day of the year, uses T-Clock's calendar and 1 month past, 3 months total. The week is set according to ISO 8601 standards

TClock's time format

  HH:nn:ss\nddd, dd-mmm-yy\nyyyy-"W"Wi-wi Od\n"JD: "JD\n"POSIX: "POSIX\n"Uptime:  "ST\n"UTC "W+7:nn:ss"     CEST "W+9:nn:ss"      "@@@.@@

Application shortcuts are arranged into toolbars which are located under root. Toolbars do not show text or title. Some toolbars show large icons and others small.

List of toolbars

  1. **articulate**
    1. Articulate 360
    2. Storyline
  2. **cloud**
    1. Backup and Sync from Google
    2. Datacastle Red
    3. Dropbox
    4. iCloud
    5. OneDrive
    6. ShareFile Desktop
  3. **comm**
    1. lync.exe (Skype for Business)
    2. Microsoft Teams
    3. Rambox
    4. Signal Private Messenger
    5. Slack
    6. Telegram
    7. Yammer
  4. **creative**
    1. Audacity
    2. Google Play Music Desktop Player
    3. iTunes
    4. Mp3tag
    5. Spotify
    6. VLC media player
  5. **datavis**
    1. draw.io
    2. gvedit.exe
    3. Tableau Reader
    4. yed
  6. **design**
    1. Designer
    2. ImageMagick Display
    3. Inkscape
    4. Pencil
  7. **dev**
    1. Arachnophilia
    2. atom
    3. Eclipse Java Oxygen
    4. KDiff3
    5. Notepad++
    6. SciTE Script Editor
    7. Spyder
    8. Sublime Text 3
    9. Visual Studio 2017
  8. **files**
    1. 7-zip File Manager
    2. Double Commander
    3. Explorer++
    4. Far Manager 3 x64
    5. File Explorer
    6. FileVoyager
    7. FreeCommander
    8. Q-Dir
    9. XenonPortable
  9. **office**
    1. Access
    2. Excel
    3. Microsoft Store
    4. OneNote
    5. Outlook
    6. PowerPoint
    7. Publisher
    8. Word
  10. **pm**
    1. Bitnami Redmine Stack Manager Tool
    2. GanttProject
    3. MeisterTask
    4. ProjectLibre
    5. Quip
    6. Trello
  11. **prod**
    1. CherryTree
    2. Evernote
    3. speedcrunch
  12. **repo**
    1. Git Bash
    2. Git GUI
    3. GitHub Desktop
    4. GitKraken
    5. Sourcetree
  13. **screenshare**
    1. MirrorOp
    2. Remote Desktop Connection
    3. Reservationless-Plus VoIP
    4. Start Zoom
    5. TeamViewer 14
    6. TeamViewer 13.0.281
    7. WebEx Productivity Tools
  14. **ss**
    1. Greenshot
    2. ShareX
    3. Snagit 12
    4. Snipping Tool
  15. **term**
    1. Anaconda Navigator
    2. Command Prompt
    3. ConEmu64
    4. Debian GNU-Linux (WSL)
    5. Git Bash
    6. IDLE (Python GUI)
    7. Kali Linux (WSL)
    8. Ubuntu (WSL)
  16. **util**
    1. Admin Panel
      C:\Windows\explorer.exe shell:::{ED7BA470-8E54-465E-825C-99712043E01C}
    2. Apps
      C:\Windows\explorer.exe shell:appsfolder
    3. AutoIt Window Info (x64)
    4. Bulk Rename Utility
    5. CCleaner
    6. Control Panel
    7. Core FTP LE
    8. Expresso
    9. FileTypesMan
    10. glogg
    11. grepWin
    12. LogiOptions
    13. Process Explorer
    14. Resource Hacker
    15. RunAsDate
    16. Snipping Tool
    17. Speccy
    18. SpeedCrunch
    19. Start.exe (portable apps)
    20. Task Manager
    21. tinySpell
    22. Winaero Tweaker
  17. **web**
    1. Brave
    2. Chrome Canary
    3. Chromium
    4. Cyberfox
    5. Edge
    6. Falkon
    7. Google Chrome
    8. Internet Explorer
    9. Chrome - work profile
    10. Chrome - work profile 2
    11. Chrome Canary - work profile 3
    12. Chrome - home profile
    13. K-Meleon
    14. Maxthon
    15. Chrome - work team profile
    16. Mozilla Firefox
    17. Opera
    18. Chrome - work profile 4
    19. Vivaldi
  18. **writing**
    1. EPS Viewer
    2. Ghostscript
      1. MikTeX
      2. TeXworks
      3. Typora
## Cygwin 1. Install the Cygwin [setup-x86_64.exe](https://cygwin.com/install.html) and run. 2. Install zsh, git, wget, xterm, etc

Command Prompt

A script is referenced when the shell is started. This is referenced in the registry at HKEY_CURRENT_USER\Software\Microsoft\Command Processor A string key Autorun is created and is set to the path for the batch script which runs. See \Command Prompt\cmdrc.cmd

Chocolatey

  1. Install [chocolatey](https://chocolatey.org/install)
    1. cmd
      @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
    2. PowerShell
      1. Run `Get-ExecutionPolicy`. If it returns `Restricted`, then run `Set-ExecutionPolicy AllSigned` or `Set-ExecutionPolicy Bypass -Scope Process`
      2. run
        Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
  2. Install programs
    1. create an xml file from the list of [InstalledPackages](/choco/InstalledPackages.txt) as per [choco-autoinstaller](https://gitlab.com/luukgrefte/choco-autoinstalller).

      See also chocolatey documentation

    2. run `cinst InstalledPackages.config`
## Conemu see conemu settings xml

Qdir

see Qdir settings xml

Python

Dropbox

install Dropbox

Portable Apps

Pin Start.exe from Dropbox to taskbar

Firefox

I use several extensions and settings to configure FF

Extensions

  • Cisco Webex Extension
  • Cookie-Editor
  • LastPass
  • OneTab
  • salesforce-favicon
  • Tree Style Tab
  • uBlock Origin
  • uMatrix
  • Wappalyzer
  • Vim Vixen

Customized theme

  1. add the folder chrome containing bindings.xml, userChrome.css and userContent.css to your %appdata%\Mozilla\Firefox\Profiles\[yourprofile]
  2. add the contents of tree_style_tab.css to your Advanced settings in Tree Style Tab extension.

Winaero Tweaker

  1. Customize This PC Folders
    1. Github
    2. cygwin home profile
    3. windows home profile
## Slack

Sidebar Theme

#ffffff,#ffffff,#0397D6,#aaeeee,#ddffff,#4E5661,#00968F,#C5003E

Atom

  1. Package list created by apm list --installed --bare > package-list.txt

  2. Install packages apm install --packages-file package-list.txt

WinDock

highres and lowres 3rd monitor profiles

Jiracli

A cli client for Jira

About

My custom windows setup.

License:GNU General Public License v3.0


Languages

Language:HTML 54.6%Language:Shell 41.4%Language:Roff 1.3%Language:Perl 1.0%Language:Batchfile 0.6%Language:CSS 0.4%Language:VBScript 0.2%Language:Python 0.2%Language:JavaScript 0.1%Language:VBA 0.1%Language:Vim Script 0.0%Language:Stata 0.0%Language:Dockerfile 0.0%