Blog: 2023-08-22: Difference between revisions

From razwiki
Jump to navigation Jump to search
(Created page with "ok I want to have a decent irc client! Let's start from scratch on debian Maybe even in a virtual machine, why not. sudo apt install weechat sudo apt install znc znc --ma...")
 
No edit summary
 
Line 12: Line 12:


And now I'm trying to get application-specific keyd working - control w firefox to delete backwards word.
And now I'm trying to get application-specific keyd working - control w firefox to delete backwards word.

Looking at the source code of /usr/bin/keyd-application-mapper, it doesn't look robust. Maybe better to add this functionality to my c-t extension :-| :)

Latest revision as of 23:06, 21 August 2023

ok I want to have a decent irc client! Let's start from scratch on debian

Maybe even in a virtual machine, why not.

sudo apt install weechat
sudo apt install znc
znc --makeconf  # now that I have run this, I can copy my znc conf

Ok took a break from that to get audio music working better. Came up with a "music" function that plays a folder of audio files.

https://serverfault.com/questions/105386/bash-loop-how-to-stop-the-loop-when-i-press-control-c-inside-a-command is actually a nice simple way to "trap" control c - just break if the command fails.

And now I'm trying to get application-specific keyd working - control w firefox to delete backwards word.

Looking at the source code of /usr/bin/keyd-application-mapper, it doesn't look robust. Maybe better to add this functionality to my c-t extension :-| :)