diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e4e5f6c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ \ No newline at end of file diff --git a/icons/generate b/icons/generate new file mode 100755 index 0000000..ae41775 --- /dev/null +++ b/icons/generate @@ -0,0 +1,40 @@ +#!/usr/bin/python3 + +import os + +MAX_ROWS = 5 +MAX_COLS = 5 +ICON_NAME_PREFIX = "workspace" + +WORKSPACE_WIDTH = 50 +WORKSPACE_HEIGHT = 50 +STROKE_COLOR = "#bebebe" +STROKE_WIDTH = 5 +BORDER_RADIUS = 10 + +with open("workspace_icon_template.data") as f: + TEMPLATE = f.read() + +def generate_icons(n_rows, n_cols): + for i in range(1, n_rows * n_cols + 1): + filename = f"{ICON_NAME_PREFIX}_{n_rows}x{n_cols}_{i}.svg" + width = n_cols * WORKSPACE_WIDTH + height = n_rows * WORKSPACE_HEIGHT + data = TEMPLATE + data = data.replace("{{WIDTH}}", str(width)) + data = data.replace("{{HEIGHT}}", str(height)) + data = data.replace("{{STROKE_COLOR}}", STROKE_COLOR) + data = data.replace("{{STROKE_WIDTH}}", str(STROKE_WIDTH)) + data = data.replace("{{BORDER_RADIUS}}", str(BORDER_RADIUS)) + data = data.replace("{{RECTANGLE_X}}", str(STROKE_WIDTH / 2)) + data = data.replace("{{RECTANGLE_Y}}", str(STROKE_WIDTH / 2)) + data = data.replace("{{RECTANGLE_WIDTH}}", str(width - STROKE_WIDTH)) + data = data.replace("{{RECTANGLE_HEIGHT}}", str(height - STROKE_WIDTH)) + data += "" + with open(filename, "w") as f: + f.write(data) + +if __name__ == "__main__": + for N_ROWS in range(MAX_ROWS + 1): + for N_COLS in range(MAX_COLS + 1): + generate_icons(N_ROWS, N_COLS) diff --git a/icons/workspace_1x1_1.svg b/icons/workspace_1x1_1.svg new file mode 100644 index 0000000..3efb233 --- /dev/null +++ b/icons/workspace_1x1_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x2_1.svg b/icons/workspace_1x2_1.svg new file mode 100644 index 0000000..2825d57 --- /dev/null +++ b/icons/workspace_1x2_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x2_2.svg b/icons/workspace_1x2_2.svg new file mode 100644 index 0000000..2825d57 --- /dev/null +++ b/icons/workspace_1x2_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x3_1.svg b/icons/workspace_1x3_1.svg new file mode 100644 index 0000000..8968bf2 --- /dev/null +++ b/icons/workspace_1x3_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x3_2.svg b/icons/workspace_1x3_2.svg new file mode 100644 index 0000000..8968bf2 --- /dev/null +++ b/icons/workspace_1x3_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x3_3.svg b/icons/workspace_1x3_3.svg new file mode 100644 index 0000000..8968bf2 --- /dev/null +++ b/icons/workspace_1x3_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x4_1.svg b/icons/workspace_1x4_1.svg new file mode 100644 index 0000000..35d1a18 --- /dev/null +++ b/icons/workspace_1x4_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x4_2.svg b/icons/workspace_1x4_2.svg new file mode 100644 index 0000000..35d1a18 --- /dev/null +++ b/icons/workspace_1x4_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x4_3.svg b/icons/workspace_1x4_3.svg new file mode 100644 index 0000000..35d1a18 --- /dev/null +++ b/icons/workspace_1x4_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x4_4.svg b/icons/workspace_1x4_4.svg new file mode 100644 index 0000000..35d1a18 --- /dev/null +++ b/icons/workspace_1x4_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x5_1.svg b/icons/workspace_1x5_1.svg new file mode 100644 index 0000000..a71fc8b --- /dev/null +++ b/icons/workspace_1x5_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x5_2.svg b/icons/workspace_1x5_2.svg new file mode 100644 index 0000000..a71fc8b --- /dev/null +++ b/icons/workspace_1x5_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x5_3.svg b/icons/workspace_1x5_3.svg new file mode 100644 index 0000000..a71fc8b --- /dev/null +++ b/icons/workspace_1x5_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x5_4.svg b/icons/workspace_1x5_4.svg new file mode 100644 index 0000000..a71fc8b --- /dev/null +++ b/icons/workspace_1x5_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_1x5_5.svg b/icons/workspace_1x5_5.svg new file mode 100644 index 0000000..a71fc8b --- /dev/null +++ b/icons/workspace_1x5_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x1_1.svg b/icons/workspace_2x1_1.svg new file mode 100644 index 0000000..edd391c --- /dev/null +++ b/icons/workspace_2x1_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x1_2.svg b/icons/workspace_2x1_2.svg new file mode 100644 index 0000000..edd391c --- /dev/null +++ b/icons/workspace_2x1_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x2_1.svg b/icons/workspace_2x2_1.svg new file mode 100644 index 0000000..23613c5 --- /dev/null +++ b/icons/workspace_2x2_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x2_2.svg b/icons/workspace_2x2_2.svg new file mode 100644 index 0000000..23613c5 --- /dev/null +++ b/icons/workspace_2x2_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x2_3.svg b/icons/workspace_2x2_3.svg new file mode 100644 index 0000000..23613c5 --- /dev/null +++ b/icons/workspace_2x2_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x2_4.svg b/icons/workspace_2x2_4.svg new file mode 100644 index 0000000..23613c5 --- /dev/null +++ b/icons/workspace_2x2_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x3_1.svg b/icons/workspace_2x3_1.svg new file mode 100644 index 0000000..0211fce --- /dev/null +++ b/icons/workspace_2x3_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x3_2.svg b/icons/workspace_2x3_2.svg new file mode 100644 index 0000000..0211fce --- /dev/null +++ b/icons/workspace_2x3_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x3_3.svg b/icons/workspace_2x3_3.svg new file mode 100644 index 0000000..0211fce --- /dev/null +++ b/icons/workspace_2x3_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x3_4.svg b/icons/workspace_2x3_4.svg new file mode 100644 index 0000000..0211fce --- /dev/null +++ b/icons/workspace_2x3_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x3_5.svg b/icons/workspace_2x3_5.svg new file mode 100644 index 0000000..0211fce --- /dev/null +++ b/icons/workspace_2x3_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x3_6.svg b/icons/workspace_2x3_6.svg new file mode 100644 index 0000000..0211fce --- /dev/null +++ b/icons/workspace_2x3_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_1.svg b/icons/workspace_2x4_1.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_2.svg b/icons/workspace_2x4_2.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_3.svg b/icons/workspace_2x4_3.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_4.svg b/icons/workspace_2x4_4.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_5.svg b/icons/workspace_2x4_5.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_6.svg b/icons/workspace_2x4_6.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_7.svg b/icons/workspace_2x4_7.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x4_8.svg b/icons/workspace_2x4_8.svg new file mode 100644 index 0000000..5a7ec68 --- /dev/null +++ b/icons/workspace_2x4_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_1.svg b/icons/workspace_2x5_1.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_10.svg b/icons/workspace_2x5_10.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_2.svg b/icons/workspace_2x5_2.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_3.svg b/icons/workspace_2x5_3.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_4.svg b/icons/workspace_2x5_4.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_5.svg b/icons/workspace_2x5_5.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_6.svg b/icons/workspace_2x5_6.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_7.svg b/icons/workspace_2x5_7.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_8.svg b/icons/workspace_2x5_8.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_2x5_9.svg b/icons/workspace_2x5_9.svg new file mode 100644 index 0000000..3d2f3e4 --- /dev/null +++ b/icons/workspace_2x5_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x1_1.svg b/icons/workspace_3x1_1.svg new file mode 100644 index 0000000..6476d59 --- /dev/null +++ b/icons/workspace_3x1_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x1_2.svg b/icons/workspace_3x1_2.svg new file mode 100644 index 0000000..6476d59 --- /dev/null +++ b/icons/workspace_3x1_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x1_3.svg b/icons/workspace_3x1_3.svg new file mode 100644 index 0000000..6476d59 --- /dev/null +++ b/icons/workspace_3x1_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x2_1.svg b/icons/workspace_3x2_1.svg new file mode 100644 index 0000000..019ef5b --- /dev/null +++ b/icons/workspace_3x2_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x2_2.svg b/icons/workspace_3x2_2.svg new file mode 100644 index 0000000..019ef5b --- /dev/null +++ b/icons/workspace_3x2_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x2_3.svg b/icons/workspace_3x2_3.svg new file mode 100644 index 0000000..019ef5b --- /dev/null +++ b/icons/workspace_3x2_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x2_4.svg b/icons/workspace_3x2_4.svg new file mode 100644 index 0000000..019ef5b --- /dev/null +++ b/icons/workspace_3x2_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x2_5.svg b/icons/workspace_3x2_5.svg new file mode 100644 index 0000000..019ef5b --- /dev/null +++ b/icons/workspace_3x2_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x2_6.svg b/icons/workspace_3x2_6.svg new file mode 100644 index 0000000..019ef5b --- /dev/null +++ b/icons/workspace_3x2_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_1.svg b/icons/workspace_3x3_1.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_2.svg b/icons/workspace_3x3_2.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_3.svg b/icons/workspace_3x3_3.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_4.svg b/icons/workspace_3x3_4.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_5.svg b/icons/workspace_3x3_5.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_6.svg b/icons/workspace_3x3_6.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_7.svg b/icons/workspace_3x3_7.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_8.svg b/icons/workspace_3x3_8.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x3_9.svg b/icons/workspace_3x3_9.svg new file mode 100644 index 0000000..a872146 --- /dev/null +++ b/icons/workspace_3x3_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_1.svg b/icons/workspace_3x4_1.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_10.svg b/icons/workspace_3x4_10.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_11.svg b/icons/workspace_3x4_11.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_12.svg b/icons/workspace_3x4_12.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_2.svg b/icons/workspace_3x4_2.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_3.svg b/icons/workspace_3x4_3.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_4.svg b/icons/workspace_3x4_4.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_5.svg b/icons/workspace_3x4_5.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_6.svg b/icons/workspace_3x4_6.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_7.svg b/icons/workspace_3x4_7.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_8.svg b/icons/workspace_3x4_8.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x4_9.svg b/icons/workspace_3x4_9.svg new file mode 100644 index 0000000..2f35b59 --- /dev/null +++ b/icons/workspace_3x4_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_1.svg b/icons/workspace_3x5_1.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_10.svg b/icons/workspace_3x5_10.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_11.svg b/icons/workspace_3x5_11.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_12.svg b/icons/workspace_3x5_12.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_13.svg b/icons/workspace_3x5_13.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_13.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_14.svg b/icons/workspace_3x5_14.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_14.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_15.svg b/icons/workspace_3x5_15.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_15.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_2.svg b/icons/workspace_3x5_2.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_3.svg b/icons/workspace_3x5_3.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_4.svg b/icons/workspace_3x5_4.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_5.svg b/icons/workspace_3x5_5.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_6.svg b/icons/workspace_3x5_6.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_7.svg b/icons/workspace_3x5_7.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_8.svg b/icons/workspace_3x5_8.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_3x5_9.svg b/icons/workspace_3x5_9.svg new file mode 100644 index 0000000..5cd690c --- /dev/null +++ b/icons/workspace_3x5_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x1_1.svg b/icons/workspace_4x1_1.svg new file mode 100644 index 0000000..fcbb78b --- /dev/null +++ b/icons/workspace_4x1_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x1_2.svg b/icons/workspace_4x1_2.svg new file mode 100644 index 0000000..fcbb78b --- /dev/null +++ b/icons/workspace_4x1_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x1_3.svg b/icons/workspace_4x1_3.svg new file mode 100644 index 0000000..fcbb78b --- /dev/null +++ b/icons/workspace_4x1_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x1_4.svg b/icons/workspace_4x1_4.svg new file mode 100644 index 0000000..fcbb78b --- /dev/null +++ b/icons/workspace_4x1_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_1.svg b/icons/workspace_4x2_1.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_2.svg b/icons/workspace_4x2_2.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_3.svg b/icons/workspace_4x2_3.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_4.svg b/icons/workspace_4x2_4.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_5.svg b/icons/workspace_4x2_5.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_6.svg b/icons/workspace_4x2_6.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_7.svg b/icons/workspace_4x2_7.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x2_8.svg b/icons/workspace_4x2_8.svg new file mode 100644 index 0000000..72208f7 --- /dev/null +++ b/icons/workspace_4x2_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_1.svg b/icons/workspace_4x3_1.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_10.svg b/icons/workspace_4x3_10.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_11.svg b/icons/workspace_4x3_11.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_12.svg b/icons/workspace_4x3_12.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_2.svg b/icons/workspace_4x3_2.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_3.svg b/icons/workspace_4x3_3.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_4.svg b/icons/workspace_4x3_4.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_5.svg b/icons/workspace_4x3_5.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_6.svg b/icons/workspace_4x3_6.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_7.svg b/icons/workspace_4x3_7.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_8.svg b/icons/workspace_4x3_8.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x3_9.svg b/icons/workspace_4x3_9.svg new file mode 100644 index 0000000..2db486e --- /dev/null +++ b/icons/workspace_4x3_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_1.svg b/icons/workspace_4x4_1.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_10.svg b/icons/workspace_4x4_10.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_11.svg b/icons/workspace_4x4_11.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_12.svg b/icons/workspace_4x4_12.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_13.svg b/icons/workspace_4x4_13.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_13.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_14.svg b/icons/workspace_4x4_14.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_14.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_15.svg b/icons/workspace_4x4_15.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_15.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_16.svg b/icons/workspace_4x4_16.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_16.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_2.svg b/icons/workspace_4x4_2.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_3.svg b/icons/workspace_4x4_3.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_4.svg b/icons/workspace_4x4_4.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_5.svg b/icons/workspace_4x4_5.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_6.svg b/icons/workspace_4x4_6.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_7.svg b/icons/workspace_4x4_7.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_8.svg b/icons/workspace_4x4_8.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x4_9.svg b/icons/workspace_4x4_9.svg new file mode 100644 index 0000000..cdfca7d --- /dev/null +++ b/icons/workspace_4x4_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_1.svg b/icons/workspace_4x5_1.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_10.svg b/icons/workspace_4x5_10.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_11.svg b/icons/workspace_4x5_11.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_12.svg b/icons/workspace_4x5_12.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_13.svg b/icons/workspace_4x5_13.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_13.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_14.svg b/icons/workspace_4x5_14.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_14.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_15.svg b/icons/workspace_4x5_15.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_15.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_16.svg b/icons/workspace_4x5_16.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_16.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_17.svg b/icons/workspace_4x5_17.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_17.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_18.svg b/icons/workspace_4x5_18.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_18.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_19.svg b/icons/workspace_4x5_19.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_19.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_2.svg b/icons/workspace_4x5_2.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_20.svg b/icons/workspace_4x5_20.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_20.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_3.svg b/icons/workspace_4x5_3.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_4.svg b/icons/workspace_4x5_4.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_5.svg b/icons/workspace_4x5_5.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_6.svg b/icons/workspace_4x5_6.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_7.svg b/icons/workspace_4x5_7.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_8.svg b/icons/workspace_4x5_8.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_4x5_9.svg b/icons/workspace_4x5_9.svg new file mode 100644 index 0000000..81d6c6a --- /dev/null +++ b/icons/workspace_4x5_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x1_1.svg b/icons/workspace_5x1_1.svg new file mode 100644 index 0000000..953d4c4 --- /dev/null +++ b/icons/workspace_5x1_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x1_2.svg b/icons/workspace_5x1_2.svg new file mode 100644 index 0000000..953d4c4 --- /dev/null +++ b/icons/workspace_5x1_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x1_3.svg b/icons/workspace_5x1_3.svg new file mode 100644 index 0000000..953d4c4 --- /dev/null +++ b/icons/workspace_5x1_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x1_4.svg b/icons/workspace_5x1_4.svg new file mode 100644 index 0000000..953d4c4 --- /dev/null +++ b/icons/workspace_5x1_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x1_5.svg b/icons/workspace_5x1_5.svg new file mode 100644 index 0000000..953d4c4 --- /dev/null +++ b/icons/workspace_5x1_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_1.svg b/icons/workspace_5x2_1.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_10.svg b/icons/workspace_5x2_10.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_2.svg b/icons/workspace_5x2_2.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_3.svg b/icons/workspace_5x2_3.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_4.svg b/icons/workspace_5x2_4.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_5.svg b/icons/workspace_5x2_5.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_6.svg b/icons/workspace_5x2_6.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_7.svg b/icons/workspace_5x2_7.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_8.svg b/icons/workspace_5x2_8.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x2_9.svg b/icons/workspace_5x2_9.svg new file mode 100644 index 0000000..3ac710e --- /dev/null +++ b/icons/workspace_5x2_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_1.svg b/icons/workspace_5x3_1.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_10.svg b/icons/workspace_5x3_10.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_11.svg b/icons/workspace_5x3_11.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_12.svg b/icons/workspace_5x3_12.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_13.svg b/icons/workspace_5x3_13.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_13.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_14.svg b/icons/workspace_5x3_14.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_14.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_15.svg b/icons/workspace_5x3_15.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_15.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_2.svg b/icons/workspace_5x3_2.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_3.svg b/icons/workspace_5x3_3.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_4.svg b/icons/workspace_5x3_4.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_5.svg b/icons/workspace_5x3_5.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_6.svg b/icons/workspace_5x3_6.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_7.svg b/icons/workspace_5x3_7.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_8.svg b/icons/workspace_5x3_8.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x3_9.svg b/icons/workspace_5x3_9.svg new file mode 100644 index 0000000..a227277 --- /dev/null +++ b/icons/workspace_5x3_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_1.svg b/icons/workspace_5x4_1.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_10.svg b/icons/workspace_5x4_10.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_11.svg b/icons/workspace_5x4_11.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_12.svg b/icons/workspace_5x4_12.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_13.svg b/icons/workspace_5x4_13.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_13.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_14.svg b/icons/workspace_5x4_14.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_14.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_15.svg b/icons/workspace_5x4_15.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_15.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_16.svg b/icons/workspace_5x4_16.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_16.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_17.svg b/icons/workspace_5x4_17.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_17.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_18.svg b/icons/workspace_5x4_18.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_18.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_19.svg b/icons/workspace_5x4_19.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_19.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_2.svg b/icons/workspace_5x4_2.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_20.svg b/icons/workspace_5x4_20.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_20.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_3.svg b/icons/workspace_5x4_3.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_4.svg b/icons/workspace_5x4_4.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_5.svg b/icons/workspace_5x4_5.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_6.svg b/icons/workspace_5x4_6.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_7.svg b/icons/workspace_5x4_7.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_8.svg b/icons/workspace_5x4_8.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x4_9.svg b/icons/workspace_5x4_9.svg new file mode 100644 index 0000000..95f42df --- /dev/null +++ b/icons/workspace_5x4_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_1.svg b/icons/workspace_5x5_1.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_1.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_10.svg b/icons/workspace_5x5_10.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_10.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_11.svg b/icons/workspace_5x5_11.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_11.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_12.svg b/icons/workspace_5x5_12.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_12.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_13.svg b/icons/workspace_5x5_13.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_13.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_14.svg b/icons/workspace_5x5_14.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_14.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_15.svg b/icons/workspace_5x5_15.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_15.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_16.svg b/icons/workspace_5x5_16.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_16.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_17.svg b/icons/workspace_5x5_17.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_17.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_18.svg b/icons/workspace_5x5_18.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_18.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_19.svg b/icons/workspace_5x5_19.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_19.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_2.svg b/icons/workspace_5x5_2.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_2.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_20.svg b/icons/workspace_5x5_20.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_20.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_21.svg b/icons/workspace_5x5_21.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_21.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_22.svg b/icons/workspace_5x5_22.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_22.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_23.svg b/icons/workspace_5x5_23.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_23.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_24.svg b/icons/workspace_5x5_24.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_24.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_25.svg b/icons/workspace_5x5_25.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_25.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_3.svg b/icons/workspace_5x5_3.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_3.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_4.svg b/icons/workspace_5x5_4.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_4.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_5.svg b/icons/workspace_5x5_5.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_5.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_6.svg b/icons/workspace_5x5_6.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_6.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_7.svg b/icons/workspace_5x5_7.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_7.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_8.svg b/icons/workspace_5x5_8.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_8.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_5x5_9.svg b/icons/workspace_5x5_9.svg new file mode 100644 index 0000000..8cda5b5 --- /dev/null +++ b/icons/workspace_5x5_9.svg @@ -0,0 +1,13 @@ + + + + \ No newline at end of file diff --git a/icons/workspace_icon_template.data b/icons/workspace_icon_template.data new file mode 100644 index 0000000..54a8994 --- /dev/null +++ b/icons/workspace_icon_template.data @@ -0,0 +1,12 @@ + + +