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
[%General] | |
author=Tsu Jan | |
comment=A minimalistic dark theme inspired by the Arc GTK theme | |
x11drag=all | |
alt_mnemonic=true | |
left_tabs=true | |
attach_active_tab=true | |
mirror_doc_tabs=true | |
group_toolbar_buttons=false | |
toolbar_item_spacing=1 |
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
html, html > *, html > * > *, .browser-toolbar { | |
border: none !important; | |
-moz-appearance: none !important; | |
box-shadow: none !important; | |
background: transparent!important; | |
} | |
.titlebar-color, .browser-toolbar, findbar { | |
background: rgba(49, 54, 59, 0.75)!important; | |
} |
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
. ~/.antigen/init.zsh || eval "$(curl -L git.io/antigen)" | |
antigen use oh-my-zsh | |
antigen bundle git | |
antigen bundle heroku | |
antigen bundle pip | |
antigen bundle lein | |
antigen bundle command-not-found | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-completions |
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
#! /usr/bin/bash | |
pacman -Qsq | while read line; | |
do echo \> checking $line; pacman -Qlq $line | grep -vP '^/etc' | grep -vP '/$' | | |
while read line2 | |
do if [[ ! -e "$line2" ]] && [[ ! -s "$line2" ]] | |
then echo $line $line2 | tee -a corrupt; break | |
fi | |
done | |
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
#!/bin/sh /etc/rc.common | |
START=99 | |
USE_PROCD=1 | |
start_service() { | |
if [ -e /root/.upgrade ] | |
then exit | |
else touch /root/.upgrade | |
fi |
NewerOlder