goodwillcoding

Results 22 comments of goodwillcoding

@jonian I've been playing with various solutions, no luck yet. Though that might be due to my lack of knowledge of gnome shell css/js tricks. If you have idea and...

@jonian as a thought, do you think it makes sense to take out the offending css out. Here is my rationale: 1. on single monitors the title bar for such...

@brpaz @gornostal one possible way of doing this that creating virtualenvs on the fly for each exensions with additional pathing to Ulauncher libs (not hard, but not a common case)....

@bernsel > you would think that Apple would have suggested an alternative for those who upgrade to M1/M2. Noone would think that, it's Apple .. they could not care less...

``` shell $ declare -a ARRAY $ ARRAY=(1 2 3) $ echo ${ARRAY} 1 $ echo ${ARRAY[*]} 1 2 3 $ for i in ${ARRAY[*]}; do echo ${i}; done 1...

array and associative arrays (dicts/hashes) are supported: https://www.shell-tips.com/bash/arrays/

@mmerickel I am running into the same problem, got mounted rutter apps and no way to pass in the mount point. Did you ever find a way to address this?

@zupo (cc: @mmerickel) ... ran into similar issue, using rutter WSGI compositor. Found solution of using `request.script_name` for `PyramidOpenAPIRequest.path_pattern` did the trick for relative absolute server urls without any additional...

@rbvermaa ... I was testing the "detect arch" bit we talked about so it builds locally rather then remotely and a stupid question came to mind.. There more criteria then...

My general sense is too much is happening on "enable" that potentially should be moved off to a later stage or signals, but I am not yet sure what it...