How to change background image of Dolphin file browser from default white background?How to modify the system...

Is camera lens focus an exact point or a range?

Will adding a BY-SA image to a blog post make the entire post BY-SA?

Do the concepts of IP address and network interface not belong to the same layer?

Has Darkwing Duck ever met Scrooge McDuck?

How can Trident be so inexpensive? Will it orbit Triton or just do a (slow) flyby?

What is this type of notehead called?

Is XSS in canonical link possible?

Have I saved too much for retirement so far?

Is there a conventional notation or name for the slip angle?

How should I respond when I lied about my education and the company finds out through background check?

Is it possible to use .desktop files to open local pdf files on specific pages with a browser?

Should I stop contributing to retirement accounts?

How do I implement a file system driver driver in Linux?

Can the Supreme Court overturn an impeachment?

Can I sign legal documents with a smiley face?

Journal losing indexing services

Are lightweight LN wallets vulnerable to transaction withholding?

Should I install hardwood flooring or cabinets first?

Fly on a jet pack vs fly with a jet pack?

What major Native American tribes were around Santa Fe during the late 1850s?

How do I repair my stair bannister?

We have a love-hate relationship

Is possible to search in vim history?

Greatest common substring



How to change background image of Dolphin file browser from default white background?


How to modify the system default background imageHow to set up Dolphin as default file manager?How to change my desktop background image “forever”?How do I restore Dolphin instead of Gwenview as default file managerHow can we set custom image as background for desktop and login screencreate a new desktop background from default backgroundChange the default background that fades fromHow to search recursively in Dolphin File Manager?Kubuntu 18.04: How does Dolphin file manager sort files “naturally”?KUbuntu - How can I sort in “Icon View Mode”













0















I am using Kubuntu 16.10 which has Dolphin file Manager having default white background. I want to give a custom image as background as there in the desktop.










share|improve this question

























  • Right click on Desktop > Folder view settings > Wallpapers

    – M. Becerra
    Feb 2 '17 at 15:24











  • Sir, it only changes the desktop background not the background of dolphin file manager. @M.Becerra

    – Vishal Maurya
    Feb 2 '17 at 16:44













  • Asking for your help too.. @giaosudau

    – Vishal Maurya
    Feb 2 '17 at 18:07
















0















I am using Kubuntu 16.10 which has Dolphin file Manager having default white background. I want to give a custom image as background as there in the desktop.










share|improve this question

























  • Right click on Desktop > Folder view settings > Wallpapers

    – M. Becerra
    Feb 2 '17 at 15:24











  • Sir, it only changes the desktop background not the background of dolphin file manager. @M.Becerra

    – Vishal Maurya
    Feb 2 '17 at 16:44













  • Asking for your help too.. @giaosudau

    – Vishal Maurya
    Feb 2 '17 at 18:07














0












0








0


2






I am using Kubuntu 16.10 which has Dolphin file Manager having default white background. I want to give a custom image as background as there in the desktop.










share|improve this question
















I am using Kubuntu 16.10 which has Dolphin file Manager having default white background. I want to give a custom image as background as there in the desktop.







kubuntu kde qt background dolphin






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 4 '17 at 9:17









user26687

12.2k12432




12.2k12432










asked Feb 2 '17 at 14:48









Vishal MauryaVishal Maurya

12




12













  • Right click on Desktop > Folder view settings > Wallpapers

    – M. Becerra
    Feb 2 '17 at 15:24











  • Sir, it only changes the desktop background not the background of dolphin file manager. @M.Becerra

    – Vishal Maurya
    Feb 2 '17 at 16:44













  • Asking for your help too.. @giaosudau

    – Vishal Maurya
    Feb 2 '17 at 18:07



















  • Right click on Desktop > Folder view settings > Wallpapers

    – M. Becerra
    Feb 2 '17 at 15:24











  • Sir, it only changes the desktop background not the background of dolphin file manager. @M.Becerra

    – Vishal Maurya
    Feb 2 '17 at 16:44













  • Asking for your help too.. @giaosudau

    – Vishal Maurya
    Feb 2 '17 at 18:07

















Right click on Desktop > Folder view settings > Wallpapers

– M. Becerra
Feb 2 '17 at 15:24





Right click on Desktop > Folder view settings > Wallpapers

– M. Becerra
Feb 2 '17 at 15:24













