Skip to content

Latest commit

 

History

History
121 lines (100 loc) · 5.39 KB

README.md

File metadata and controls

121 lines (100 loc) · 5.39 KB

Asev's Windows Desktop 🌇

How I customize my Windows 11 desktop 🌸

Things I used

tacky-borders config (click to expand)
# Customize global config options
global:
  border_width: 2 # Width of the border
  border_offset: -1 # How close the border is to the window edges
  border_radius: -1 # Radius of the corners. Leave it at -1 to let tacky-borders handle the radius or set your own custom value.

  active_color:
    colors: ["#cd7271", "#5a606e"]
    direction:
      start: [0.0, 0.0] # [0.0, 0.0] is the top left corner (windows api is weird like that)
      end: [1.0, 1.0] # [1.0, 1.0] is the bottom right corner
  #active_color: "#7F7FD5"

  inactive_color:
    colors: ["#cd7271", "#5a606e"]
    direction:
      start: [1.0, 0.3] # [0.0, 0.0] is the top left corner (windows api is weird like that)
      end: [0.0, 0.7] # [1.0, 1.0] is the bottom right corner
  #inactive_color: "#575660" # Color of unfocused windows. Currently supports a hex code like "#ffffff" or "accent" (and now gradients!)

  initialize_delay: 50 # I reduce the delay here because of the fade animation which takes some time itself
  unminimize_delay: 50

  animations:
    fps: 15  # Reduced from 30 to slow down the animation
    active:
      - type: ReverseSpiral
        duration: 1800
        easing: Linear
      - type: Fade
        duration: 200
        easing: EaseInOutQuad
    inactive:
      - type: Spiral
        duration: 1800
        easing: Linear
      - type: Fade
        duration: 200
        easing: EaseInOutQuad

# Customize config options on a per-app basis
window_rules:
  - match: "Class"
    name: "Windows.UI.Core.CoreWindow"
    enabled: false

  - match: "Class"
    name: "XamlExplorerHostIslandWindow"
    enabled: false

  - match: "Title"
    name: "Flow.Launcher"
    enabled: false

  - match: "Title"
    name: "Zebar"
    enabled: false

  - match: "Title"
    name: "keyviz"
    enabled: false
  # EXAMPLE CONFIGURATION:
  # - match: "Class"               # Currently supports "Class" or "Title"
  #   name: "MozillaWindowClass"   # Name of the class or title
  #   strategy: "Equals"           # Optional. Currently supports "Equals", "Contains", or "Regex". Defaults to "Equals"
  #   border_width: 10             # The next few options are all optional and default to global config if nothing is specified
  #   border_radius: -10
  #   border_offset: -10
  #   active_color: "#ffffff"
  #   inactive_color: "#000000"
  #   enabled: true                # Optional. Enables or disables the border. Defaults to true. Note: you can't forcibly enable borders yet

Windhawk

Windhawk is for all the taskbar/start menu customizations along with many other things. You can get it from Windhawk.net

Mods used:

Extras