Skip to content

Commit

Permalink
ags/utils/net: fix wired icon name
Browse files Browse the repository at this point in the history
  • Loading branch information
fufexan committed Sep 22, 2024
1 parent c390830 commit c8891b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion home/services/ags/utils/net.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Network } from "../imports.js";

export const getNetIcon = () => {
if (Network.connectivity == "none") return "";
if (Network.primary == "wired") return "network-wired";
if (Network.primary == "wired") return "network-wired-symbolic";

return Network.wifi.icon_name;
};
Expand Down

0 comments on commit c8891b3

Please sign in to comment.