I hereby claim:
- I am bergercookie on github.
- I am bergercookie (https://keybase.io/bergercookie) on keybase.
- I have a public key ASCxEtQVlL-1GkPKmucVZLWiESMMZetqFMRosyf1XPSqywo
To claim this, I am signing this object:
#!/usr/bin/env bash | |
# Instructions: https://index.ros.org/doc/ros2/Installation/Linux-Install-Debians/ | |
set -e | |
# flags | |
INSTALL_OPTIONAL=1 | |
USE_ROS1_PKGS=1 # additional packages for examples | |
INSTALL_BASHRC_LINE=1 |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# This is sp, the command-line Spotify controller. It talks to a running | |
# instance of the Spotify Linux client over dbus, providing an interface not | |
# unlike mpc. | |
# | |
# Put differently, it allows you to control Spotify without leaving the comfort | |
# of your command line, and without a custom client or Premium subscription. | |
# |
#!/bin/bash | |
sudo rm -fr /opt/franz | |
sudo rm -fr /usr/share/applications/franz.desktop | |
# create installation dir | |
sudo mkdir -p /opt/franz | |
#install franz |
sudo tar -xf Franz-linux-x64-0.9.10.tgz -C /opt/franz
wget "https://cdn-images-1.medium.com/max/360/1*v86tTomtFZIdqzMNpvwIZw.png" -O franz-icon.png
then sudo cp franz-icon.png /opt/franz
sudo touch /usr/share/applications/franz.desktop
then sudo vim /usr/share/applications/franz.desktop
paste the following lines into the file, then save the file:
[Desktop Entry]
Name=Franz
Comment=
#!/usr/bin/env bash | |
# vi:syntax=sh | |
# vi:filetype=sh | |
# Current script decrypts and opens a gpg-encrypted document that is stored in | |
# the password-store of the *pass* Unix password manager | |
# | |
# Support exists exclusively on Linux desktop platforms | |
function print_fatal_msg() { |
augroup mrpt_indentation | |
autocmd! | |
" mrpt uses tabs for indentation | |
autocmd FileType cpp set tabstop=4 | |
autocmd FileType cpp set shiftwidth=4 " use indents of X spaces | |
autocmd FileType cpp set preserveindent | |
autocmd FileType cpp set copyindent | |
autocmd FileType cpp set softtabstop=0 | |
autocmd FileType cpp set autoindent " indent at the same level of the previous line | |
autocmd FileType cpp set noexpandtab |
_drive() | |
{ | |
COMPREPLY=() | |
local cur prev cmd cmds files flags | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
pre="${COMP_WORDS[COMP_CWORD-1]}" | |
cmds="about clashes copy cp deinit del delete diff du edit-desc edit-description emptytrash features file-id help id index init issue list ls md5sum move mv new open pub pull push qr quota rename report repor" | |
files="del delete diff edit-desc edit-description file-id id new open pub pull push rename share star stat unpub unshare untrash url" | |
if [ $COMP_CWORD -eq 1 ]; then |
#!/usr/bin/env bash | |
# Mon Sep 19 12:51:30 EEST 2016, Nikos Koukis | |
# Setup MRPT in the current host | |
# | |
# Script sets up the dependencies for MRPT, clones the MRPT repository from | |
# github and setup the MRPT build directory in the USER's home directory | |
###################################################################### | |
# make sure we have the necessary set of tools | |
if ! [ -x "$(which git)" ]; then |
let mapleader = "," | |
let blacklists = ["*://mail.google.com/*"] | |
unmap "d" | |
map "ctrl+n" nextTab | |
map "ctrl+p" previousTab | |
map "space" scrollFullPageDown | |
map "d" closeTab | |
map "<leader>n" moveTabRight |