From 4c0b48b9fc39716806b1a960c6a8c1410bdf9cbe Mon Sep 17 00:00:00 2001
From: M33 <327-m33@git.qoto.org>
Date: Sat, 27 Mar 2021 10:52:44 +0000
Subject: [PATCH] Delete get_normal_keyboards.sh

---
 get_normal_keyboards.sh | 30 ------------------------------
 1 file changed, 30 deletions(-)
 delete mode 100644 get_normal_keyboards.sh

diff --git a/get_normal_keyboards.sh b/get_normal_keyboards.sh
deleted file mode 100644
index 99863a0..0000000
--- a/get_normal_keyboards.sh
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/bash
-#
-# get_normal_keyboards.sh
-#
-# A simple script that get normal keyboards from the squeekboard git depot
-# Gitlab depot : https://git.qoto.org/m33/squeekboard-terminal-layout-generator
-#
-# M33 (https://octodon.social/M33) - 20.03.2021
-#
-
-SOURCE_GIT=https://source.puri.sm/Librem5/squeekboard.git
-SQUEEKBOARD_DIR=squeekboard/data/keyboards
-NORMAL_DIR=normal_layout
-
-mkdir -p $NORMAL_DIR
-if [ $? -ne 0 ]; then
-  echo "Error: can't create target directory $NORMAL_DIR"
-  exit 1
-fi
-
-git clone $SOURCE_GIT
-if [ $? -ne 0 ]; then
-  echo "Error: can't get sources"
-  exit 1
-fi
-
-cp -vf $SQUEEKBOARD_DIR/*.yaml $NORMAL_DIR
-rm -fr squeekboard
-
-exit 0
-- 
GitLab