From 9a4798b2462919135da1130a007ab0134ece4232 Mon Sep 17 00:00:00 2001 From: Robbert Korving Date: Wed, 24 May 2023 10:39:19 +0200 Subject: [PATCH 1/5] ran prettier on README.md --- README.md | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 4aaa45a..92dcc0e 100644 --- a/README.md +++ b/README.md @@ -1,24 +1,21 @@ -Multi Monitors Add-On -===================== +# Multi Monitors Add-On -Extension inspired by https://github.com/darkxst/multiple-monitor-panels -and rewritten from scratch for gnome-shell version 3.10.4. Adds panels -and thumbnails for additional monitors. Settings changes are applied +Extension inspired by https://github.com/darkxst/multiple-monitor-panels +and rewritten from scratch for gnome-shell version 3.10.4. Adds panels +and thumbnails for additional monitors. Settings changes are applied in dynamic fashion, no restart needed. -Versions -======== +# Versions -* Branch [master](https://github.com/realh/multi-monitors-add-on/tree/master) contains extension for GNOME 42 -* Branch [gnome-3-32_3-36](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-32_3-36) contains extension for GNOME 3.32, 3.34 and 3.36 -* Branch [gnome-3-24_3-30](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-24_3-30) contains extension for GNOME 3.24, 3.26, 3.28 and 3.30 -* Branch [gnome-3-20_3-22](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-20_3-22) contains extension for GNOME 3.20 and 3.22 -* Branch [gnome-3-16_3-18](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-16_3-18) contains extension for GNOME 3.16 and 3.18 -* Branch [gnome-3-14](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-14) contains extension for GNOME 3.14 -* Branch [gnome-3-10](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-10) contains extension for GNOME 3.10 +- Branch [master](https://github.com/realh/multi-monitors-add-on/tree/master) contains extension for GNOME 42 +- Branch [gnome-3-32_3-36](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-32_3-36) contains extension for GNOME 3.32, 3.34 and 3.36 +- Branch [gnome-3-24_3-30](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-24_3-30) contains extension for GNOME 3.24, 3.26, 3.28 and 3.30 +- Branch [gnome-3-20_3-22](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-20_3-22) contains extension for GNOME 3.20 and 3.22 +- Branch [gnome-3-16_3-18](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-16_3-18) contains extension for GNOME 3.16 and 3.18 +- Branch [gnome-3-14](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-14) contains extension for GNOME 3.14 +- Branch [gnome-3-10](https://github.com/spin83/multi-monitors-add-on/tree/gnome-3-10) contains extension for GNOME 3.10 -Installation from git -===================== +# Installation from git git clone git://github.com/realh/multi-monitors-add-on.git cd multi-monitors-add-on @@ -26,8 +23,7 @@ Installation from git Restart the shell and then enable the extension. -License -======= +# License -Multi Monitors Add-On extension is distributed under the terms of the +Multi Monitors Add-On extension is distributed under the terms of the GNU General Public License, version 2 or later. See the LICENSE file for details. From 20c4260066cfcb2f88f1efd19016bbcfd9c5775d Mon Sep 17 00:00:00 2001 From: Robbert Korving Date: Wed, 24 May 2023 10:41:05 +0200 Subject: [PATCH 2/5] wrapped commands in shell code block --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 92dcc0e..6af815d 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,11 @@ in dynamic fashion, no restart needed. # Installation from git - git clone git://github.com/realh/multi-monitors-add-on.git - cd multi-monitors-add-on - cp -r multi-monitors-add-on@spin83 ~/.local/share/gnome-shell/extensions/ +```sh +git clone git://github.com/realh/multi-monitors-add-on.git +cd multi-monitors-add-on +cp -r multi-monitors-add-on@spin83 ~/.local/share/gnome-shell/extensions/ +``` Restart the shell and then enable the extension. From e83aef7ac524a5923087c17f7e2053b70219e360 Mon Sep 17 00:00:00 2001 From: Robbert Korving Date: Wed, 24 May 2023 10:29:23 +0200 Subject: [PATCH 3/5] corrected git clone command `git clone git://github.com/realh/multi-monitors-add-on.git` uses an outdated url. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6af815d..5c770bb 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ in dynamic fashion, no restart needed. # Installation from git ```sh -git clone git://github.com/realh/multi-monitors-add-on.git +git clone git@github.com:realh/multi-monitors-add-on.git cd multi-monitors-add-on cp -r multi-monitors-add-on@spin83 ~/.local/share/gnome-shell/extensions/ ``` From 8d8b3ea6cf245a3293105e682cb153e4d1f004ec Mon Sep 17 00:00:00 2001 From: Robbert Korving Date: Wed, 24 May 2023 10:51:05 +0200 Subject: [PATCH 4/5] replaced copy commands with symbolic link creation --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c770bb..4aca008 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ in dynamic fashion, no restart needed. ```sh git clone git@github.com:realh/multi-monitors-add-on.git cd multi-monitors-add-on -cp -r multi-monitors-add-on@spin83 ~/.local/share/gnome-shell/extensions/ +mkdir -p ~/.local/share/gnome-shell/extensions +ln -sr multi-monitors-add-on@spin83 ~/.local/share/gnome-shell/extensions ``` Restart the shell and then enable the extension. From e3dabc04a11ca057e4edd855a60d57b4c7b0b70a Mon Sep 17 00:00:00 2001 From: Robbert Korving Date: Wed, 24 May 2023 10:54:52 +0200 Subject: [PATCH 5/5] added commentary explaining the commands --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 4aca008..bb08150 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,13 @@ in dynamic fashion, no restart needed. # Installation from git ```sh +# clone repo git clone git@github.com:realh/multi-monitors-add-on.git +# cd into cloned repo cd multi-monitors-add-on +# create a local shared gnome shell extensions dir mkdir -p ~/.local/share/gnome-shell/extensions +# create a symbolic link in the extensions dir to this extension ln -sr multi-monitors-add-on@spin83 ~/.local/share/gnome-shell/extensions ```