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
for f in *.m4a; do ffmpeg -i "$f" -codec:v copy -codec:a libmp3lame -q:a 2 "${f%.m4a}.mp3"; done |
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
diff --git a/ranger/gui/ui.py b/ranger/gui/ui.py | |
index 3898a7a..2ea5b28 100644 | |
--- a/ranger/gui/ui.py | |
+++ b/ranger/gui/ui.py | |
@@ -6,6 +6,7 @@ import sys | |
import curses | |
import _curses | |
+from subprocess import check_output | |
from .displayable import DisplayableContainer |
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 | |
curl automation.whatismyip.com/n09230945.asp | |
echo |
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
## AUR Update | |
3 if [ "$(cower -u)" != "" ]; then | |
4 cd ~/.builds | |
5 cower -du | |
6 for f in $HOME/.builds/*/PKGBUILD; do cd $(dirname $f); makepkg -i; done | |
7 rm -r ~/.builds/* | |
8 echo 'AUR Update Complete.' | |
9 else | |
10 echo 'No package updates are available.' | |
11 fi |