shithub: 9utils

ref: a8462d5114f895b5fd937736d92c6ff148bec0a5
dir: /install/rioTheming/

View raw version
#!/bin/rc

if(~ $#* 0){
    echo 'Usage: rioTheming install|uninstall'
}

bind -ac /dist/plan9front /
cd /sys/src/cmd/rio
switch($1){
case 'install'
    hget https://ftrv.se/_/9/patches/rio-themes.patch | ape/patch -p5
    mk install
case 'uninstall'
    git/revert .
    rm -f *.rej *.orig menuhit.c col.h
    mk install
}