Last active
March 1, 2022 17:28
-
-
Save M4R14/e993153bc9f01aef562d1d3571c76254 to your computer and use it in GitHub Desktop.
Control Ubuntu Sound With Telegram
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const TeleBot = require('telebot'); | |
| const bot = new TeleBot(TELEGRAM_BOT_TOKEN); | |
| bot.on('text', (msg) => msg.reply.text(msg.text)); | |
| bot.start(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const { exec } = require("child_process"); | |
| exec("ls -la", (error, stdout, stderr) => { | |
| if (error) { | |
| console.log(`error: ${error.message}`); | |
| return; | |
| } | |
| if (stderr) { | |
| console.log(`stderr: ${stderr}`); | |
| return; | |
| } | |
| console.log(`stdout: ${stdout}`); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment