Spotify blocklet controls, build main.scss

ranger icons.
This commit is contained in:
2019-03-03 02:17:39 -05:00
parent 3fc23d00bd
commit 79ef30f09b
20 changed files with 321 additions and 52 deletions

View File

@@ -49,21 +49,23 @@ end
function __fish_watson_get_projects -d "return a list of projects"
__fish_watson_set_cache_vars
__fish_watson_check_if_refresh_cache $_watson_projects_cache
if test $status -eq 1
command watson projects | tee $_watson_projects_cache
else
cat $_watson_projects_cache
end
# if test $status -eq 1
# command watson projects | tee $_watson_projects_cache
# else
# cat $_watson_projects_cache
# end
cat $_watson_projects_cache
end
function __fish_watson_get_tags -d "return a list of tags"
__fish_watson_set_cache_vars
__fish_watson_check_if_refresh_cache $_watson_tags_cache
if test $status -eq 1
command watson tags | tee $_watson_tags_cache
else
cat $_watson_tags_cache
end
# if test $status -eq 1
# command watson tags | tee $_watson_tags_cache
# else
# cat $_watson_tags_cache
# end
cat $_watson_tags_cache
end
function __fish_watson_get_frames -d "return a list of frames" #TODO, use watson logs to get more info

View File

@@ -44,8 +44,9 @@ function cd --description "Change directory"
set -g -a dirprev $previous
set -e dirnext
set -g __fish_cd_direction prev
set -U last_dir $PWD
ls -a
set -U last_dir $PWD
ls -a
end
return $cd_status