This file contains 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
# vim: ft=conf nospell | |
browser /usr/bin/google-chrome-stable | |
external-url-viewer /usr/bin/urlview | |
always-display-description true | |
goto-next-feed no | |
save-path ~/KuaiPan/Downloads/rss/ | |
text-width 78 | |
cache-file ~/KuaiPan/Downloads/rss/config/cache.db | |
max-items 500 |
This file contains 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
# ~/.tmuxinator/normal.yml | |
name: normal | |
root: ~/ | |
# Optional tmux socket | |
# socket_name: foo | |
# Runs before everything. Use it to start daemons etc. | |
# pre: sudo /etc/rc.d/mysqld start |
This file contains 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
#!/usr/bin/env bash | |
function echoHeader { | |
# Blue, underline | |
echo -e "\033[0;34;4m${1}\033[0m" | |
} | |
function echoSection { | |
echo -e "\033[47;30m${1}\033[0m" | |
} | |
function echoInfo { |
This file contains 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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
""" | |
Check any disabled snap. | |
Remove disabled snap. | |
""" | |
import argparse | |
import subprocess |