Instead of showing signal level, it shows mobile phone icon. This workaround work for me, at least: “restart plasma-desktop” (without logging-out KDE), here is the command
kquitapp plasma-desktop kstart plasma-desktop > /dev/null 2>&1 We can wrap it to shell script called restart-plasma like:
root@pcxthinkslack:/home/bowo# cat /usr/local/bin/restart-plasma #!/bin/bash kquitapp plasma-desktop > /dev/null 2>&1 kstart plasma-desktop > /dev/null 2>&1 Result Before: After: =-=-=-=-=
Powered by Blogilo
Agar lebih mudah dibaca, terkadang kita ingin log file di Linux bisa dibaca dalam mode berwarna-warni. Semacam syntax highlighting kalau dalam programming. Dengan menggunakan tool yang bernama ccze di Linux, ini bukan hal yang mustahil. Untuk menginstall program tersebut di Slackware, kita dapat menggunakan sbopkg.
CCZE description (from the Slackware slackbuild README):
CCZE is a robust and modular log colorizer with plugins for apm, exim, fetchmail, httpd, postfix, procmail, squid, syslog, ulogd, vsftpd, xferlog, and more.
Since kernel 3.7 my internal GSM modem interfaces name has changed from usb0 to wwan0 ,indeed it sounds good :) . However, it messed up Knemo traffic statistic, since I registered my internet connection based on its volume. So it’s better to use the same ifname. Using udev, I force my Slackware to use wwan0 as ifname.
root@pcxthinkslack:~# cat /etc/udev/rules.d/10-network.rules SUBSYSTEM=="net", ATTR{address}=="02:80:37:ec:02:00", NAME="wwan0" =-=-=-=-=
Powered by Blogilo
When you press the power on/off-button, a quick-menu appears. It has poweroff, but no reboot. This can be easily fixed:
Open /etc/systemui/systemui.xml in your favourite editor Remove the comment before the line “Reboot” down a few lines before the next menuitem. Save and reboot, and voila. You now have a reboot-button on your quick menu.
=-=-=-=-=
Powered by Blogilo
All credit goes to Ubuntu team. Here is step by step installing tvtime on Slackware64-14.0, running kernel 3.5.x:
Download tvtime-1.0.2 source Download tvtime patch for Ubuntu Quantal and apply the patch Compile the source ./configure --prefix=/usr && make && make DESTDIR=`pwd`/pkg install Make slackware package & install it
makepkg -l y -c y /home/bowo/Packages/tgz/tvtime-1.0.2-x86_64-3pcx.txz installpkg /home/bowo/Packages/tgz/tvtime-1.0.2-x86_64-3pcx.txz Known problem (or feature perhaps) Suara yang sebelumnya muncul, sekarang tidak muncul dilaptop.
Klook is a Quick Look like for KDE e.v. Here is how I run it on my Slackware64-current. Note that it requires KDE 4.9.x.
Download Klook source from kde playground Build Klook from the source Create slackware package Install Klook package Patch dolphin
As I use alien KDE v4.9.1, download all the slackbuild tree (dont need to download all the apps source). Put the patch on the patch/kde-baseapps edit patch/kde-base.
Edit HAM package repository Add extras-testing and extras-devel repository. Install bluemaemo + dependencies from console/shell:
apt-get install libeet1=1.2.2+svn41533-maemo1 apt-get install bluemaemo et voila, next is configure and pair maemo and the laptop.
=-=-=-=-=
Powered by Blogilo
This can be an awful things to get an Android phone be able to import all of our contacts on another devices, except you want to buy a non-free software. This is a step-by-step procedure that I did to get my Android has the same contacts with my Nokia N900:
Export all contacts on Nokia N900 using phonebook app. As the result, there will be numerous .vcf files, means it separated per contact.
Why?
The default shortcut for navigating opened tab in Firefox isn’t friendly enough for me, as Thinkpad user, since its Page Up and Page Down on the keyboard is “far” enough for my finger to reach. As a ‘loyal’ KDE user, I feel comfort already with Konsole’s default shortcut for navigating Tab, that’s by using Shift+Left Arrow/Right Arrow. What’s next?
Googling around, I found keyconfig, a Firefox extension to change keyboard shortcut (What the.
OS+Env: Slackware64-Current
Hardware: Lenovo Thinkpad T420i
Problem: Sound is working, but it isn’t loud enough
Solution: Create a file /etc/asound.conf and paste this config:
pcm.!default { type plug slave.pcm "softvol" } pcm.softvol { type softvol slave { pcm "dmix" } control { name "Pre-Amp" card 0 } min_dB -5.0 max_dB 20.0 resolution 6 } Restart ALSA (/etc/rc.d/rc.alsa restart) and there should be a new mixer channel called pre-amp in the mixer software (kmix/alsamixer).