User:Zren: Difference between revisions
Appearance
	
	
|  Created page with "== Configuration ==     === Autostarted Apps ===  <h6>Disable restoring session on Login (restarting apps open during Logout)</h6> System Settings > Startup & Shutdown<br /> D..." | No edit summary | ||
| Line 1: | Line 1: | ||
| == Configuration  | <h2><span id="Configuration" class="header-link">[[#Configuration|¶]]</span>Configuration</h2> | ||
| == | <h3><span id="Autostarted_Apps" class="header-link">[[#Autostarted_Apps|¶]]</span>Autostarted Apps</h3> | ||
| < | *<span id="cfg-1" class="header-link">[[#cfg-1|¶]]</span><b>Disable restoring session on Login (restarting apps open during Logout)</b> | ||
| System Settings > Startup & Shutdown<br /> | System Settings > Startup & Shutdown<br /> | ||
| Desktop Session Tab > On Login: Check Start with an empty session<br /> | Desktop Session Tab > On Login: Check Start with an empty session<br /> | ||
| == | <h3><span id="Desktop" class="header-link">[[#Desktop|¶]]</span>Desktop</h3> | ||
| < | *<span id="cfg-2" class="header-link">[[#cfg-2|¶]]</span><b>Show the (<code>~/Desktop</code>) files/links on the desktop.</b> | ||
| Right Click the desktop wallpaper > Desktop Settings<br /> | Right Click the desktop wallpaper > Desktop Settings<br /> | ||
| Wallpaper Tab > Layout: Folder View<br /> | Wallpaper Tab > Layout: Folder View<br /> | ||
| Line 19: | Line 19: | ||
| Icon Tab > Size: 4 (out of 6)<br /> | Icon Tab > Size: 4 (out of 6)<br /> | ||
| < | *<span id="cfg-3" class="header-link">[[#cfg-3|¶]]</span><b>Hide the ☰ button in the top corner</b> | ||
| Right Click the desktop wallpaper > Desktop/Folder View Settings<br /> | Right Click the desktop wallpaper > Desktop/Folder View Settings<br /> | ||
| Tweaks Tab > Uncheck: Show the desktop toolbox<br /> | Tweaks Tab > Uncheck: Show the desktop toolbox<br /> | ||
| Need to add the following CSS to [[MediaWiki:Common.css]] to make it look like this. https://i.imgur.com/6hukjJ9.jpg | |||
| <syntaxhighlight lang="css"> | |||
| .page-User_Zren #toc { | |||
|     display: none; | |||
| } | |||
| .page-User_Zren h4 { | |||
|     font-weight: bold; | |||
| } | |||
| .page-User_Zren .header-link { | |||
|   position: absolute; | |||
|   margin-left: -1em; | |||
|   font-weight: bold; | |||
|   opacity: 0; | |||
|   user-select: none; | |||
| } | |||
| .page-User_Zren .header-link a, | |||
| .page-User_Zren .header-link a:hover, | |||
| .page-User_Zren .header-link a:visited { | |||
|     color: #888; | |||
|     text-decoration: none; | |||
| } | |||
| .page-User_Zren div > ul { | |||
|     margin-left: 0em; | |||
| } | |||
| .page-User_Zren li > .header-link { | |||
|   margin-left: -2.5em; | |||
| } | |||
| .page-User_Zren h1:hover .header-link, | |||
| .page-User_Zren h2:hover .header-link, | |||
| .page-User_Zren h3:hover .header-link, | |||
| .page-User_Zren h4:hover .header-link, | |||
| .page-User_Zren h5:hover .header-link, | |||
| .page-User_Zren h6:hover .header-link, | |||
| .page-User_Zren li:hover > .header-link { | |||
|   opacity: 1; | |||
| } | |||
| </syntaxhighlight> | |||
Revision as of 04:16, 16 December 2017
¶Configuration
¶Autostarted Apps
- ¶Disable restoring session on Login (restarting apps open during Logout)
System Settings > Startup & Shutdown
Desktop Session Tab > On Login: Check Start with an empty session
¶Desktop
- ¶Show the (~/Desktop) files/links on the desktop.
Right Click the desktop wallpaper > Desktop Settings
Wallpaper Tab > Layout: Folder View
Icon Tab > Arrange In: Columns
Icon Tab > Sorting: Unsorted
Icon Tab > Size: 4 (out of 6)
- ¶Hide the ☰ button in the top corner
Right Click the desktop wallpaper > Desktop/Folder View Settings
Tweaks Tab > Uncheck: Show the desktop toolbox
Need to add the following CSS to MediaWiki:Common.css to make it look like this. https://i.imgur.com/6hukjJ9.jpg
.page-User_Zren #toc {
    display: none;
}
.page-User_Zren h4 {
    font-weight: bold;
}
.page-User_Zren .header-link {
  position: absolute;
  margin-left: -1em;
  font-weight: bold;
  opacity: 0;
  user-select: none;
}
.page-User_Zren .header-link a,
.page-User_Zren .header-link a:hover,
.page-User_Zren .header-link a:visited {
    color: #888;
    text-decoration: none;
}
.page-User_Zren div > ul {
    margin-left: 0em;
}
.page-User_Zren li > .header-link {
  margin-left: -2.5em;
}
.page-User_Zren h1:hover .header-link,
.page-User_Zren h2:hover .header-link,
.page-User_Zren h3:hover .header-link,
.page-User_Zren h4:hover .header-link,
.page-User_Zren h5:hover .header-link,
.page-User_Zren h6:hover .header-link,
.page-User_Zren li:hover > .header-link {
  opacity: 1;
}