用业余时间写了一个网易云音乐客户端
Tofloor
poster avatar
stkevintan
deepin
2015-05-12 22:22
Author
本帖最后由 stkevintan 于 2015-6-13 23:37 编辑

RT。根据python命令行版的网易云客户端musicbox写了一个nw.js版桌面程序的。下面是截图



项目托管在github:https://github.com/stkevintan/nw_musicbox
学生党的资源有限,有兴趣的同学可以帮忙测试一下。



update 2015.6.13
已经基本掌握了歌词的api,现在考虑该怎么呈现出来,其实我感觉在终端里看歌词也是一个不错的选择嘛

Reply Favorite View the author
All Replies
2 / 2
To page
kingskill
deepin
2015-05-14 03:13
#21
lz,个人不是很习惯终端命令行。能不能想个办法,弄个快捷方式链接之类的放桌面上?

不晓得deepin的超链接方式有没有像windows的快捷方式那样支持命令后缀。。。
Reply View the author
stkevintan
deepin
2015-05-14 03:28
#22
https://bbs.deepin.org/post/30156
lz,个人不是很习惯终端命令行。能不能想个办法,弄个快捷方式链接之类的放桌面上?

不晓得deepin的超链接 ...

这个简单,去~/.local/share/applications/这个目录里面(或者其他地方)复制一个.desktop文件。用文本编辑器打开它,修改Exec后面的值改为你启动我的播放器的那条命令(其他看情况改吧)。保存之后单击这个文件就能打开播放器了。
Reply View the author
rekols
deepin
2015-05-17 19:56
#23
支持你啊
Reply View the author
mycatclaw
deepin
2015-05-19 02:38
#24
网易云音乐在wine下95%功能都可以使用。。。。。如图。。
Reply View the author
4***[email protected]
deepin
2015-05-19 06:26
#25
真希望网易能出一个官方版,深度加把劲看看能不能联合开发呢!
Reply View the author
uid00
deepin
2015-05-22 04:18
#26
力挺楼主
Reply View the author
stkevintan
deepin
2015-05-22 06:52
#27
https://bbs.deepin.org/post/30156
真希望网易能出一个官方版,深度加把劲看看能不能联合开发呢!

写了一个安装shell但是有个问题。`原谅我这渣shell水平`
  1. #!/bin/sh
  2. baseDir=$(cd "$(dirname "$0")"; pwd)
  3. iconPath=${baseDir}"/assets/img/icon.png"
  4. fileName='/NetEaseMusic-nw.desktop'
  5. filePath=${HOME}"/.local/share/applications/"${fileName}
  6. v1=${baseDir}'/NetEaseMusic-nw.desktop'
  7. cp  -f  $v1 $filePath
  8. sed -i -e "s/__Exec/$baseDir/g" -e "s/__Icon/$filePath/g" $filePath
Copy the Code

最后一个sed出现了错误。把双引号改成单引号就没有错误了。但是这样就无法解释$baseDIr等变量了。
请教一下。。
Reply View the author
angelbeak
deepin
2015-06-05 22:02
#28
为何如此?
Reply View the author
Comments
stkevintan
2015-06-11 00:28
你是直接下载release包的么?
边城浪子1777
deepin
2015-06-05 22:23
#29
都是半成品
Reply View the author
Feng Yu
deepin
2015-06-06 01:04
#30
本帖最后由 abcfy2 于 2015-6-5 17:11 编辑
https://bbs.deepin.org/post/30156
写了一个安装shell但是有个问题。`原谅我这渣shell水平`

最后一个sed出现了错误。把双引号改成单引号就 ...

随手在编辑区敲了一段,未在bash中验证。几个可能出现空格的地方都加上了引号,增强了脚本的健壮性。
  1. #!/bin/bash -e

  2. baseDir="`dirname $0`"
  3. iconPath="$baseDir/assets/img/icon.png"
  4. fileName="NetEaseMusic-nw.desktop"
  5. filePath="$HOME/.local/share/applications/"
  6. [[ -d "$filePath" ]] || mkdir -p "$filePath"
  7. v1="$baseDir/$fileName"
  8. cp  -f  "$v1" "$filePath"
  9. sed -i "s@__Exec@$baseDir@g; s@__Icon@$filePath@g" "$filePath/$fileName"
Copy the Code

Reply View the author
Comments
stkevintan
2015-06-11 00:34
谢谢,比我原来的好多了,我的shell真是三角猫啊,哈哈。
seehooy
deepin
2015-06-06 03:41
#31
支持一下!
Reply View the author
边城浪子1777
deepin
2015-06-13 21:59
#32
deb安装包呢
Reply View the author
浅浅
deepin
2015-06-13 23:26
#33
不错,加油
Reply View the author
2 / 2
To page