ในการจัดหาโซลูชันสำหรับผู้ใช้ Windowsด้วย:
สคริปต์ PowerShell สั้น ๆ ต่อไปนี้จะ 'ปิดการใช้งาน' จุดแจ้งเตือนโดยแทนที่ไอคอนด้วยจุดที่ว่างเปล่า (ตามคำแนะนำอื่น ๆ )
# Set the path to the current Slack version here
# (by default the Slack installer puts it in %LocalAppData%)
$currentSlackVersionDir = "$env:LOCALAPPDATA\slack\app-4.3.4"
# Only change the following values if the names of the icons change
$blankIconFile = 'slack-taskbar-rest.ico'
$dottedIconFiles = 'slack-taskbar-highlight.ico', 'slack-taskbar-unread.ico'
# Get default icons folder path
$iconsFolder = "$currentSlackVersionDir\resources\app.asar.unpacked\dist\static"
foreach ($dottedIcon in $dottedIconFiles ) {
# Rename dotted icon (as backup)
Rename-Item -Path "$iconsFolder\$dottedIcon" -NewName "$iconsFolder\$dottedIcon.bak.ico"
# Copy blank icon using its name
Copy-Item -Path "$iconsFolder\$blankIconFile" -Destination "$iconsFolder\$dottedIcon"
}
แน่นอนคุณสามารถทำได้ด้วยตนเอง แต่คุณอาจต้องทำซ้ำสำหรับการอัปเดตแอปทุกครั้ง (เวอร์ชันที่ปรับปรุงของสคริปต์นี้สามารถลองค้นหา$currentSlackVersionDir
โดยอัตโนมัติรู้สึกฟรีเพื่อแก้ไข! :-))