Update font and power icon.

This commit is contained in:
Jas Singh
2024-06-23 21:46:18 -07:00
parent 42b8948e48
commit f03443a252
12 changed files with 42 additions and 38 deletions

View File

@@ -3,12 +3,12 @@ import { closeAllMenus } from "../bar.js";
const Bluetooth = () => {
const btIcon = Widget.Label({
label: bluetooth.bind("enabled").as((v) => v ? "󰂯 " : "󰂲 "),
label: bluetooth.bind("enabled").as((v) => v ? "󰂯" : "󰂲"),
class_name: "bar-bt_icon",
});
const btText = Widget.Label({
label: bluetooth.bind("enabled").as((v) => v ? "On" : "Off"),
label: bluetooth.bind("enabled").as((v) => v ? " On" : " Off"),
class_name: "bar-bt_label",
});