Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion core/internal/config/embedded/hyprland.conf
Original file line number Diff line number Diff line change
Expand Up @@ -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)$
Expand Down
2 changes: 1 addition & 1 deletion core/internal/server/clipboard/manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
}
Expand Down
2 changes: 1 addition & 1 deletion core/pkg/ipp/cups-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion quickshell/Common/Theme.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
2 changes: 1 addition & 1 deletion quickshell/Common/markdown2html.js
Original file line number Diff line number Diff line change
@@ -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 "";
Expand Down
6 changes: 3 additions & 3 deletions quickshell/Services/DMSNetworkService.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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";
Expand Down
6 changes: 3 additions & 3 deletions quickshell/Services/WeatherService.qml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
Loading