added netctl-gui page
small edition
@ -85,6 +85,13 @@ groups:
|
||||
description: <code>julius-actions</code> is a script written on <code>Python2</code> for work with <a href="http://julius.sourceforge.jp/en_index.php">julius</a>. It was made just-for-fun too in my spare time. Works normally, but I don't use it.
|
||||
links:
|
||||
- <a href="https://github.com/arcan1s/julius-actions">GitHub repo</a>
|
||||
- title: Netctl GUI
|
||||
short: netctl-gui
|
||||
description: <code>Netctl GUI</code> graphical interface for <code>netctl</code> (several scripts for work with network connection in Archlinux). It is written on <code>CPP</code> using <code>Qt4</code> library. Now it may work with profiles and may create new profiles. Also it may create a connection to WiFi. Moreover, it provides a widget and DataEngine for KDE.
|
||||
links:
|
||||
- <a href="/projects/netctl-gui">Homepage</a>
|
||||
- <a href="https://github.com/arcan1s/netctlplasmoid">GitHub repo</a>
|
||||
- <a href="https://aur.archlinux.org/packages/netctl-gui">Archlinux AUR package</a>
|
||||
---
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
135
projects/netctl-gui.html
Normal file
@ -0,0 +1,135 @@
|
||||
---
|
||||
layout: project
|
||||
title: Netctl GUI
|
||||
short: netctl-gui
|
||||
description: Graphical interface for netctl
|
||||
hasgui: true
|
||||
developers:
|
||||
- Evgeniy Alelseev
|
||||
license: GPLv3
|
||||
links:
|
||||
- <a href="https://aur.archlinux.org/packages/netctl-gui">AUR package</a>
|
||||
---
|
||||
<!-- info block -->
|
||||
<h2><a name="info" class="anchor" href="#info"><span class="octicon octicon-link"></span></a>Information</h2>
|
||||
<p align="justify">Graphical interface for <code>netctl</code> (several scripts for work with network connection in Archlinux). It is written on <code>CPP</code> using <code>Qt4</code> library. Now it may work with profiles and may create new profiles. Also it may create a connection to WiFi. Moreover, it provides a widget and DataEngine for KDE.</p>
|
||||
{% highlight bash %}
|
||||
$ netctl-gui --help
|
||||
Netctl GUI
|
||||
Version : 1.0.0 License : GPLv3
|
||||
Evgeniy Alekseev aka arcanis
|
||||
E-mail : esalexeev@gmail.com
|
||||
|
||||
Usage:
|
||||
netctl-gui [ --default ] [ -t NUM | --tab NUM ] [ -h | --help]
|
||||
|
||||
Parametrs:
|
||||
--default - start with default settings
|
||||
-t NUM --tab NUM - open a tab with number NUM
|
||||
-h --help - show this help and exit
|
||||
{% endhighlight %}
|
||||
|
||||
<h3><a name="devel" class="anchor" href="#devel"><span class="octicon octicon-link"></span></a>Developers and contributors</h3>
|
||||
<ul>
|
||||
{% for devel in page.developers %}
|
||||
<li>{{ devel }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h3><a name="license" class="anchor" href="#license"><span class="octicon octicon-link"></span></a>License</h3>
|
||||
<ul>
|
||||
<li>{{ page.license }}</li>
|
||||
</ul>
|
||||
<!-- end of info block -->
|
||||
|
||||
<!-- install block -->
|
||||
<h2><a name="install" class="anchor" href="#install"><span class="octicon octicon-link"></span></a>Installation</h2>
|
||||
|
||||
<h3><a name="instruction" class="anchor" href="#instruction"><span class="octicon octicon-link"></span></a>Instruction</h3>
|
||||
<ul>
|
||||
<li><p align="justify">Download an <a href="https://github.com/arcan1s/netctl-gui/releases">archive</a> with latest version of source files.</p></li>
|
||||
<li><p align="justify">Extract it and install the application:</p>
|
||||
<p align="justify">If you want install it into <code>/</code>, you should run as root following commands:</p>
|
||||
{% highlight bash %}
|
||||
cd /path/to/extracted/archive
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
||||
make
|
||||
sudo make install
|
||||
{% endhighlight %}
|
||||
<p align="justify">If you want install it without KDE widget, run:</p>
|
||||
{% highlight bash %}
|
||||
cd /path/to/extracted/archive
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_DATAENGINE:BOOL=0 -DBUILD_PLASMOID:BOOL=0 ../
|
||||
make
|
||||
sudo make install
|
||||
{% endhighlight %}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3><a name="dependencies" class="anchor" href="#dependencies"><span class="octicon octicon-link"></span></a>Dependencies</h3>
|
||||
<p align="justify">I want note that all were tested on latest version of dependencies.</p>
|
||||
<ul>
|
||||
<li>netctl</li>
|
||||
<li>qt4</li>
|
||||
<li>automoc4 <i>(make)</i></li>
|
||||
<li>cmake <i>(make)</i></li>
|
||||
<li>kdebase-workspace <i>(optional, widget)</i></li>
|
||||
<li>sudo <i>(optional, sudo support)</i></li>
|
||||
<li>wpa_supplicant <i>(optional, WiFi support)</i></li>
|
||||
</ul>
|
||||
<!-- end of install block -->
|
||||
|
||||
<!-- howto block -->
|
||||
<h2><a name="howto" class="anchor" href="#howto"><span class="octicon octicon-link"></span></a>How to use</h2>
|
||||
<p align="justify">Just run application <code>netctl-gui</code>. If it is needed (and if you use KDE), you may add widget <code>netctl</code>, which provides by the application.</p>
|
||||
<!-- end of howto block -->
|
||||
|
||||
<!-- config block -->
|
||||
<h2><a name="config" class="anchor" href="#config"><span class="octicon octicon-link"></span></a>Configuration</h2>
|
||||
<p align="justify">It is recommended to use graphical interface for widget configuration. DataEngine settings are stored in <code>/usr/share/config/netctl.conf</code></p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>CMD</th>
|
||||
<td><p align="justify"><code>netctl</code> command. Default value is <code>/usr/bin/netctl</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>IPCMD</th>
|
||||
<td><p align="justify"><code>ip</code> command. <code>/usr/bin/ip</code> by default.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>NETDIR</th>
|
||||
<td><p align="justify">A directory, which contains subdirectories with names of network interfaces. Default is <code>/sys/class/net/</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EXTIPCMD</th>
|
||||
<td><p align="justify">A command, which returns external IP address. Default value is <code>wget -qO- http://ifconfig.me/ip</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EXTIP</th>
|
||||
<td><p align="justify"><code>true</code> will enable external IP definition. Default is <code>false</code>.</p></td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- end of config block -->
|
||||
|
||||
<!-- gui block -->
|
||||
<h2><a name="gui" class="anchor" href="#gui"><span class="octicon octicon-link"></span></a>Graphical user interface</h2>
|
||||
<p align="justify">Graphical interface provides by <code>netctl-gui</code> application.</p>
|
||||
|
||||
<h3><a name="gui_configuration" class="anchor" href="#gui_configuration"><span class="octicon octicon-link"></span></a>Configuration</h3>
|
||||
<p align="justify">All settings of GUI are stored in <code>$HOME/.config/netctl-gui.conf</code>. It is highly recommended to edit it from graphical interface.</p>
|
||||
|
||||
<h3><a name="screenshots" class="anchor" href="#screenshots"><span class="octicon octicon-link"></span></a>Screenshots</h3>
|
||||
<p align="justify">(Screenshots in Russian, but it has English translation.)</p>
|
||||
<p align="justify">Widget:<br>
|
||||
<a href="/resources/screenshots/netctl_widget.png"><img src="/resources/preview/netctl_widget_prev.jpg"></a><br>
|
||||
Widget settings window:<br>
|
||||
<a href="/resources/screenshots/netctl_widget-settings.png"><img src="/resources/preview/netctl_widget-settings_prev.jpg"></a><br>
|
||||
Main window:<br>
|
||||
<a href="/resources/screenshots/netctl_main.png"><img src="/resources/preview/netctl_main_prev.jpg"></a><br>
|
||||
Profile creation window:<br>
|
||||
<a href="/resources/screenshots/netctl_profile.png"><img src="/resources/preview/netctl_profile_prev.jpg"></a><br>
|
||||
WiFi menu:<br>
|
||||
<a href="/resources/screenshots/netctl_wifi.png"><img src="/resources/preview/netctl_wifi_prev.jpg"></a></p>
|
||||
<!-- end of gui block -->
|
BIN
resources/preview/netctl_main_prev.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
resources/preview/netctl_profile_prev.jpg
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
resources/preview/netctl_widget-settings_prev.jpg
Normal file
After Width: | Height: | Size: 8.4 KiB |
BIN
resources/preview/netctl_widget_prev.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
BIN
resources/preview/netctl_wifi_prev.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
resources/screenshots/netctl_main.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
resources/screenshots/netctl_profile.png
Normal file
After Width: | Height: | Size: 89 KiB |
BIN
resources/screenshots/netctl_widget-settings.png
Normal file
After Width: | Height: | Size: 147 KiB |
BIN
resources/screenshots/netctl_widget.png
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
resources/screenshots/netctl_wifi.png
Normal file
After Width: | Height: | Size: 102 KiB |
@ -71,7 +71,7 @@ sudo ./install.sh
|
||||
<p align="justify">Если путь не указан, пакет будет установлен в <code>/</code>.</p></li>
|
||||
</ul>
|
||||
|
||||
<h3><a name="dependencies" class="anchor" href="#dependencies"><span class="octicon octicon-link"></span></a>Dependencies</h3>
|
||||
<h3><a name="dependencies" class="anchor" href="#dependencies"><span class="octicon octicon-link"></span></a>Зависимости</h3>
|
||||
<p align="justify">Все было протестировано на последних версиях зависимостей.</p>
|
||||
<ul>
|
||||
<li>Bash (включая awk, grep, sed)</li>
|
||||
@ -118,7 +118,7 @@ ExecStart=/usr/bin/git-etc -c /новый/путь/к/git-etc.conf
|
||||
systemctl restart git-etc
|
||||
{% endhighlight %}
|
||||
|
||||
<h3><a name="options" class="anchor" href="#options"><span class="octicon octicon-link"></span></a>Options</h3>
|
||||
<h3><a name="options" class="anchor" href="#options"><span class="octicon octicon-link"></span></a>Опции</h3>
|
||||
<table>
|
||||
<tr>
|
||||
<th>DIRECTORY</th>
|
||||
|
@ -83,9 +83,16 @@ groups:
|
||||
- <a href="https://aur.archlinux.org/packages/food_gui">Пакет в AUR</a>
|
||||
- title: julius-actions
|
||||
short: julius-actions
|
||||
description: <code>julius-actions</code> Скрипт, написанный на <code>Python2</code> для работы с <a href="http://julius.sourceforge.jp/en_index.php">julius</a>. Был сделан just-for-fun в мое свободное время. Работает нормально, но я им не пользуюсь.
|
||||
description: <code>julius-actions</code> скрипт, написанный на <code>Python2</code> для работы с <a href="http://julius.sourceforge.jp/en_index.php">julius</a>. Был сделан just-for-fun в мое свободное время. Работает нормально, но я им не пользуюсь.
|
||||
links:
|
||||
- <a href="https://github.com/arcan1s/julius-actions">Репозиторий на GitHub</a>
|
||||
- title: Netctl GUI
|
||||
short: netctl-gui
|
||||
description: <code>Netctl GUI</code> графическая оболочка для <code>netctl</code> (набор скриптов для поднятия сети в Arch'е). Написан на <code>CPP</code> с использованием библиотеки <code>Qt4</code>. На текущим момент умеет работать с профилями, в том числе создавать новые, а также умеет подключаться к WiFi. Также предоставляет виджет и DataEngine для KDE.
|
||||
links:
|
||||
- <a href="/ru/projects/netctl-gui">Домашняя страница</a>
|
||||
- <a href="https://github.com/arcan1s/netctl-gui">Репозиторий на GitHub</a>
|
||||
- <a href="https://aur.archlinux.org/packages/netctl-gui">Пакет в AUR</a>
|
||||
---
|
||||
<body>
|
||||
<div class="wrapper">
|
||||
|
136
ru/projects/netctl-gui.html
Normal file
@ -0,0 +1,136 @@
|
||||
---
|
||||
category: ru
|
||||
layout: project
|
||||
title: Netctl GUI
|
||||
short: netctl-gui
|
||||
description: Графическая оболочка для netctl
|
||||
hasgui: true
|
||||
developers:
|
||||
- Evgeniy Alelseev
|
||||
license: GPLv3
|
||||
links:
|
||||
- <a href="https://aur.archlinux.org/packages/netctl-gui">Пакет в AUR</a>
|
||||
---
|
||||
<!-- info block -->
|
||||
<h2><a name="info" class="anchor" href="#info"><span class="octicon octicon-link"></span></a>Информация</h2>
|
||||
<p align="justify">Графическая оболочка для <code>netctl</code> (набор скриптов для поднятия сети в Arch'е). Написана на <code>CPP</code> с использованием библиотеки <code>Qt4</code>. На текущим момент умеет работать с профилями, в том числе создавать новые, а также умеет подключаться к WiFi. Также предоставляет виджет и DataEngine для KDE.
|
||||
Простой демон, который создает git репозиторий в указанной директории и создает коммит в указанный промежуток времени.</p>
|
||||
{% highlight bash %}
|
||||
$ netctl-gui --help
|
||||
Netctl GUI
|
||||
Версия : 1.0.0 Лицензия : GPLv3
|
||||
Евгений Алексеев aka arcanis
|
||||
E-mail : esalexeev@gmail.com
|
||||
|
||||
Использование:
|
||||
netctl-gui [ --default ] [ -t NUM | --tab NUM ] [ -h | --help]
|
||||
|
||||
Параметры:
|
||||
--default - запустить со стандартными настройками
|
||||
-t NUM --tab NUM - открыть вкладку с номером NUM
|
||||
-h --help - показать эту справку и выход
|
||||
{% endhighlight %}
|
||||
|
||||
<h3><a name="devel" class="anchor" href="#devel"><span class="octicon octicon-link"></span></a>Разработчики</h3>
|
||||
<ul>
|
||||
{% for devel in page.developers %}
|
||||
<li>{{ devel }}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
<h3><a name="license" class="anchor" href="#license"><span class="octicon octicon-link"></span></a>Лицензия</h3>
|
||||
<ul>
|
||||
<li>{{ page.license }}</li>
|
||||
</ul>
|
||||
<!-- end of info block -->
|
||||
|
||||
<!-- install block -->
|
||||
<h2><a name="install" class="anchor" href="#install"><span class="octicon octicon-link"></span></a>Установка</h2>
|
||||
|
||||
<h3><a name="instruction" class="anchor" href="#instruction"><span class="octicon octicon-link"></span></a>Инструкция</h3>
|
||||
<ul>
|
||||
<li><p align="justify">Скачайте <a href="https://github.com/arcan1s/netctl-gui/releases">архив</a> с актуальной версией исходных файлов.</p></li>
|
||||
<li><p align="justify">Извлеките из него файлы и установите приложение:</p>
|
||||
<p align="justify">Если Вы хотите установить в <code>/</code>, Вы должны запустить как root:</p>
|
||||
{% highlight bash %}
|
||||
cd /путь/к/распакованному/архиву
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ../
|
||||
make
|
||||
sudo make install
|
||||
{% endhighlight %}
|
||||
<p align="justify">Для установки без виджета выполните следующие команды:</p>
|
||||
{% highlight bash %}
|
||||
cd /путь/к/распакованному/архиву
|
||||
mkdir build && cd build
|
||||
cmake -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release -DBUILD_DATAENGINE:BOOL=0 -DBUILD_PLASMOID:BOOL=0 ../
|
||||
make
|
||||
sudo make install
|
||||
{% endhighlight %}
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3><a name="dependencies" class="anchor" href="#dependencies"><span class="octicon octicon-link"></span></a>Зависимости</h3>
|
||||
<p align="justify">Все было протестировано на последних версиях зависимостей.</p>
|
||||
<ul>
|
||||
<li>netctl</li>
|
||||
<li>qt4</li>
|
||||
<li>automoc4 <i>(make)</i></li>
|
||||
<li>cmake <i>(make)</i></li>
|
||||
<li>kdebase-workspace <i>(опционально, виджет)</i></li>
|
||||
<li>sudo <i>(опционально, поддержка sudo)</i></li>
|
||||
<li>wpa_supplicant <i>(опционально, поддержка WiFi)</i></li>
|
||||
</ul>
|
||||
<!-- end of install block -->
|
||||
|
||||
<!-- howto block -->
|
||||
<h2><a name="howto" class="anchor" href="#howto"><span class="octicon octicon-link"></span></a>Использование</h2>
|
||||
<p align="justify">Просто запустите приложение <code>netctl-gui</code>. Если потребуется (и если Вы используете KDE), можете добавить виджет <code>netctl</code>, предоставляемый приложением.</p>
|
||||
<!-- end of howto block -->
|
||||
|
||||
<!-- config block -->
|
||||
<h2><a name="config" class="anchor" href="#config"><span class="octicon octicon-link"></span></a>Настройка</h2>
|
||||
<p align="justify">Для настройки виджета рекомендуется использовать графический интерфейс. Настройки DataEngine хранятся в <code>/usr/share/config/netctl.conf</code></p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>CMD</th>
|
||||
<td><p align="justify">Команда для запуска <code>netctl</code>. По умолчанию <code>/usr/bin/netctl</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>IPCMD</th>
|
||||
<td><p align="justify">Команда для запуска <code>ip</code>. По умолчанию <code>/usr/bin/ip</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>NETDIR</th>
|
||||
<td><p align="justify">Директория, содержащая поддиректории с именами сетевых интерфейсов. По умолчанию <code>/sys/class/net/</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EXTIPCMD</th>
|
||||
<td><p align="justify">Команда для получения внешнего IP адреса. По умолчанию <code>wget -qO- http://ifconfig.me/ip</code>.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>EXTIP</th>
|
||||
<td><p align="justify"><code>true</code> включит определение внешнего IP адреса. По умолчанию <code>false</code>.</p></td>
|
||||
</tr>
|
||||
</table>
|
||||
<!-- end of config block -->
|
||||
|
||||
<!-- gui block -->
|
||||
<h2><a name="gui" class="anchor" href="#gui"><span class="octicon octicon-link"></span></a>Графический интерфейс</h2>
|
||||
<p align="justify">Графический интерфейс предоставляется приложением <code>netctl-gui</code>.</p>
|
||||
|
||||
<h3><a name="gui_configuration" class="anchor" href="#gui_configuration"><span class="octicon octicon-link"></span></a>Настройка</h3>
|
||||
<p align="justify">Все настройки графического интерфейса хранятся в <code>$HOME/.config/netctl-gui.conf</code>. Для редактирования настоятельно рекомендуется использовать графический интерфейс.</p>
|
||||
|
||||
<h3><a name="screenshots" class="anchor" href="#screenshots"><span class="octicon octicon-link"></span></a>Скриншоты</h3>
|
||||
<p align="justify">Виджет:<br>
|
||||
<a href="/resources/screenshots/netctl_widget.png"><img src="/resources/preview/netctl_widget_prev.jpg"></a><br>
|
||||
Окно настроек виджета:<br>
|
||||
<a href="/resources/screenshots/netctl_widget-settings.png"><img src="/resources/preview/netctl_widget-settings_prev.jpg"></a><br>
|
||||
Главное окно:<br>
|
||||
<a href="/resources/screenshots/netctl_main.png"><img src="/resources/preview/netctl_main_prev.jpg"></a><br>
|
||||
Окно создания профиля:<br>
|
||||
<a href="/resources/screenshots/netctl_profile.png"><img src="/resources/preview/netctl_profile_prev.jpg"></a><br>
|
||||
Окно подключения к WiFi:<br>
|
||||
<a href="/resources/screenshots/netctl_wifi.png"><img src="/resources/preview/netctl_wifi_prev.jpg"></a></p>
|
||||
<!-- end of gui block -->
|
@ -2,6 +2,7 @@
|
||||
projects:
|
||||
- git-etc
|
||||
- oblikuestrategies
|
||||
- netctl-gui
|
||||
- pytextmonitor
|
||||
- queued
|
||||
---
|
||||
|