User:Zren: Difference between revisions
Appearance
	
	
| No edit summary | No edit summary | ||
| Line 19: | Line 19: | ||
| 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:30, 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;
}