Compare commits
9 Commits
Author | SHA1 | Date | |
---|---|---|---|
31adc47f0e
|
|||
6e16588de9
|
|||
35186ae737 | |||
1e5e1754de | |||
47f33bdc03
|
|||
3cb13a52ac
|
|||
da5878261a | |||
2e8e10c0db | |||
7c2566956c |
12
README.md
12
README.md
@@ -1,13 +1,15 @@
|
|||||||
# Preparing this script for Artix Repos
|
### Uncomplicated Fire Wall (UFW) Script for Artix Repos to add a tray icon with UFW status to the panel
|
||||||
|
|
||||||
# ufwIconbar (Add an icon with UFW status to the panel)
|
<p align="center">
|
||||||
|
<img width="100" height="100" src="https://imgur.com/osOZxnR.png?raw=true">
|
||||||

|
</p>
|
||||||
|
|
||||||
- Show an icon into panel when UFW (Uncomplicated FireWall) is actived or deactivated.
|
- Show an icon into panel when UFW (Uncomplicated FireWall) is actived or deactivated.
|
||||||
|
|
||||||
- Tested with XFCE4 Desktop environment (Artix, Arch & Manjaro)
|
- Tested with XFCE4 Desktop environment (Artix, Arch & Manjaro)
|
||||||
|
|
||||||
- Requisites: yad
|
- Requisites: yad, ufw, gufw
|
||||||
|
|
||||||
- forked from https://github.com/juanmafont/ufwIconbar
|
- forked from https://github.com/juanmafont/ufwIconbar
|
||||||
|
|
||||||
|
- Wayland ready as from [1-2](https://gitea.artixlinux.org/linuxer/ufwIconbar/src/tag/1-2) Release and on
|
||||||
|
12
gufw icon.desktop
Normal file
12
gufw icon.desktop
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Encoding=UTF-8
|
||||||
|
Version=0.9.4
|
||||||
|
Type=Application
|
||||||
|
Name=gufw icon
|
||||||
|
Comment=
|
||||||
|
Exec=gufw_icon.sh
|
||||||
|
OnlyShowIn=XFCE;
|
||||||
|
StartupNotify=false
|
||||||
|
Terminal=false
|
||||||
|
Hidden=true
|
||||||
|
|
2
gufw_icon.sh
Normal file → Executable file
2
gufw_icon.sh
Normal file → Executable file
@@ -1,5 +1,7 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
export GDK_BACKEND=x11
|
||||||
|
|
||||||
# create a FIFO file, used to manage the I/O redirection from shell
|
# create a FIFO file, used to manage the I/O redirection from shell
|
||||||
PIPE=$(mktemp -u --tmpdir ${0##*/}.XXXXXXXX)
|
PIPE=$(mktemp -u --tmpdir ${0##*/}.XXXXXXXX)
|
||||||
mkfifo $PIPE
|
mkfifo $PIPE
|
||||||
|
Reference in New Issue
Block a user