coloursofnoise

Results 5 comments of coloursofnoise

You can use `wal --preview` to print the current colorscheme.

```julia using Gtk # Set-up: Opens a window with an entry, begin typing "test" to open a drop-down auto-complete menu entry = GtkEntry() completion = GtkEntryCompletion() listStore = GtkListStore(String) push!(listStore,...

Removing any widget from a window is as simple as calling `destroy(widget)`: ```julia window = GtkWindow("window") contents = GtkLabel("label") push!(window, contents) showall(window) destroy(contents) ``` This will create a window, add...

I was able to reproduce this, I've attached a screenshot. ![image](https://github.com/holzschu/a-shell/assets/53288101/ef377ad1-aaa7-430d-8502-160b9211c5fc)

One issue I could see is having the same filename in both `$XDG_CONFIG_HOME/rofi` and `$XDG_CONFIG_HOME/rofi/themes`, where presumably one would want `-config` to prioritize the former and `-theme` the latter. I...