Månedsarkiv: august 2018

Writing a simple bash filter

To write a simple bash filter application, start by declaring your filter as a bash script with #!/usr/bin/env bash. This informs your shell what interpreter to use when running the script. The trick to writing a filter is to read … Læs resten

Udgivet i Programmering, Shellscript | Skriv en kommentar

Screenshot script for Ubuntu 18.04

This script will take a screenshot, upload it to a server and copy the URL into your clipboard and finaly play a sound to tell you that it’s done, first install xclip: apt-get install xclip Create screenshot.sh #!/bin/bash filename=’Screenshot_from_’`date +%Y-%m-%d_%H-%M-%S`’.png’ … Læs resten

Udgivet i Linux, Workstation | Skriv en kommentar

WM independant shortcuts with xbindkeys

First install: apt-get install xbindkeys And create a config file, /home/user/.xbindkeysrc: “/home/user/scripts.sh” Control + Alt + P And run xbindkeys -p

Udgivet i Linux, Workstation | Skriv en kommentar