उबंटू से पूछें :
टिप्पणियों के लिए ऊपर दिए गए उबंटू लिंक की जांच करें और संभवतः अन्य उपयोगकर्ताओं से नए उत्तर प्राप्त करें।
now
बैश स्क्रिप्ट
भारी उठाना स्पलैश घटक है जो इसे दिखाता है:
$ now
Weather report: Edmonton March 2018 ┌────────────────────────────┐
Su Mo Tu We Th Fr Sa │ ┏━┓╺┓ ┏━┓┏━┓ ┏━┓┏┳┓ │
\ / Sunny 1 2 3 │ ┃┃┃ ┃ ╹┏━┛┗━┫ ┣━┛┃┃┃ │
.-. -23--14 °C 4 5 6 7 8 9 10 │ ┗━┛╺┻╸╹┗━╸┗━┛ ╹ ╹ ╹ │
― ( ) ― ↘ 22 km/h 11 12 13 14 15 16 17 └────────────────────────────┘
`-’ 14 km 18 19 20 21 22 23 24
/ \ 0.9 mm 25 26 27 28 29 30 31
हां यह वास्तव में एडमॉन्टन में -14 है और ऐसा लगता है -23। 2013 में नए आने वाले टॉम्ब रेडर की भूमिका में लंबे समय तक सप्ताहांत बिताने का एक अच्छा समय! शायद वैंकूवर या मॉन्ट्रियल जाने के लिए उस रिज्यूमे पर ब्रश करें ...
यहाँ कोड है:
#!/bin/bash
# NAME: now
# PATH: $HOME/bin
# DESC: Display current weather, calendar and time
# CALL: Called from terminal or ~/.bashrc
# DATE: Apr 6, 2017. Modified: Mar 30, 2018.
# NOTE: To display all available toilet fonts use this one-liner:
# for i in ${TOILET_FONT_PATH:=/usr/share/figlet}/*.{t,f}lf; do j=${i##*/}; toilet -d "${i%/*}" -f "$j" "${j%.*}"; done
# Setup for 92 character wide terminal
DateColumn=34 # Default is 27 for 80 character line, 34 for 92 character line
TimeColumn=61 # Default is 49 for " " " " 61 " " " "
#--------- WEATHER ----------------------------------------------------------
# Current weather, already in color so no need to override
echo " "
# Replace Edmonton with your city name, GPS, etc. See: curl wttr.in/:help
curl wttr.in/Edmonton?0 --silent --max-time 3
# Timeout #. Increase for slow connection---^
echo " "
echo " " # Pad with blank lines for calendar & time to fit
#--------- DATE -------------------------------------------------------------
# calendar current month with today highlighted.
# colors 00=bright white, 31=red, 32=green, 33=yellow, 34=blue, 35=purple,
# 36=cyan, 37=white
tput sc # Save cursor position.
# Move up 9 lines
while [ $((++i)) -lt 10 ]; do tput cuu1; done
# Depending on length of your city name and country name you will:
# 1. Comment out next three lines of code. Uncomment fourth code line.
# 2. Change subtraction value and set number of print spaces to match
# subtraction value. Then place comment on fourth code line.
Column=$(($DateColumn - 10))
tput cuf $Column # Move x column number
printf " " # Blank out ", country" with x spaces
#tput cuf $DateColumn # Position to column 27 for date display
# -h needed to turn off formating: /ubuntu/1013954/bash-substring-stringoffsetlength-error/1013960#1013960
cal -h > /tmp/terminal
CalLineCnt=1
Today=$(date +"%d")
# Prefix with space when length < 2
if [[ ${#Today} < 2 ]] ; then
Today=" "$Today
fi
printf "\033[32m" # color green -- see list above.
while IFS= read -r Cal; do
printf "$Cal"
if [[ $CalLineCnt > 2 ]] ; then
# See if today is on current line & invert background
tput cub 22
for (( j=0 ; j <= 18 ; j += 3 )) ; do
Test=${Cal:$j:2} # Current day on calendar line
if [[ "$Test" == "$Today" ]] ; then
printf "\033[7m" # Reverse: [ 7 m
printf "$Today"
printf "\033[0m" # Normal: [ 0 m
printf "\033[32m" # color green -- see list above.
tput cuf 1
else
tput cuf 3
fi
done
fi
tput cud1 # Down one line
tput cuf $DateColumn # Move 27 columns right
CalLineCnt=$((++CalLineCnt))
done < /tmp/terminal
printf "\033[00m" # color -- bright white (default)
echo ""
tput rc # Restore saved cursor position.
#-------- TIME --------------------------------------------------------------
tput sc # Save cursor position.
# Move up 9 lines
i=0
while [ $((++i)) -lt 10 ]; do tput cuu1; done
tput cuf $TimeColumn # Move 49 columns right
# Do we have the toilet package?
if hash toilet 2>/dev/null; then
echo " "$(date +"%I:%M %P")" " | \
toilet -f future --filter border > /tmp/terminal
# Do we have the figlet package?
elif hash figlet 2>/dev/null; then
echo $(date +"%I:%M %P") | figlet > /tmp/terminal
# else use standard font
else
echo $(date +"%I:%M %P") > /tmp/terminal
fi
while IFS= read -r Time; do
printf "\033[01;36m" # color cyan
printf "$Time"
tput cud1 # Up one line
tput cuf $TimeColumn # Move 49 columns right
done < /tmp/terminal
tput rc # Restore saved cursor position.
exit 0
आवश्यक शर्तें
फैंसी टाइम डिस्प्ले के लिए आपको इंस्टॉल करना होगा toilet
:
sudo apt install toilet
एक और फैंसी टाइम डिस्प्ले के लिए (लेकिन काफी फैंसी के रूप में नहीं) इंस्टॉल करें figlet
:
sudo apt install figlet
अन्यथा समय "सामान्य" फ़ॉन्ट में प्रदर्शित किया जाएगा।
मौसम
मौसम curl wttr.in/cityname?0
कमांड द्वारा प्रदान किया जाता है । अपने टर्मिनल उपयोग में: curl wttr.in/:help
अतिरिक्त विवरण के लिए।
मौसम: शहर का नाम बदलें
आप कोड के इस भाग को बदलना चाहते हैं Edmonton
और अपने शहर का नाम बदल सकते हैं:
# Replace Edmonton with your city name, GPS, etc. See: curl wttr.in/:help
curl wttr.in/Edmonton?0 --silent --max-time 3
# Timeout #. Increase for slow connection---^
शहर के नाम जैसे /Москва
(मास्को) के लिए यूनिकोड का समर्थन किया जाता है । YEG
एडमोंटन के लिए हवाई अड्डे के पत्रों का समर्थन किया जाता है।
मौसम: देश का नाम हटाएं
जब टर्मिनल को 92 वर्णों के लिए सेट किया जाता है, तो मौसम "एडमॉन्टन, कनाडा" के रूप में प्रदर्शित होता है। जो मेरी पसंद के लिए बहुत लंबा है:
अभी तक जब टर्मिनल डिफ़ॉल्ट रूप से 80 वर्णों के लिए सेट किया गया है तो इससे भी बदतर:
समस्या को दरकिनार करने के लिए, "कंट्रीनाम" को इस कोड के साथ स्क्रीन पर खाली किया जाता है:
# Depending on length of your city name and country name you will:
# 1. Comment out next three lines of code. Uncomment fourth code line.
# 2. Change subtraction value and set number of print spaces to match
# subtraction value. Then place comment on fourth code line.
Column=$(($DateColumn - 10))
tput cuf $Column # Move x column number
printf " " # Blank out ", country" with x spaces
#tput cuf $DateColumn # Position to column 27 for date display
यदि आपको स्क्रिप्ट के इस भाग के लिए मदद चाहिए तो कृपया सहायता के लिए नीचे टिप्पणी पोस्ट करें।
टर्मिनल स्क्रीन चौड़ाई समायोजन
अपने टर्मिनल स्क्रीन की चौड़ाई को बदलकर समायोजित करें:
# Setup for 92 character wide terminal
DateColumn=34 # Default is 27 for 80 character line, 34 for 92 character line
TimeColumn=61 # Default is 49 for " " " " 61 " " " "
इसमें सभी को एक साथ बांधना ~/.bashrc
अपनी ~/.bashrc
फ़ाइल संपादित करें और इन पंक्तियों को नीचे जोड़ें:
# Splash Calendar and time
now
# ASCII Linux distribution display
screenfetch
`~ / .Bashrc" फ़ाइल परिवर्तन सहेजें।
उबंटू जानकारी प्रदर्शित करने के लिए आपको चाहिए screenfetch
:
sudo apt install screenfetch
screenfetch
आसपास की दुकान के समान प्रदर्शन पैकेज हैं !
यदि आप कमांड के बीच "want" डिवाइडिंग लाइन के साथ समान कमांड प्रॉम्प्ट चाहते हैं, तो इन लाइनों को बदलें:
if [ "$color_prompt" = yes ]; then
PS1='───────────────────────────────────────────────────────────────────────────────────────────
${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
else
PS1='───────────────────────────────────────────────────────────────────────────────────────────
${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
fi
unset color_prompt force_color_prompt
नोट करें कि विभाजक रेखा की लंबाई screenfetch
आउटपुट की चौड़ाई के साथ मेल खाती है । इस मामले में यह 92 अक्षर चौड़ा है और gnome-terminal
वरीयताएँ उसी के अनुसार निर्धारित की जाती हैं।
man ip
।-br
स्विच का उपयोग करें । तुम भी-4
स्विच का उपयोग करना चाहते हो सकता है । आपकी आज्ञा को छोटा किया जा सकता हैip -br a | sed -nE 's:^(\w+)\s+UP\s+([0-9.]+)/.*$:\1 \2:p'
। और भी बेहतर, उपयोग करेंhostname -I
।