Skip to content

Commit

Permalink
Plasma 6 initial update (beta)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkXero-dev committed Feb 27, 2024
1 parent 6ff52a7 commit bc1cd25
Show file tree
Hide file tree
Showing 321 changed files with 3,067 additions and 25,689 deletions.
32 changes: 28 additions & 4 deletions Configs/Home/.config/neofetch/config.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ print_info() {
info " ​ ​  " cpu
info " ​ ​ 󰢮 " gpu
info " ​ ​  " memory
# info " ​ ​  " resolutiont
prin " ├─────────\n Software Information \n─────────┤"
info " ​ ​ ​ " users
info " ​ ​  " distro
Expand All @@ -24,10 +23,12 @@ print_info() {
info " ​ ​  " wm
info " ​ ​  " shell
info " ​ ​  " term
info " ​ ​ 󰢮 " gpu_driver
info " ​ ​ 󰟪 " theme
info " ​ ​ 󰊠 " packages
info " ​ ​ ⏼ " uptime
info " ​ ​ 󰢮 " gpu_driver # Linux/macOS only
prin " ├─────────\n Install Information \n─────────┤"
prin " ​ ​  " "Installed on $(echo $birth_install | awk '{print strftime("%b %d/%Y",$1)}')"
prin " ​ ​  " "Days elapsed thus far: $(echo $days_done days )"
prin " └───────────────────────────────────────┘"
info cols
prin "\n \n \n \n \n ${cl3} \n \n ${cl5} \n \n ${cl2} \n \n ${cl6} \n \n ${cl4} \n \n ${cl1} \n \n ${cl7} \n \n ${cl0}"
Expand Down Expand Up @@ -67,6 +68,29 @@ separator="  "
color_blocks="off"
block_range=(0 15) # Colorblocks


# All the Timing information
let Minute=60
let Hour=3600
let Day=86400
let Week=604800

# Year_days=365.25 days # 4 years (1461 days cause leap year) Divided by 4
# Month_days=30.4375 days # Year Divided by 12
let Month=2629743
let Year=31556926

# Define the two time strings
let birth_install="$(stat -c %W /)"
let current=$(date +%s)

# Calculate the time difference in seconds
time_progression=$((current - birth_install))

# Convert the time difference to days (86400 seconds in a day)
days_difference=$((time_difference / 86400))
days_done=$((time_progression/ 86400))

# Colors for custom colorblocks
magenta="\033[1;35m"
green="\033[1;32m"
Expand Down Expand Up @@ -107,7 +131,7 @@ battery_display="off"
disk_display="on"

image_backend="ascii"
#image_source=""
#image_source="$HOME/.config/neofetch/XeroAscii"
image_size="small"
image_loop="off"

Expand Down
Loading

0 comments on commit bc1cd25

Please sign in to comment.