Skip to content

Instantly share code, notes, and snippets.

@Ste74
Ste74 / Creating an AUR Package.md
Created January 27, 2022 17:32 — forked from keilmillerjr/Creating an AUR Package.md
How to create and manage an AUR package. #AUR #ARCH #makepkg #PKGBUILD
@Ste74
Ste74 / removeOlderThanDays.sh
Created August 23, 2019 21:04 — forked from hatifnatt/removeOlderThanDays.sh
Simple script to delete files older than specific number of days from FTP
#!/bin/bash
# Simple script to delete files older than specific number of days from FTP. Provided AS IS without any warranty.
# This script use 'lftp'. And 'date' with '-d' option which is not POSIX compatible.
# FTP credentials and path
FTP_HOST="ftp.host.tld"
FTP_USER="usename"
FTP_PASS="password"
FTP_PATH="/ftp/path"
# Full path to lftp executable
@Ste74
Ste74 / gist:73163040eed72e5b176ef45caf2fcad7
Created January 11, 2019 22:16
budgie-extras pkgbuild
# Maintainer: Stefano Capitani <stefanoatmanjarodotorg>
# Maintainer: Filipe Laíns (FFY00) <lains@archlinux.org>
pkgname=budgie-extras
pkgver=0.7.0
pkgrel=1.1
pkgdesc='Additional Budgie Desktop enhancements for the user experience'
arch=('x86_64')
license=('GPL3')
url='https://github.com/UbuntuBudgie/budgie-extras'
@Ste74
Ste74 / Makefile
Created April 17, 2018 16:59 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.