Sir, it only changes the desktop background not the background of dolphin file manager. @M.Becerra

– Vishal Maurya
Feb 2 '17 at 16:44







Sir, it only changes the desktop background not the background of dolphin file manager. @M.Becerra

– Vishal Maurya
Feb 2 '17 at 16:44















Asking for your help too.. @giaosudau

– Vishal Maurya
Feb 2 '17 at 18:07





Asking for your help too.. @giaosudau

– Vishal Maurya
Feb 2 '17 at 18:07










2 Answers
2






active

oldest

votes


















2














Qt Style Sheets



http://doc.qt.io/qt-5/stylesheet.html :




Qt Style Sheets are a powerful mechanism that allows you to customize
the appearance of widgets...




More:




  • Qt Style Sheets Examples: http://doc.qt.io/qt-5/stylesheet-examples.html

  • Qt Style Sheets Reference: http://doc.qt.io/qt-5/stylesheet-reference.html


QSS & Dolphin background image



Older from the KDE Forums - How to set a pattern (image) as a wallpaper on Dolphin?: https://forum.kde.org/viewtopic.php?f=17&t=94717



and more:




  • Deviantart: http://samuaz.deviantart.com/art/Kde-GaiaSnow-update-4-373661315 -> http://pastebin.com/wEnndQPw

  • [SOLVED] Scaled background image using stylesheet: https://forum.qt.io/topic/40151/solved-scaled-background-image-using-stylesheet/2


Example



Making backStyle.qss:



DolphinViewContainer > DolphinView > QAbstractScrollArea {
background-color: transparent;
border-image: url('background.png') 0 0 0 0 stretch stretch;
}


and starting the Dolphin with the command:



dolphin -stylesheet /path/to/myqss/backStyle.qss 


The result:
enter image description here



Note



The Dolphin is painting every other line with the alternate background color in the details view mode:



enter image description here



You could change the color but you can't edit the transparency without rebuild of the Dolphin.



Changing the .../src/kitemviews/kitemlistwidget.cpp line 118 from:



const QColor backgroundColor = m_styleOption.palette.color(QPalette::AlternateBase);


to



const QColor backgroundColor = QColor(0, 0, 0, 20);


About Qt colors: http://doc.qt.io/qt-5/qcolor.html#QColor-2



enter image description here



After rebuild:



enter image description here






share|improve this answer


























  • Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

    – DK Bose
    Jul 22 '17 at 11:17











  • There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

    – DK Bose
    Jul 22 '17 at 11:17



















0














For quite a while I wanted to make the background of the file area in Dolphin Transparent or Translucent - like the Folder View Widget that I could have on my desktop.
Over the years I messed with different ideas and had a little success, but not the look I wanted to go with my translucent panels and window decorations.



This week I finally achieved a completely translucent 'Dolphin'.
The Bright Red buttons and selections will not be everybody's choise - but they can all be toned down. The 'Blur Effect' is enabled using GL3.1 in compositing settings in Kubuntu 18.10, but the translucency works and can be adjusted without the blurring using Xrender and in earlier versions of Kubuntu.



Dolphin against a coloured background



Dolphin against a black and white background to show how the blurring enables the white text to be seen



This was achieved very simply using the Kvantum theming engine and Kvantum Theme Manager. There's more info and images on my Linux, The Whitsundays and Me blog.



While this is not changing the background image in Dolphin, quite a few of us found this topic whilst trying to make a translucent background in Dolphin - so I hope this helps.





