Skip to content

Instantly share code, notes, and snippets.

[%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
@nicman23
nicman23 / paccheck-lite.sh
Created January 12, 2019 14:36
paccheck checking only the existance and size of the the reported files, going to the next package on first error.
#! /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