mirror of
https://github.com/arcan1s/netctl-gui.git
synced 2025-04-24 23:47:21 +00:00
update configuration file
This commit is contained in:
parent
47dc016da2
commit
4e76d52671
@ -19,7 +19,7 @@ Ver.1.3.0
|
|||||||
+ add support of openvswitch
|
+ add support of openvswitch
|
||||||
+ add security notes and API descriptions
|
+ add security notes and API descriptions
|
||||||
+ add ability to use helper
|
+ add ability to use helper
|
||||||
+ add ability to start minimized/maximized/daemonized
|
+ add ability to start minimized/maximized/detached
|
||||||
+ add ability to don't save profile from WiFi tab
|
+ add ability to don't save profile from WiFi tab
|
||||||
* more correct actions into SettingsWindow
|
* more correct actions into SettingsWindow
|
||||||
* update to library changes
|
* update to library changes
|
||||||
|
@ -56,6 +56,7 @@ Installation
|
|||||||
* `-DBUILD_HELPER:BOOL=0` - do not build helper daemon
|
* `-DBUILD_HELPER:BOOL=0` - do not build helper daemon
|
||||||
* `-DBUILD_LIBRARY:BOOL=0` - do not build library
|
* `-DBUILD_LIBRARY:BOOL=0` - do not build library
|
||||||
* `-DBUILD_PLASMOID:BOOL=0` - do not build Plasmoid
|
* `-DBUILD_PLASMOID:BOOL=0` - do not build Plasmoid
|
||||||
|
* `-DBUILD_TEST:BOOL=1` - build auto tests for the library and the helper
|
||||||
* `-DUSE_QT5:BOOL=0` - use Qt4 instead of Qt5 for GUI
|
* `-DUSE_QT5:BOOL=0` - use Qt4 instead of Qt5 for GUI
|
||||||
|
|
||||||
Additional information
|
Additional information
|
||||||
@ -65,7 +66,7 @@ TODO (wish list)
|
|||||||
----------------
|
----------------
|
||||||
|
|
||||||
* remove suid bit from helper (polkit/logind/etc)
|
* remove suid bit from helper (polkit/logind/etc)
|
||||||
* option descriptions to /etc/netctlgui-helper.conf
|
* check/update documentation
|
||||||
|
|
||||||
Links
|
Links
|
||||||
-----
|
-----
|
||||||
|
@ -1,24 +1,60 @@
|
|||||||
|
# Configuration file for Netctl GUI project
|
||||||
|
# /etc/netctlgui-helper.conf - system-wide configuration
|
||||||
|
# $HOME/.config/netctl-gui.conf - user configuration
|
||||||
|
|
||||||
|
# close helper after GUI application quit.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
CLOSETOTRAY=true
|
CLOSETOTRAY=true
|
||||||
|
# hide application to tray on exit if tray is available.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
CLOSE_HELPER=false
|
CLOSE_HELPER=false
|
||||||
|
# path to control directory which is required by wpa_supplicant
|
||||||
CTRL_DIR=/run/wpa_supplicant_netctl-gui
|
CTRL_DIR=/run/wpa_supplicant_netctl-gui
|
||||||
|
# group which is owner of CTRL_DIR
|
||||||
CTRL_GROUP=users
|
CTRL_GROUP=users
|
||||||
|
# force use SUDO_PATH for helper instead of using setuid(3) to child processes
|
||||||
FORCE_SUDO=false
|
FORCE_SUDO=false
|
||||||
|
# path to netctlgui-helper.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
HELPER_PATH=/usr/bin/netctlgui-helper
|
HELPER_PATH=/usr/bin/netctlgui-helper
|
||||||
|
# netctlgui-helper service name.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
HELPER_SERVICE=netctlgui-helper.service
|
HELPER_SERVICE=netctlgui-helper.service
|
||||||
|
# path to directory which contains interface information
|
||||||
IFACE_DIR=/sys/class/net/
|
IFACE_DIR=/sys/class/net/
|
||||||
|
# application language
|
||||||
LANGUAGE=en
|
LANGUAGE=en
|
||||||
|
# path to netctl-auto
|
||||||
NETCTLAUTO_PATH=/usr/bin/netctl-auto
|
NETCTLAUTO_PATH=/usr/bin/netctl-auto
|
||||||
|
# netctl-auto service name without .service suffix
|
||||||
NETCTLAUTO_SERVICE=netctl-auto
|
NETCTLAUTO_SERVICE=netctl-auto
|
||||||
|
# path to netctl
|
||||||
NETCTL_PATH=/usr/bin/netctl
|
NETCTL_PATH=/usr/bin/netctl
|
||||||
|
# wpa_supplicant PID file
|
||||||
PID_FILE=/run/wpa_supplicant_netctl-gui.pid
|
PID_FILE=/run/wpa_supplicant_netctl-gui.pid
|
||||||
|
# prefered wireless interface
|
||||||
PREFERED_IFACE=
|
PREFERED_IFACE=
|
||||||
|
# path to netctl profile directory
|
||||||
PROFILE_DIR=/etc/netctl/
|
PROFILE_DIR=/etc/netctl/
|
||||||
|
# path to directory with rfkill devices.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
RFKILL_DIR=/sys/class/rfkill/
|
RFKILL_DIR=/sys/class/rfkill/
|
||||||
|
# start netctl-gui minimized to tray if it is available.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
STARTTOTRAY=false
|
STARTTOTRAY=false
|
||||||
|
# path to sudo frontend
|
||||||
SUDO_PATH=/usr/bin/sudo
|
SUDO_PATH=/usr/bin/sudo
|
||||||
|
# path to systemctl
|
||||||
SYSTEMCTL_PATH=/usr/bin/systemctl
|
SYSTEMCTL_PATH=/usr/bin/systemctl
|
||||||
|
# create system tray icon.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
SYSTRAY=true
|
SYSTRAY=true
|
||||||
|
# use netctlgui-helper if it is available.
|
||||||
|
# This option is not recognized by netctlgui-helper
|
||||||
USE_HELPER=true
|
USE_HELPER=true
|
||||||
|
# path to wpa_cli
|
||||||
WPACLI_PATH=/usr/bin/wpa_cli
|
WPACLI_PATH=/usr/bin/wpa_cli
|
||||||
|
# path to wpa_supplicant
|
||||||
WPASUP_PATH=/usr/bin/wpa_supplicant
|
WPASUP_PATH=/usr/bin/wpa_supplicant
|
||||||
|
# wpa_supplicant drivers for wireless interface comma separated
|
||||||
WPA_DRIVERS=nl80211,wext
|
WPA_DRIVERS=nl80211,wext
|
||||||
|
Loading…
Reference in New Issue
Block a user