PINE64
Shortcut for wifi hotspot - Printable Version

+- PINE64 (https://forum.pine64.org)
+-- Forum: PinePhone Pro (https://forum.pine64.org/forumdisplay.php?fid=177)
+--- Forum: PinePhone Pro Software (https://forum.pine64.org/forumdisplay.php?fid=179)
+--- Thread: Shortcut for wifi hotspot (/showthread.php?tid=16368)



Shortcut for wifi hotspot - kbm - 03-23-2022

Does anyone know of a way to make a shortcut that can be clicked and will just launch the hotspot?

I've got the settings configured, but it's 2-3 clicks/touches and ideally I'd like to just have it launch with one


RE: Shortcut for wifi hotspot - brb78 - 03-30-2022

the "menulibre" package may be worth exploring, its in AUR


RE: Shortcut for wifi hotspot - kbm - 03-30-2022

(03-30-2022, 10:49 AM)brb78 Wrote: the "menulibre" package may be worth exploring, its in AUR

Very interesting. Thanks!


RE: Shortcut for wifi hotspot - dukla2000 - 03-31-2022

An idea, just use nmcli con up in a suitable .desktop file?


RE: Shortcut for wifi hotspot - kbm - 03-31-2022

(03-31-2022, 01:59 AM)dukla2000 Wrote: An idea, just use nmcli con up in a suitable .desktop file?

That would be even better. I haven't used con up before. Can I just do that for the hotspot?


RE: Shortcut for wifi hotspot - dukla2000 - 04-01-2022

(03-31-2022, 03:04 PM)kbm Wrote: ...

That would be even better. I haven't used con up before. Can I just do that for the hotspot?

I am only about half a page ahead of you in the manual Big Grin 

I got this idea (and most of the code below) from "D J" on the mobian chat so all the credit belongs to them!

Copy/paste the following
Code:
[Desktop Entry]
Actions=NetCon;StartHotspot;StopHotspot;disks;firmware;dconf;tweaks;1minSus;30minSus;RestartPhosh;PowerStats;keys
Type=Application
Name=System
GenericName=Suspend
Comment=Suspend
Icon=/usr/share/icons/desktop-base/128x128/emblems/emblem-debian.png
TryExec=systemctl
Exec=systemctl suspend
Terminal=false
Categories=Power;Session;
X-Purism-FormFactor=Workstation;Mobile;
MimeType=
Keywords=suspend

[Desktop Action RestartPhosh]
Exec=/home/mobian/Scripts/phosh-restart.sh
Name=Restart Phosh

[Desktop Action PowerStats]
Exec=powersupply
Name=Powersupply

[Desktop Action ModemMgr]
Exec=modem-manager-gui
Name=Modem Manager

[Desktop Action Proc]
Exec=gnome-usage
Name=Activity Monitor

[Desktop Action NetCon]
Exec=nm-connection-editor
Name=Network Manager

[Desktop Action StartHotspot]
Exec=nmcli con up Hotspot
Name=Start Hotspot

[Desktop Action StopHotspot]
Exec=nmcli con down Hotspot
Name=Stop Hotspot

[Desktop Action 30minSus]
Exec=gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 1800
Name=30 Minute Suspend

[Desktop Action 1minSus]
Exec=gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 180
Name=3 Minute Suspend

[Desktop Action keys]
Exec=notify-send "Nope!" "This is just a spacer not an acutal menu item"
Name=_______________  ~  _______________

[Desktop Action dconf]
Exec=dconf-editor
Name=Dconf Editor

[Desktop Action firmware]
Exec=gnome-firmware
Name=Firmware

[Desktop Action tweaks]
Exec=pmos-tweaks %u
Name=Phosh Tweaks

[Desktop Action disks]
Exec=gnome-disks
Name=Disks/Drives
into a file ~/.local/share/applications/mymenu.desktop

After a reboot/relogin (or maybe automagically) you should have a new desktop icon. If you push and hold there will be options to start/stop hotspot.

Note this is pretty crude - it depends on WiFi being up (needs another option!), there are several options in the code not selected as Actions at the top, and the chosen icon doesn't exist in my arch install. So very much WIP but it is the thought that counts!

And many thanks to "D J"


RE: Shortcut for wifi hotspot - TRS-80 - 04-01-2022

For reference: https://specifications.freedesktop.org/desktop-entry-spec/desktop-entry-spec-latest.html


RE: Shortcut for wifi hotspot - kbm - 04-03-2022

(04-01-2022, 03:50 AM)dukla2000 Wrote:
(03-31-2022, 03:04 PM)kbm Wrote: ...

That would be even better. I haven't used con up before. Can I just do that for the hotspot?

I am only about half a page ahead of you in the manual Big Grin 

I got this idea (and most of the code below) from "D J" on the mobian chat so all the credit belongs to them!

Copy/paste the following
Code:
[Desktop Entry]
Actions=NetCon;StartHotspot;StopHotspot;disks;firmware;dconf;tweaks;1minSus;30minSus;RestartPhosh;PowerStats;keys
Type=Application
Name=System
GenericName=Suspend
Comment=Suspend
Icon=/usr/share/icons/desktop-base/128x128/emblems/emblem-debian.png
TryExec=systemctl
Exec=systemctl suspend
Terminal=false
Categories=Power;Session;
X-Purism-FormFactor=Workstation;Mobile;
MimeType=
Keywords=suspend

[Desktop Action RestartPhosh]
Exec=/home/mobian/Scripts/phosh-restart.sh
Name=Restart Phosh

[Desktop Action PowerStats]
Exec=powersupply
Name=Powersupply

[Desktop Action ModemMgr]
Exec=modem-manager-gui
Name=Modem Manager

[Desktop Action Proc]
Exec=gnome-usage
Name=Activity Monitor

[Desktop Action NetCon]
Exec=nm-connection-editor
Name=Network Manager

[Desktop Action StartHotspot]
Exec=nmcli con up Hotspot
Name=Start Hotspot

[Desktop Action StopHotspot]
Exec=nmcli con down Hotspot
Name=Stop Hotspot

[Desktop Action 30minSus]
Exec=gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 1800
Name=30 Minute Suspend

[Desktop Action 1minSus]
Exec=gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 180
Name=3 Minute Suspend

[Desktop Action keys]
Exec=notify-send "Nope!" "This is just a spacer not an acutal menu item"
Name=_______________  ~  _______________

[Desktop Action dconf]
Exec=dconf-editor
Name=Dconf Editor

[Desktop Action firmware]
Exec=gnome-firmware
Name=Firmware

[Desktop Action tweaks]
Exec=pmos-tweaks %u
Name=Phosh Tweaks

[Desktop Action disks]
Exec=gnome-disks
Name=Disks/Drives
into a file ~/.local/share/applications/mymenu.desktop

After a reboot/relogin (or maybe automagically) you should have a new desktop icon. If you push and hold there will be options to start/stop hotspot.

Note this is pretty crude - it depends on WiFi being up (needs another option!), there are several options in the code not selected as Actions at the top, and the chosen icon doesn't exist in my arch install. So very much WIP but it is the thought that counts!

And many thanks to "D J"

That's awesome! Thanks. I'll give it a try


RE: Shortcut for wifi hotspot - kbm - 04-15-2022

(04-01-2022, 03:50 AM)dukla2000 Wrote:
(03-31-2022, 03:04 PM)kbm Wrote: ...

That would be even better. I haven't used con up before. Can I just do that for the hotspot?

I am only about half a page ahead of you in the manual Big Grin 

I got this idea (and most of the code below) from "D J" on the mobian chat so all the credit belongs to them!

Copy/paste the following
Code:
[Desktop Entry]
Actions=NetCon;StartHotspot;StopHotspot;disks;firmware;dconf;tweaks;1minSus;30minSus;RestartPhosh;PowerStats;keys
Type=Application
Name=System
GenericName=Suspend
Comment=Suspend
Icon=/usr/share/icons/desktop-base/128x128/emblems/emblem-debian.png
TryExec=systemctl
Exec=systemctl suspend
Terminal=false
Categories=Power;Session;
X-Purism-FormFactor=Workstation;Mobile;
MimeType=
Keywords=suspend

[Desktop Action RestartPhosh]
Exec=/home/mobian/Scripts/phosh-restart.sh
Name=Restart Phosh

[Desktop Action PowerStats]
Exec=powersupply
Name=Powersupply

[Desktop Action ModemMgr]
Exec=modem-manager-gui
Name=Modem Manager

[Desktop Action Proc]
Exec=gnome-usage
Name=Activity Monitor

[Desktop Action NetCon]
Exec=nm-connection-editor
Name=Network Manager

[Desktop Action StartHotspot]
Exec=nmcli con up Hotspot
Name=Start Hotspot

[Desktop Action StopHotspot]
Exec=nmcli con down Hotspot
Name=Stop Hotspot

[Desktop Action 30minSus]
Exec=gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 1800
Name=30 Minute Suspend

[Desktop Action 1minSus]
Exec=gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 180
Name=3 Minute Suspend

[Desktop Action keys]
Exec=notify-send "Nope!" "This is just a spacer not an acutal menu item"
Name=_______________  ~  _______________

[Desktop Action dconf]
Exec=dconf-editor
Name=Dconf Editor

[Desktop Action firmware]
Exec=gnome-firmware
Name=Firmware

[Desktop Action tweaks]
Exec=pmos-tweaks %u
Name=Phosh Tweaks

[Desktop Action disks]
Exec=gnome-disks
Name=Disks/Drives
into a file ~/.local/share/applications/mymenu.desktop

After a reboot/relogin (or maybe automagically) you should have a new desktop icon. If you push and hold there will be options to start/stop hotspot.

Note this is pretty crude - it depends on WiFi being up (needs another option!), there are several options in the code not selected as Actions at the top, and the chosen icon doesn't exist in my arch install. So very much WIP but it is the thought that counts!

And many thanks to "D J"

Tried putting it into the local dir but that didn't seem to work. I had to put it into /usr/share/applications (I'm running Arch)

So far I've just changed the first section and that works. Exec=nmcli con up HotSpot

When running it brings up the hot-spot network screen, so maybe there's some way to get that to minimize after. But still, WAY easier than the 4 clicks it was taking before!

Thanks again for the help and if I can make it any better I'll update here!