share























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f879061%2fhow-to-change-background-image-of-dolphin-file-browser-from-default-white-backgr%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    2














    Qt Style Sheets



    http://doc.qt.io/qt-5/stylesheet.html :




    Qt Style Sheets are a powerful mechanism that allows you to customize
    the appearance of widgets...




    More:




    • Qt Style Sheets Examples: http://doc.qt.io/qt-5/stylesheet-examples.html

    • Qt Style Sheets Reference: http://doc.qt.io/qt-5/stylesheet-reference.html


    QSS & Dolphin background image



    Older from the KDE Forums - How to set a pattern (image) as a wallpaper on Dolphin?: https://forum.kde.org/viewtopic.php?f=17&t=94717



    and more:




    • Deviantart: http://samuaz.deviantart.com/art/Kde-GaiaSnow-update-4-373661315 -> http://pastebin.com/wEnndQPw

    • [SOLVED] Scaled background image using stylesheet: https://forum.qt.io/topic/40151/solved-scaled-background-image-using-stylesheet/2


    Example



    Making backStyle.qss:



    DolphinViewContainer > DolphinView > QAbstractScrollArea {
    background-color: transparent;
    border-image: url('background.png') 0 0 0 0 stretch stretch;
    }


    and starting the Dolphin with the command:



    dolphin -stylesheet /path/to/myqss/backStyle.qss 


    The result:
    enter image description here



    Note



    The Dolphin is painting every other line with the alternate background color in the details view mode:



    enter image description here



    You could change the color but you can't edit the transparency without rebuild of the Dolphin.



    Changing the .../src/kitemviews/kitemlistwidget.cpp line 118 from:



    const QColor backgroundColor = m_styleOption.palette.color(QPalette::AlternateBase);


    to



    const QColor backgroundColor = QColor(0, 0, 0, 20);


    About Qt colors: http://doc.qt.io/qt-5/qcolor.html#QColor-2



    enter image description here



    After rebuild:



    enter image description here






    share|improve this answer


























    • Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

      – DK Bose
      Jul 22 '17 at 11:17











    • There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

      – DK Bose
      Jul 22 '17 at 11:17
















    2














    Qt Style Sheets



    http://doc.qt.io/qt-5/stylesheet.html :




    Qt Style Sheets are a powerful mechanism that allows you to customize
    the appearance of widgets...




    More:




    • Qt Style Sheets Examples: http://doc.qt.io/qt-5/stylesheet-examples.html

    • Qt Style Sheets Reference: http://doc.qt.io/qt-5/stylesheet-reference.html


    QSS & Dolphin background image



    Older from the KDE Forums - How to set a pattern (image) as a wallpaper on Dolphin?: https://forum.kde.org/viewtopic.php?f=17&t=94717



    and more:




    • Deviantart: http://samuaz.deviantart.com/art/Kde-GaiaSnow-update-4-373661315 -> http://pastebin.com/wEnndQPw

    • [SOLVED] Scaled background image using stylesheet: https://forum.qt.io/topic/40151/solved-scaled-background-image-using-stylesheet/2


    Example



    Making backStyle.qss:



    DolphinViewContainer > DolphinView > QAbstractScrollArea {
    background-color: transparent;
    border-image: url('background.png') 0 0 0 0 stretch stretch;
    }


    and starting the Dolphin with the command:



    dolphin -stylesheet /path/to/myqss/backStyle.qss 


    The result:
    enter image description here



    Note



    The Dolphin is painting every other line with the alternate background color in the details view mode:



    enter image description here



    You could change the color but you can't edit the transparency without rebuild of the Dolphin.



    Changing the .../src/kitemviews/kitemlistwidget.cpp line 118 from:



    const QColor backgroundColor = m_styleOption.palette.color(QPalette::AlternateBase);


    to



    const QColor backgroundColor = QColor(0, 0, 0, 20);


    About Qt colors: http://doc.qt.io/qt-5/qcolor.html#QColor-2



    enter image description here



    After rebuild:



    enter image description here






    share|improve this answer


























    • Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

      – DK Bose
      Jul 22 '17 at 11:17











    • There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

      – DK Bose
      Jul 22 '17 at 11:17














    2












    2








    2







    Qt Style Sheets



    http://doc.qt.io/qt-5/stylesheet.html :




    Qt Style Sheets are a powerful mechanism that allows you to customize
    the appearance of widgets...




    More:




    • Qt Style Sheets Examples: http://doc.qt.io/qt-5/stylesheet-examples.html

    • Qt Style Sheets Reference: http://doc.qt.io/qt-5/stylesheet-reference.html


    QSS & Dolphin background image



    Older from the KDE Forums - How to set a pattern (image) as a wallpaper on Dolphin?: https://forum.kde.org/viewtopic.php?f=17&t=94717



    and more:




    • Deviantart: http://samuaz.deviantart.com/art/Kde-GaiaSnow-update-4-373661315 -> http://pastebin.com/wEnndQPw

    • [SOLVED] Scaled background image using stylesheet: https://forum.qt.io/topic/40151/solved-scaled-background-image-using-stylesheet/2


    Example



    Making backStyle.qss:



    DolphinViewContainer > DolphinView > QAbstractScrollArea {
    background-color: transparent;
    border-image: url('background.png') 0 0 0 0 stretch stretch;
    }


    and starting the Dolphin with the command:



    dolphin -stylesheet /path/to/myqss/backStyle.qss 


    The result:
    enter image description here



    Note



    The Dolphin is painting every other line with the alternate background color in the details view mode:



    enter image description here



    You could change the color but you can't edit the transparency without rebuild of the Dolphin.



    Changing the .../src/kitemviews/kitemlistwidget.cpp line 118 from:



    const QColor backgroundColor = m_styleOption.palette.color(QPalette::AlternateBase);


    to



    const QColor backgroundColor = QColor(0, 0, 0, 20);


    About Qt colors: http://doc.qt.io/qt-5/qcolor.html#QColor-2



    enter image description here



    After rebuild:



    enter image description here






    share|improve this answer















    Qt Style Sheets



    http://doc.qt.io/qt-5/stylesheet.html :




    Qt Style Sheets are a powerful mechanism that allows you to customize
    the appearance of widgets...




    More:




    • Qt Style Sheets Examples: http://doc.qt.io/qt-5/stylesheet-examples.html

    • Qt Style Sheets Reference: http://doc.qt.io/qt-5/stylesheet-reference.html


    QSS & Dolphin background image



    Older from the KDE Forums - How to set a pattern (image) as a wallpaper on Dolphin?: https://forum.kde.org/viewtopic.php?f=17&t=94717



    and more:




    • Deviantart: http://samuaz.deviantart.com/art/Kde-GaiaSnow-update-4-373661315 -> http://pastebin.com/wEnndQPw

    • [SOLVED] Scaled background image using stylesheet: https://forum.qt.io/topic/40151/solved-scaled-background-image-using-stylesheet/2


    Example



    Making backStyle.qss:



    DolphinViewContainer > DolphinView > QAbstractScrollArea {
    background-color: transparent;
    border-image: url('background.png') 0 0 0 0 stretch stretch;
    }


    and starting the Dolphin with the command:



    dolphin -stylesheet /path/to/myqss/backStyle.qss 


    The result:
    enter image description here



    Note



    The Dolphin is painting every other line with the alternate background color in the details view mode:



    enter image description here



    You could change the color but you can't edit the transparency without rebuild of the Dolphin.



    Changing the .../src/kitemviews/kitemlistwidget.cpp line 118 from:



    const QColor backgroundColor = m_styleOption.palette.color(QPalette::AlternateBase);


    to



    const QColor backgroundColor = QColor(0, 0, 0, 20);


    About Qt colors: http://doc.qt.io/qt-5/qcolor.html#QColor-2



    enter image description here



    After rebuild:



    enter image description here







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited Feb 4 '17 at 9:18

























    answered Feb 3 '17 at 19:33









    user26687user26687

    12.2k12432




    12.2k12432













    • Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

      – DK Bose
      Jul 22 '17 at 11:17











    • There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

      – DK Bose
      Jul 22 '17 at 11:17



















    • Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

      – DK Bose
      Jul 22 '17 at 11:17











    • There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

      – DK Bose
      Jul 22 '17 at 11:17

















    Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

    – DK Bose
    Jul 22 '17 at 11:17





    Re. "The Dolphin is painting every other line with the alternate background color in the details view mode", if the alternating color is undesirable, the user can open System Settings >Color to get to the Application Color Scheme window. In there, click on the theme currently being used from the list on the left and then choose Edit Scheme near the bottom right. A new window appears titled, for example, Breeze Dark - System Settings. Click on the Colors tab. On the right of Color set:, choose View from the dropdown. ...

    – DK Bose
    Jul 22 '17 at 11:17













    There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

    – DK Bose
    Jul 22 '17 at 11:17





    There, set Alternate Background to be the same as Normal Background. Click Save. Use a new name for the theme to avoid altering the original Breeze Dark. Close the window. You'll be returned to the first Applications Color Scheme window. Click on the theme you just "created" and then click on Apply in the lower right corner. Close System Settings. Now when Dolphin is opened, there shouldn't be alternating colors for rows in detailed view. This works in Kubuntu 16.04.2 LTS with kubuntu-backports enabled (Plasma 5.8.7).

    – DK Bose
    Jul 22 '17 at 11:17













    0














    For quite a while I wanted to make the background of the file area in Dolphin Transparent or Translucent - like the Folder View Widget that I could have on my desktop.
    Over the years I messed with different ideas and had a little success, but not the look I wanted to go with my translucent panels and window decorations.



    This week I finally achieved a completely translucent 'Dolphin'.
    The Bright Red buttons and selections will not be everybody's choise - but they can all be toned down. The 'Blur Effect' is enabled using GL3.1 in compositing settings in Kubuntu 18.10, but the translucency works and can be adjusted without the blurring using Xrender and in earlier versions of Kubuntu.



    Dolphin against a coloured background



    Dolphin against a black and white background to show how the blurring enables the white text to be seen



    This was achieved very simply using the Kvantum theming engine and Kvantum Theme Manager. There's more info and images on my Linux, The Whitsundays and Me blog.



    While this is not changing the background image in Dolphin, quite a few of us found this topic whilst trying to make a translucent background in Dolphin - so I hope this helps.





    share




























      0














      For quite a while I wanted to make the background of the file area in Dolphin Transparent or Translucent - like the Folder View Widget that I could have on my desktop.
      Over the years I messed with different ideas and had a little success, but not the look I wanted to go with my translucent panels and window decorations.



      This week I finally achieved a completely translucent 'Dolphin'.
      The Bright Red buttons and selections will not be everybody's choise - but they can all be toned down. The 'Blur Effect' is enabled using GL3.1 in compositing settings in Kubuntu 18.10, but the translucency works and can be adjusted without the blurring using Xrender and in earlier versions of Kubuntu.



      Dolphin against a coloured background



      Dolphin against a black and white background to show how the blurring enables the white text to be seen



      This was achieved very simply using the Kvantum theming engine and Kvantum Theme Manager. There's more info and images on my Linux, The Whitsundays and Me blog.



      While this is not changing the background image in Dolphin, quite a few of us found this topic whilst trying to make a translucent background in Dolphin - so I hope this helps.





      share


























        0












        0








        0







        For quite a while I wanted to make the background of the file area in Dolphin Transparent or Translucent - like the Folder View Widget that I could have on my desktop.
        Over the years I messed with different ideas and had a little success, but not the look I wanted to go with my translucent panels and window decorations.



        This week I finally achieved a completely translucent 'Dolphin'.
        The Bright Red buttons and selections will not be everybody's choise - but they can all be toned down. The 'Blur Effect' is enabled using GL3.1 in compositing settings in Kubuntu 18.10, but the translucency works and can be adjusted without the blurring using Xrender and in earlier versions of Kubuntu.



        Dolphin against a coloured background



        Dolphin against a black and white background to show how the blurring enables the white text to be seen



        This was achieved very simply using the Kvantum theming engine and Kvantum Theme Manager. There's more info and images on my Linux, The Whitsundays and Me blog.



        While this is not changing the background image in Dolphin, quite a few of us found this topic whilst trying to make a translucent background in Dolphin - so I hope this helps.





        share













        For quite a while I wanted to make the background of the file area in Dolphin Transparent or Translucent - like the Folder View Widget that I could have on my desktop.
        Over the years I messed with different ideas and had a little success, but not the look I wanted to go with my translucent panels and window decorations.



        This week I finally achieved a completely translucent 'Dolphin'.
        The Bright Red buttons and selections will not be everybody's choise - but they can all be toned down. The 'Blur Effect' is enabled using GL3.1 in compositing settings in Kubuntu 18.10, but the translucency works and can be adjusted without the blurring using Xrender and in earlier versions of Kubuntu.



        Dolphin against a coloured background



        Dolphin against a black and white background to show how the blurring enables the white text to be seen



        This was achieved very simply using the Kvantum theming engine and Kvantum Theme Manager. There's more info and images on my Linux, The Whitsundays and Me blog.



        While this is not changing the background image in Dolphin, quite a few of us found this topic whilst trying to make a translucent background in Dolphin - so I hope this helps.






        share











        share


        share










        answered 7 mins ago









        RossDRossD

        113




        113






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f879061%2fhow-to-change-background-image-of-dolphin-file-browser-from-default-white-backgr%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Why do type traits not work with types in namespace scope?What are POD types in C++?Why can templates only be...

            Will tsunami waves travel forever if there was no land?Why do tsunami waves begin with the water flowing away...

            Should I use Docker or LXD?How to cache (more) data on SSD/RAM to avoid spin up?Unable to get Windows File...