A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix alfred dark-mode & keyboard issue

+10 -9
+6 -6
src/Applications/UI/Alfred/State.elm
··· 5 5 import Chunky exposing (..) 6 6 import List.Extra as List 7 7 import Material.Icons.Types exposing (Coloring(..)) 8 + import Process 8 9 import Return exposing (return) 9 10 import Return.Ext as Return 10 11 import String.Ext as String ··· 18 19 19 20 assign : Alfred UI.Msg -> Manager 20 21 assign instance model = 21 - return 22 - { model | alfred = Just instance } 23 - (Task.attempt 24 - (always UI.Bypass) 25 - (Dom.focus "diffuse__alfred") 26 - ) 22 + 250 23 + |> Process.sleep 24 + |> Task.andThen (\_ -> Dom.focus "diffuse__alfred") 25 + |> Task.attempt (\_ -> UI.Bypass) 26 + |> return { model | alfred = Just instance } 27 27 28 28 29 29 gotInput : String -> Manager
+4 -3
src/Applications/UI/Alfred/View.elm
··· 105 105 ----------------------------------------- 106 106 , brick 107 107 [ id "alfred__results" ] 108 - [ C.rounded 108 + [ C.bg_white 109 + , C.rounded 109 110 , C.leading_none 110 111 , C.max_w_lg 111 112 , C.mb_32 ··· 153 154 154 155 -- 155 156 , if modBy 2 idx == 0 then 156 - C.bg_white 157 + "" 157 158 158 159 else 159 - String.joinWithSpace [ C.bg_gray_100, C.dark__bg_base01 ] 160 + String.joinWithSpace [ C.bg_gray_100, C.dark__bg_base01_15 ] 160 161 ] 161 162 [ text result 162 163