-
Hirnrissige Worttrennung in WordPress abschalten
Diesen Artikel habe ich eigentlich nur für mich selber eingestellt, damit ich nachschauen kann, falls die Änderung wieder überschrieben wird: Dashboard -> Appearance -> Customize -> Additional CSS: .site-content article,.widget-area .widget {-webkit-hyphens: none;-moz-hyphens: none;hyphens: none;} Funktioniert jedenfalls super! Bleibt nur die Frage, warum es keinen Bereich gibt, in dem man so etwas auf einfache Weise…
-
How to change all colors in your Powershell profile
After a long research I’ve gathered hopefully all color variables which can be set in the powershell profile: $Host.UI.RawUI.ForegroundColor = ‘Green’ $Host.UI.RawUI.BackgroundColor = ‘Black’ $Host.UI.RawUI.ForegroundColor = ‘Green’ $Host.UI.RawUI.BackgroundColor = ‘Black’ $Host.PrivateData.WarningForegroundColor = ‘Green’ $Host.PrivateData.WarningBackgroundColor = ‘Black’ $Host.PrivateData.ErrorForegroundColor = ‘Green’ $Host.PrivateData.ErrorBackgroundColor = ‘Black’ $Host.PrivateData.VerboseForegroundColor = ‘Green’ $Host.PrivateData.VerboseBackgroundColor = ‘Black’ $Host.PrivateData.DebugForegroundColor = ‘Green’ $Host.PrivateData.DebugBackgroundColor = ‘Black’ $host.ui.rawui.ForegroundColor…
-
Alle Farben im Powershell-Profil definieren
Um alle Farben in der Powershell zu setzen, muß man 40 (vierzig) Variablen definieren. Zumindest glaube ich, daß das alle sind. Im Verlauf einer langen, mühsamen Recherche waren das zumindest alle, die ich gefunden habe. In meinem Profil habe ich sie zusammengestellt und wie folgt definiert: $Host.UI.RawUI.ForegroundColor = ‘Green’ $Host.UI.RawUI.BackgroundColor = ‘Black’ $Host.UI.RawUI.ForegroundColor = ‘Green’…