dhcpcd eth0
This file contains hidden or 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 | |
| # A function that uses ghostscript to compress a pdf file inplace | |
| function pdfshrink(){ | |
| inputFile=$1 | |
| outputFile=$(basename -s ".pdf" $1)-compressed.pdf | |
| cp $inputFile $outputFile; | |
| gs -dNOPAUSE \ | |
| -dBATCH \ | |
| -sDEVICE=pdfwrite \ | |
| -dCompatibilityLevel=1.4 \ |
Include in $HOME/.emacs
(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
Download from MELPA
https://github.com/powerline/powerline
sudo zypper install powerline powerline-docs powerline-fonts vim-plugin-powerline
Set powerline_daemon to start on boot in YAST-Run-Configurations
Zum Hervorheben der aktuellen Zeile (Cursor-Position)
:set cursorline
:hi CursorLine term=bold cterm=bold guibg=Grey40