نمایش/عدم نمایش آیکون ها در میزکارalt + ctr + s
۱) نوشتن یک اسکریپت با محتویات زیر
#!/bin/bash
OUTPUT="$(xfconf-query -c xfce4-desktop -p '/desktop-icons/style' -a)"
#~ xfconf-query -c xfce4-desktop -np '/desktop-icons/style'
if [ "$OUTPUT" -eq "0" ]; then
echo "Show Desktop icons"
xfconf-query -c xfce4-desktop -np '/desktop-icons/style' -t 'int' -s '2'
elif [ "$OUTPUT" -eq "2" ];
then
echo "Hide Desktop icons"
xfconf-query -c xfce4-desktop -np '/desktop-icons/style' -t 'int' -s '0'
fi
اسکریپت وضعیت آیکونهای دسکتاپو میخونه و بین نمایش یا عدم نمایش آیکون ها سوییچ میکنه.
۲) اجرایی کردن با دستور
chmod +x icon.sh
۳) اضافه کردن شورتکات برای اجرای اسکریپت
xfconf-query --channel xfce4-keyboard-shortcuts --property "/commands/custom/<Alt><Ctrl>s" --create --type string --set "/home/ss/code/script/icon.sh"
[اصلاحیه] آخرین عبارت دستور بالا باید آدرس مطلق اسکریپت icon.sh باشه در غیر این صورت کار نمیکنه
[تذکر]
* البته این قسمتو میشه به سادگی از منوی Application -> Settings ->> Keyboard --> App Shortcuts--> Add هم انجام داد. (توصیه میکنم از همین روش استفاده کنید)
از این به بعد میتونیم بازدن
alt + ctr + s آیکونهای دسکتاپو نمایش بدیم یا مخفی کنیم.
قطع و وصل کردن سرویس tor
alt + ctrl + a
#!/bin/bash
sudo systemctl status tor|grep dead
if [ "$?" -eq "0" ]; then
echo "start tor"
sudo systemctl start tor
else
echo "stop tor"
sudo systemctl stop tor
fi
ذره بین Magnifier alt + mouseWheel
باز کردن ترمینال در مسیر جاری Thunar Edit Configure Custom action
exo-open --working-directory %f --launch TerminalEmulator