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
# Appindicator Demo | |
import sys | |
from gi import require_version | |
require_version("Gtk", "3.0") | |
require_version("AyatanaAppIndicator3", "0.1") | |
require_version("Notify", "0.7") |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE policyconfig PUBLIC "-//freedesktop//DTD PolicyKit Policy Configuration 1.0//EN" | |
"http://www.freedesktop.org/standards/PolicyKit/1/policyconfig.dtd"> | |
<policyconfig> | |
<vendor>Vorta for Borg Backup</vendor> | |
<vendor_url>https://vorta.borgbase.com/</vendor_url> | |
<icon_name>com.borgbase.Vorta</icon_name> | |
<action id="com.borgbase.Vorta"> |
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
name : epson-inkjet-printer-escpr2 | |
version : 1.1.15 | |
release : 1 | |
source : | |
- https://download3.ebz.epson.net/dsc/f/03/00/11/56/43/b1a6f1193e073c4c049da9404806c61052b62419/epson-inkjet-printer-escpr2-1.1.15-1lsb3.2.src.rpm : 2eb8f1655de4f7189ec18d94f581112e2ff00b05e64a44c24bbb0524fafdd728 | |
license : GPL-2.1-or-later | |
component : desktop.core | |
summary : Printer drivers for Epson printers v2 | |
libsplit : no | |
description: | |
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
name : borgmatic | |
version : 1.5.9 | |
release : 2 | |
source : | |
- https://projects.torsion.org/witten/borgmatic/archive/1.5.9.tar.gz : 383b6e993bd4a64b93e92bc44707a7132ce95bdcbdd801bec7d9bab1b36339e2 | |
homepage : https://torsion.org/borgmatic/ | |
license : GPL-3.0-or-later | |
component : system.utils | |
summary : borgmatic is simple, configuration-driven backup software for servers and workstations. | |
description: | |
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
#!/bin/bash | |
# VS Code updater | |
# get installed version | |
installed=$($HOME/bin/VSCode-linux-x64/bin/code -v 2>/dev/null | head -n 1) | |
# get latest release from Github | |
latest=$(curl -s https://github.com/Microsoft/vscode/releases/latest | grep -Po 'tag/\K[0-9\.]*') | |
if [ "$installed" == "$latest" ] |