In 13.04 using Unity Tweak Tool hot corners stops working after reboot

88
  1. Install dconf-editor:

    $ sudo apt-get install dconf-tools
    
  2. Run dconf-editor (don't use sudo as the changes wont affect your account)

  3. Navigate to org -> compiz -> profiles -> unity -> plugins -> core.

  4. Copy the field active-plugins into Gedit, and edit it so unityshell is the last item. Paste it back into dconf.

  5. Restart your computer.

(Tried on 14.04, it works.)

Share:
88
Jack Doyle
Author by

Jack Doyle

Updated on September 18, 2022

Comments

  • Jack Doyle
    Jack Doyle over 1 year

    I have a parent div ("prizes") with 3 child divs ("galleryItem"). Each div has an h2, img, and p element. The h2 elements are on the same line when viewing in the browser, but I can't figure out how to align the img's and p's to the same line as well. Here is a link to my code:

         <div class="prizes">
          <h1>Prizes</h1>
    
           <div class="galleryItem">
             <h2>6/29</h2>
             <img src="ipad3.jpg">   
             <p>Ipad Mini 3</p>
          </div>
    
        <div class="galleryItem">
          <h2>6/29</h2>
          <img src="xbox.png">  
          <p>Xbox One</p>
        </div>
    
       <div class="galleryItem">
         <h2>6/29</h2>
         <img src="beats.png">  
         <p>Beats by Dre Pro</p>
       </div>
    
       <div class="galleryItem">
         <h2>6/29</h2>
         <img src="ikea.png">  
         <p>$250 Ikea Gift Card</p>
       </div>
        </div>
    
    
     .prizes {
      margin: 4.5em auto;
      background-color: whitesmoke;
      padding-top: 100px;
      overflow: hidden;
      display: table;
    }
    
    .prizes h1 {
      color: darkslategray;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      top: -75px;
      font-family: 'Lato';
      text-align: center;
    }
    
    .galleryItem {
      float: left;
      color: darkslategray;
      width: 17%;
      margin: 0 4%;
      text-align: center;
      display: table-cell;
      vertical-align: middle;
    }
    
    .galleryItem h2 {
      font-family: 'Lato', Sans-Serif;
    
    }
    
    .galleryItem img {
      max-width: 100%;
    }
    
    .prizes p {
      float: left;
      color: darkslategray;
      font-family: 'Merriweather', serif;
      margin-top: 40px;
    
    }
    

    I essentially want each div to be a "blurb" with all three inline and the elements of each inline with each other. Thanks in advance for any help, it is greatly appreciated!

  • jcora
    jcora almost 10 years
    It resets the right corner as well for me. (14.04)
  • kolslorr
    kolslorr almost 10 years
    Mine already defaults to unityshell as last item, but problem still exists.
  • jcora
    jcora almost 10 years
    @kolslorr It could be that the "default" just sets it to the value it had on boot or something, I really wouldn't know. Could you check again? And try switching to the guest account - see if it has unityshell as the last one as well (remember not to use sudo).
  • Jack Doyle
    Jack Doyle almost 9 years
    Tried this and still no luck
  • Amir
    Amir over 8 years
    solved my problem