forked from void-linux/void-mklive
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New dracut update fails when building initramfs for live ISO when NetworkManager is present, as it now depends on systemd hook. Void Linux didn't take a decision yet about what they'll do about this, but we decided to nip the problem in the bud dropping NetworkManager in favor of Connman. connman-gtk GUI was chosen even for Qt desktop environments, because is easier to understand for new users than cmst. Fixes void-linux#296.
- Loading branch information
Showing
6 changed files
with
25 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
includedir/lxqt/etc/skel/.config/autostart/enable-connman-gtk-tray.desktop
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[Desktop Entry] | ||
Exec=$HOME/.enable-connman-gtk-tray | ||
Name=Enable Connman GTK tray icon | ||
Type=Application | ||
Version=1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
for key in status-icon-enabled launch-to-tray; do | ||
gsettings set net.connman.gtk ${key} true | ||
done | ||
|
||
rm $HOME/.enable-connman-gtk-tray | ||
rm $HOME/.config/autostart/enable-connman-gtk-tray.desktop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[Desktop Entry] | ||
Exec=connman-gtk --tray | ||
Name=Connman network manager | ||
Type=Application | ||
Version=1.0 | ||
X-LXQt-Need-Tray=true | ||
X-GNOME-Autostart-enabled=true | ||
X-GNOME-Autostart-Delay=5 | ||
X-MATE-Autostart-Delay=2 |