about summary refs log tree commit diff
path: root/configs
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-05T14·29+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-05T15·04+0000
commitc6dac53b72da08bf5786755c4f59f7c829e76a1e (patch)
treec7e3ffaceaa9dd1444076350e27db14e2b8344d7 /configs
parent77633d22ae10ef3e5435930dce119b8fb76ac83f (diff)
Drop support for cloudtop
While I do still technically own a Google cloudtop device, I haven't used it in
at least six months. In the interest of pruning non-critical dependencies, I'm
deleting it. I can alway restore it thanks to Git.
Diffstat (limited to 'configs')
-rw-r--r--configs/cloudtop/.gitkeep0
-rwxr-xr-xconfigs/install2
-rwxr-xr-xconfigs/uninstall2
3 files changed, 0 insertions, 4 deletions
diff --git a/configs/cloudtop/.gitkeep b/configs/cloudtop/.gitkeep
deleted file mode 100644
index e69de29bb2d1..000000000000
--- a/configs/cloudtop/.gitkeep
+++ /dev/null
diff --git a/configs/install b/configs/install
index 62236a0dc5a3..d4d760e73f8d 100755
--- a/configs/install
+++ b/configs/install
@@ -7,8 +7,6 @@ case $(hostname) in
     (cd "$configs/desktop" && stow --target="$HOME" .);;
   $LAPTOP)
     (cd "$configs/work_laptop" && stow --target="$HOME" .);;
-  $CLOUDTOP)
-    (cd "$configs/cloudtop" && stow --target="$HOME" .);;
 esac
 
 (cd "$configs/shared" && stow --target="$HOME" .)
diff --git a/configs/uninstall b/configs/uninstall
index 7151843d6070..8a97dd06d827 100755
--- a/configs/uninstall
+++ b/configs/uninstall
@@ -7,8 +7,6 @@ case $(hostname) in
     (cd "$configs/desktop" && stow --delete --target="$HOME" .);;
   $LAPTOP)
     (cd "$configs/laptop" && stow --delete --target="$HOME" .);;
-  $CLOUDTOP)
-    (cd "$configs/cloudtop" && stow --delete --target="$HOME" .);;
 esac
 
 (cd "$configs/shared" && stow --delete --target="$HOME" .)