Jump to content
The Dark Mod Forums

datiswous

Member
  • Posts

    3018
  • Joined

  • Last visited

  • Days Won

    48

datiswous last won the day on February 10

datiswous had the most liked content!

Reputation

1068 Deity

3 Followers

About datiswous

  • Birthday 07/18/1981

Profile Information

  • Location
    Amsterdam

Recent Profile Visitors

189737 profile views

Single Status Update

See all updates by datiswous

  1. If you use DarkRadiant in Linux while using a dark theme, a large amount of the icons are hard to see, because it's dark-color on dark background (wish DR darkmode was a little less dark). A workaround is switching to a light theme when using DR. I'm using XFCE as DE, so I made this script (mostly copied from this code), which works as a toggle. Then I set it to a keyboard shortcut. The switch works even when DR is already opened.

    current_theme=$(xfconf-query -c xfwm4 -p /general/theme)
    
    
    if [[ $current_theme == 'Adwaita-dark' ]]; then
        xfconf-query -c xsettings -p /Net/ThemeName -s 'Mint-X-Grey'
        xfconf-query -c xfwm4 -p /general/theme -s 'Mint-X-Grey'
    else 
        xfconf-query -c xsettings -p /Net/ThemeName -s 'Adwaita-dark'
        xfconf-query -c xfwm4 -p /general/theme -s 'Adwaita-dark'
    fi

    This only works for the XFCE DE though.

×
×
  • Create New...