diff --git a/core/internal/config/embedded/hyprland.conf b/core/internal/config/embedded/hyprland.conf index 30a91805..fe123bbe 100644 --- a/core/internal/config/embedded/hyprland.conf +++ b/core/internal/config/embedded/hyprland.conf @@ -106,7 +106,7 @@ windowrule = float on, match:class ^(firefox)$, match:title ^(Picture-in-Picture windowrule = float on, match:class ^(zoom)$ # DMS windows floating by default -# ! Hyprland doesnt size these windows correctly so disabling by default here +# ! Hyprland doesn't size these windows correctly so disabling by default here # windowrule = float on, match:class ^(org.quickshell)$ layerrule = no_anim on, match:namespace ^(quickshell)$ diff --git a/core/internal/server/clipboard/manager.go b/core/internal/server/clipboard/manager.go index 41b3e619..bc03728a 100644 --- a/core/internal/server/clipboard/manager.go +++ b/core/internal/server/clipboard/manager.go @@ -31,7 +31,7 @@ import ( wlclient "github.com/AvengeMedia/DankMaterialShell/core/pkg/go-wayland/wayland/client" ) -// These mime types wont be stored in history +// These mime types won't be stored in history var sensitiveMimeTypes = []string{ "x-kde-passwordManagerHint", } diff --git a/core/pkg/ipp/cups-client.go b/core/pkg/ipp/cups-client.go index 459c1dc0..68d60ce8 100644 --- a/core/pkg/ipp/cups-client.go +++ b/core/pkg/ipp/cups-client.go @@ -96,7 +96,7 @@ func (c *CUPSClient) RejectJobs(printer string) error { return err } -// AddPrinterToClass adds a printer to a class, if the class does not exists it will be crated +// AddPrinterToClass adds a printer to a class, if the class does not exists it will be created func (c *CUPSClient) AddPrinterToClass(class, printer string) error { attributes, err := c.GetPrinterAttributes(class, []string{AttributeMemberURIs}) if err != nil && !IsNotExistsError(err) { diff --git a/quickshell/Common/Theme.qml b/quickshell/Common/Theme.qml index 2820cb83..58a509b7 100644 --- a/quickshell/Common/Theme.qml +++ b/quickshell/Common/Theme.qml @@ -546,7 +546,7 @@ Singleton { if (savePrefs && typeof SessionData !== "undefined" && !isGreeterMode) SessionData.setLightMode(light); if (!isGreeterMode) { - // Skip with matugen becuase, our script runner will do it. + // Skip with matugen because, our script runner will do it. if (!matugenAvailable) { PortalService.setLightMode(light); } diff --git a/quickshell/Common/markdown2html.js b/quickshell/Common/markdown2html.js index 9c8bf2a4..23e7567b 100644 --- a/quickshell/Common/markdown2html.js +++ b/quickshell/Common/markdown2html.js @@ -1,5 +1,5 @@ .pragma library -// This exists only beacause I haven't been able to get linkColor to work with MarkdownText +// This exists only because I haven't been able to get linkColor to work with MarkdownText // May not be necessary if that's possible tbh. function markdownToHtml(text) { if (!text) return ""; diff --git a/quickshell/Services/DMSNetworkService.qml b/quickshell/Services/DMSNetworkService.qml index 1a0ebbb0..8a18623e 100644 --- a/quickshell/Services/DMSNetworkService.qml +++ b/quickshell/Services/DMSNetworkService.qml @@ -677,12 +677,12 @@ Singleton { if (!info) { details = "Network information not found or network not available."; } else { - details += "Inteface: " + info.iface + "\\n"; + details += "Interface: " + info.iface + "\\n"; details += "Driver: " + info.driver + "\\n"; details += "MAC Addr: " + info.hwAddr + "\\n"; details += "Speed: " + info.speed + " Mb/s\\n\\n"; - details += "IPv4 informations:\\n"; + details += "IPv4 information:\\n"; for (const ip4 of info.IPv4s.ips) { details += " IPv4 address: " + ip4 + "\\n"; @@ -691,7 +691,7 @@ Singleton { details += " DNS: " + info.IPv4s.dns + "\\n"; if (info.IPv6s.ips) { - details += "\\nIPv6 informations:\\n"; + details += "\\nIPv6 information:\\n"; for (const ip6 of info.IPv6s.ips) { details += " IPv6 address: " + ip6 + "\\n"; diff --git a/quickshell/Services/WeatherService.qml b/quickshell/Services/WeatherService.qml index 9b6e531e..15fd26cb 100644 --- a/quickshell/Services/WeatherService.qml +++ b/quickshell/Services/WeatherService.qml @@ -341,11 +341,11 @@ Singleton { }; } - function formatTemp(celcius, includeUnits = true, unitsShort = true) { - if (celcius == null) { + function formatTemp(celsius, includeUnits = true, unitsShort = true) { + if (celsius == null) { return null; } - const value = SettingsData.useFahrenheit ? Math.round(celcius * (9 / 5) + 32) : celcius; + const value = SettingsData.useFahrenheit ? Math.round(celsius * (9 / 5) + 32) : celsius; const unit = unitsShort ? "°" : (SettingsData.useFahrenheit ? "°F" : "°C"); return includeUnits ? value + unit : value; }