Skip to content

Instantly share code, notes, and snippets.

@morxa
morxa / vimrc
Created November 21, 2019 13:05
My vimrc
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
@morxa
morxa / droidcam-kmod.spec
Created March 23, 2020 10:11
DroidCam on Fedora
%define buildforkernels akmod
Name: droidcam-kmod
Version: 081219
Release: 1%{?dist}
Summary: droidcam
License: unknown
URL: https://dev47apps.com
Source0: https://www.dev47apps.com/files/linux/droidcam_%{version}_64bit.tar.bz2
@morxa
morxa / README.md
Last active June 6, 2024 14:23
Fedora Zoom auto update

To install:

  1. Copy both services to /etc/systemd/system/
  2. Enable with sudo systemctl enable --now zoom-update.timer
@morxa
morxa / run_and_notify.bash
Last active April 14, 2021 12:00
Run a command repeatedly and send a notification when it succeeds.
#! /bin/bash
#
# run_and_notify.bash
# Copyright (C) 2021 Till Hofmann <hofmann@kbsg.rwth-aachen.de>
#
# Distributed under terms of the MIT license.
#
set -e
set -u