Compare commits

..

No commits in common. "2492b303c183669f735dde253a5afa05777258fd" and "b8b1aaf016dd505e152400d0d47241a096e75d4c" have entirely different histories.

4 changed files with 4 additions and 7 deletions

View File

@ -1 +0,0 @@
e scr.prompt.vi = true

View File

@ -10,3 +10,5 @@ set inputbar-bg "#000000"
set inputbar-fg "#CCCCCC" set inputbar-fg "#CCCCCC"
set selection-clipboard clipboard set selection-clipboard clipboard
map D feedkeys ":set recolor<Return>"

View File

@ -43,10 +43,6 @@ impf () {
find "$1" -mindepth 1 -maxdepth 1 | xargs -I{} mv "{}"/ "$2" find "$1" -mindepth 1 -maxdepth 1 | xargs -I{} mv "{}"/ "$2"
} }
impf_cp () {
find "$1" -mindepth 1 -maxdepth 1 | xargs -I{} cp -r "{}"/ "$2"
}
exp () { exp () {
find "$1" -type f | xargs -I{} cp -n "{}" "$2" find "$1" -type f | xargs -I{} cp -n "{}" "$2"
} }
@ -88,7 +84,7 @@ case "$ACTION" in
imp "$ROOT/Documents/contacts.vcf" $DEST imp "$ROOT/Documents/contacts.vcf" $DEST
imp "$ROOT/infbk/" $DEST imp "$ROOT/infbk/" $DEST
impf_cp "$ROOT/.SeedVaultAndroidBackup/" $DEST/seedvault/ impf "$ROOT/.SeedVaultAndroidBackup/" $DEST/seedvault/
;; ;;
HELP) HELP)

View File

@ -24,7 +24,7 @@ export XMODIFIERS=@im=fcitx
while true; do while true; do
DATE=$(date +'%H:%M:%S %a %b %d') DATE=$(date +'%H:%M:%S %a %b %d')
TEMP="$(($(cat /sys/class/thermal/thermal_zone0/temp) / 1000))C" TEMP="$(($(cat /sys/class/thermal/thermal_zone0/temp) / 1000))C"
BAT="$(acpi -b | head -n 1 | awk -F'[,:]' '{print $3}' | tr -d '[:space:]')" BAT="$(acpi | cut -f4 -d " " | tr -d ',')"
KEY="$(xkblayout-state print '%s')" KEY="$(xkblayout-state print '%s')"
xsetroot -name " $DATE // $TEMP, $BAT // $KEY" xsetroot -name " $DATE // $TEMP, $BAT // $KEY"