🍿
Pop!_OS 22.04 trivial settings
/dev/ttyACM0
Permission denied
c.f. https://askubuntu.com/questions/899374/arduino-only-works-in-root
sudo usermod -a -G dialout $USER
NOTE: Logout / re-login should be required.
Calendar should be started sunday not monday
c.f. https://gist.github.com/buzztaiki/d8f7470c2fa3b21926a3ec4326757ea8
sudo cp /usr/share/i18n/locales/$(echo $LC_TIME|cut -d. -f1){,.orig} # backup
sudo vim /usr/share/i18n/locales/$(echo $LC_TIME|cut -d. -f1)
next, insert the line first_weekday 1
before the END LC_TIME
line.
note: the number of 1
means sunday, similarly 2
means monday.
it needs a following line:
sudo locale-gen
then finally logout/login.
DeadBeef Music Player
install
-
goto deadbeef - Browse /travis/linux/1.9.6 at SourceForge.net
-
download
deadbeef-static_1.9.6-1_amd64.deb
into~/Downloads
-
install
cd ~/Downloads
sudo apt install ./deadbeef-static_1.9.6-1_amd64.deb
tips
UI buttons are fu**in' small for HiDPI display (e.g. scaling 200% at 4K)
- calm down yourself
- DeadBeef main menu > edit > settings > GUI tab
- GUI Plugin(Need restart): GTK3
- restart deadbeef player
Calendar does not show any notifications from deadbeef
c.f. https://forums.linuxmint.com/viewtopic.php?t=404075
- download a plugin tarball from https://github.com/Serranya/deadbeef-mpris2-plugin/releases/download/v1.14/deadbeef-mpris2-plugin-1.14.tar.xz.
cd ~/Downloads && tar xvf deadbeef-mpris2-plugin-1.14.tar.xz
cd deadbeef-mpris2-plugin-1.14
CPPFLAGS="$CPPFLAGS -I/opt/deadbeef/include/" ./configure --prefix=/opt/deadbeef
make && sudo make install
- restert deadbeef player
Discussion