summaryrefslogtreecommitdiffstats
path: root/content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-04-28 19:19:47 +0200
committerDanilo M. <danix@danix.xyz>2026-04-28 19:19:47 +0200
commit63a000bb409f5c4fc3f304f16b05407364ca052e (patch)
tree1f4b1baa604e8ffb1683b08100f1ad6e463b45ca /content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md
parentf7079a68895bd01bebebad97b3966d620904278c (diff)
downloaddanixxyz-63a000bb409f5c4fc3f304f16b05407364ca052e.tar.gz
danixxyz-63a000bb409f5c4fc3f304f16b05407364ca052e.zip
fix: convert remaining raw HTML to markdown and add acronym shortcodes
- myself-as-a-droid: drop external image figure, decode entities - poker-time: drop external image figure and orphan nbsp - le-email-queste-sconosciute: replace acronym tags with shortcodes, markdown strikethrough - xrandr-dual-head: convert pre block to fenced code - git-setup-own-server-part2: markdown blockquote + drop image figure + fenced code blocks (user will add image later)
Diffstat (limited to 'content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md')
-rw-r--r--content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md b/content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md
index 3a82dba..c750a32 100644
--- a/content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md
+++ b/content/it/articles/xrandr-e-dual-head-su-slackware-12-2-e-intel/index.md
@@ -23,7 +23,8 @@ Ovviamente facendo in questo modo ho una superficie del desktop di circa il 120%
A questo punto, ogni qualvolta io voglia attivare il doppio desktop, mi basterà lanciare questo script che mi sono creato, l&#8217;ho chiamato **dualhead.sh**:
-<pre>#! /bin/bash
+```bash
+#! /bin/bash
case $1 in
start ) xrandr --output LVDS --mode 1280x800 \
@@ -35,7 +36,8 @@ case $1 in
exit 1
;;
esac
-exit</pre>
+exit
+```
lanciandolo con flag &#8220;start&#8221; avvierà il dualhead mentre lanciando lo script con &#8220;stop&#8221; tutto il desktop ritornerà sul solo schermo del laptop in quanto xrandr spegnerà l&#8217;uscita vga esterna.