Compare commits
2 commits
9ee2ef0493
...
bc59c51c9e
| Author | SHA1 | Date | |
|---|---|---|---|
| bc59c51c9e | |||
| 87438d9437 |
2 changed files with 6 additions and 2 deletions
|
|
@ -142,8 +142,10 @@ export default class WifiSignalPlusExtension extends Extension {
|
||||||
style_class: 'wifi-signal-plus-label',
|
style_class: 'wifi-signal-plus-label',
|
||||||
});
|
});
|
||||||
|
|
||||||
this.indicator.add_child(this.icon);
|
const box = new St.BoxLayout({ style_class: 'panel-status-menu-box' });
|
||||||
this.indicator.add_child(this.label);
|
box.add_child(this.icon);
|
||||||
|
box.add_child(this.label);
|
||||||
|
this.indicator.add_child(box);
|
||||||
this.buildMenu();
|
this.buildMenu();
|
||||||
|
|
||||||
Main.panel.addToStatusArea(this.uuid, this.indicator);
|
Main.panel.addToStatusArea(this.uuid, this.indicator);
|
||||||
|
|
|
||||||
|
|
@ -8,6 +8,8 @@ import Gio from 'gi://Gio';
|
||||||
import GLib from 'gi://GLib';
|
import GLib from 'gi://GLib';
|
||||||
import NM from 'gi://NM';
|
import NM from 'gi://NM';
|
||||||
|
|
||||||
|
Gio._promisify(Gio.Subprocess.prototype, 'communicate_utf8_async', 'communicate_utf8_finish');
|
||||||
|
|
||||||
import { parseIwLinkOutput, createEmptyIwLinkInfo } from './wifiGeneration.js';
|
import { parseIwLinkOutput, createEmptyIwLinkInfo } from './wifiGeneration.js';
|
||||||
import {
|
import {
|
||||||
type WifiConnectionInfo,
|
type WifiConnectionInfo,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue