53屆畢業班302
.......
佈告欄
- 音效編輯軟體 ......2020/12/14
- Scratch 線上版 ......2020/04/01
- 資訊科技--上網找答案 ......2019/10/31
- 資訊科技--中英打軟體ver1.2 ......2019/10/01
- 107下學校行事曆(學生版) ......2019/02/18
- 107上學校行事曆(學生版) ......2018/09/01
2022年9月14日 星期三
2022年9月5日 星期一
2022年5月26日 星期四
2022年5月5日 星期四
遠距教學
班級 | 班級帳號 | 各班會議室連結 |
201 | tljhclass201@tljh.cyc.edu.tw | https://meet.google.com/wrq-zsbk-vfi |
202 | tljhclass202@tljh.cyc.edu.tw | https://meet.google.com/iij-xnjh-qzj |
203 | tljhclass203@tljh.cyc.edu.tw | https://meet.google.com/qqn-atwn-kvo |
204 | tljhclass204@tljh.cyc.edu.tw | https://meet.google.com/duu-szka-mdm |
205 | tljhclass205@tljh.cyc.edu.tw | https://meet.google.com/veb-cstj-gwk |
206 | tljhclass206@tljh.cyc.edu.tw | https://meet.google.com/tas-tvid-jwx |
207 | tljhclass207@tljh.cyc.edu.tw | https://meet.google.com/cjd-zpuf-mxr |
301 | tljhclass301@tljh.cyc.edu.tw | https://meet.google.com/bgn-mxyd-uds |
302 | tljhclass302@tljh.cyc.edu.tw | https://meet.google.com/rtq-nbbo-ijv |
303 | tljhclass303@tljh.cyc.edu.tw | https://meet.google.com/ity-hjpr-per |
304 | tljhclass304@tljh.cyc.edu.tw | https://meet.google.com/uuo-fncr-hdn |
305 | tljhclass305@tljh.cyc.edu.tw | https://meet.google.com/wif-xxzy-vak |
306 | tljhclass306@tljh.cyc.edu.tw | https://meet.google.com/reg-hcud-iqb |
307 | tljhclass307@tljh.cyc.edu.tw | https://meet.google.com/pjs-qiht-icj |
2022年4月25日 星期一
2022年3月22日 星期二
2022年3月21日 星期一
2022年1月8日 星期六
Python 雜記
查詢 tkinter的版本
import tkinter
print(tkinter.TkVersion)
tkinter 的基本使用
from tkinter import *
win = Tk()
win.mainloop()
基本視窗的定義
from tkinter import *
win = Tk()
win.title("MyWindow") # 視窗標題
win.geometry("300x160") # 視窗大小
win.configure(bg='yellow') # 視窗背景顏色
win.mainloop()
2022年1月7日 星期五
Lubuntu 系統操作介面
更換登入頭像
將要做頭像的圖片,存入home目錄,檔名命為 .face.icon
更換登入畫面
到 kde store 下載 sddm 登入主題,解壓縮後得到主題目錄
將主題目錄複製到 /usr/share/sddm/themes
進行安裝
sudo update-alternatives --install /usr/share/sddm/ubuntu-theme sddm-ubuntu-theme /usr/share/sddm/themes/主題名稱 20
查詢有那些主題可以使用
update-alternatives --query sddm-ubuntu-theme
刪除主題
sudo update-alternatives --remove sddm-ubuntu-theme /usr/share/sddm/themes/主題名稱
設定啟動的主題,在 /etc/sddm.conf
[Autologin]
Session=Lubuntu
[Theme]
Current=主題名稱