Is it possible to hide window title bar in Windows 11? (borderless windows)

This page summarizes the projects mentioned and recommended in the original post on /r/AutoHotkey

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • Fullscreen-window-toggle

    Make a window fullscreen

  • F1:: ToggleBorderlessWindow() Return ; https://github.com/ahkon/Fullscreen-window-toggle ToggleBorderlessWindow(hwnd:="") { static MONITOR_DEFAULTTONEAREST := 0x00000002 static WS_CAPTION := 0x00C00000 static WS_SIZEBOX := 0x00040000 static WindowStyle := WS_CAPTION|WS_SIZEBOX static A := [] if (!hwnd) hwnd := WinExist("A") Win := "ahk_id " hwnd ; Store WinTitle WinGet, S, Style, % Win ; Get window style if (S & WindowStyle) { ; If not borderless A[Win, "Style"] := S & WindowStyle ; Store existing style WinGet, IsMaxed, MinMax, % Win ; Get/store whether the window is maximized if (A[Win, "Maxed"] := IsMaxed = 1 ? true : false) WinRestore, % Win WinGetPos, X, Y, W, H, % Win ; Store window size/location A[Win, "X"] := X, A[Win, "Y"] := Y, A[Win, "W"] := W, A[Win, "H"] := H WinSet, Style, % -WindowStyle, % Win ; Remove borders hMon := DllCall("User32\MonitorFromWindow", "Ptr", hwnd, "UInt", MONITOR_DEFAULTTONEAREST) VarSetCapacity(monInfo, 40), NumPut(40, monInfo, 0, "UInt") DllCall("User32\GetMonitorInfo", "Ptr", hMon, "Ptr", &monInfo) WinMove, % Win,, monLeft := NumGet(monInfo, 4, "Int") ; Move and resize window , monTop := NumGet(monInfo, 8, "Int") , (monRight := NumGet(monInfo, 12, "Int")) - monLeft , (monBottom := NumGet(monInfo, 16, "Int")) - monTop } else if A[Win] { ; If borderless WinSet, Style, % "+" A[Win].Style, % Win ; Reapply borders WinMove, % Win,, A[Win].X, A[Win].Y, A[Win].W, A[Win].H ; Return to original position if (A[Win].Maxed) ; Maximize if required WinMaximize, % Win A.Delete(Win) } }

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Show HN: Screencast and accesibility app: KeyPress OSD

    2 projects | news.ycombinator.com | 10 Apr 2024
  • KeyPress OSD – a unique OSD for screencasts; my first ever developed app

    3 projects | news.ycombinator.com | 5 Apr 2024
  • Show HN: Fixkey is a keyboard-focused AI copilot for writing

    2 projects | news.ycombinator.com | 1 Feb 2024
  • Automating Workday Job Application Forms

    1 project | news.ycombinator.com | 8 Jan 2024
  • Wordstar-keys: Implement wordstar cursor control keys in Linux using xkb

    2 projects | news.ycombinator.com | 11 Dec 2023