For more clarity:
- The application menu is called wofi.
- You open it by pressing Meta (or Mod or windows) Key + D.
If you can’t see the text in the search box then:
- The color of the text is set to the color of the background of the search box.
- You now have to change the color of the text.
- open
/.config/wofi/style.css - possibly change this:
#input {
margin-bottom: 15px;
padding:3px;
border-radius: 5px;
border:none;
color: white;
}
- to that:
#input {
margin-bottom: 15px;
padding:3px;
border-radius: 5px;
border:none;
color: black;
}
- or whatever suits your needs.
I changed the “Solution comment” from eosbtw’s to this comment to make it easier for people who might have this issue in the future.