Compare commits
1 Commits
master
...
i3/migrate
| Author | SHA1 | Date | |
|---|---|---|---|
| 2be3fa61d5 |
@ -21,7 +21,6 @@ exec --no-startup-id nitrogen --restore; sleep 1; picom -b --config ~/.config/pi
|
||||
exec --no-startup-id hsetroot
|
||||
exec --no-startup-id feh --randomize --no-fehbg --bg-scale $HOME/.wallpaper/*
|
||||
|
||||
|
||||
font xft:FiraCode 12
|
||||
|
||||
# Use pactl to adjust volume in PulseAudio.
|
||||
@ -194,7 +193,7 @@ bar {
|
||||
output primary
|
||||
output nonprimary
|
||||
tray_output primary
|
||||
status_command exec ~/.local/bin/i3status_wrapper
|
||||
status_command exec ~/.local/bin/conky-i3bar
|
||||
font xft:FiraCode 13
|
||||
}
|
||||
|
||||
|
||||
47
home/user/.conkyrc
Normal file
47
home/user/.conkyrc
Normal file
@ -0,0 +1,47 @@
|
||||
conky.config = {
|
||||
out_to_x = false,
|
||||
own_window = false,
|
||||
out_to_console = true,
|
||||
background = false,
|
||||
max_text_width = 0,
|
||||
|
||||
-- Update interval in seconds
|
||||
update_interval = 2.0,
|
||||
|
||||
-- This is the number of times Conky will update before quitting.
|
||||
-- Set to zero to run forever.
|
||||
total_run_times = 0,
|
||||
|
||||
-- Shortens units to a single character (kiB->k, GiB->G, etc.). Default is off.
|
||||
short_units = true,
|
||||
|
||||
-- How strict should if_up be when testing an interface for being up?
|
||||
-- The value is one of up, link or address, to check for the interface
|
||||
-- being solely up, being up and having link or being up, having link
|
||||
-- and an assigned IP address.
|
||||
if_up_strictness = 'address',
|
||||
|
||||
-- Add spaces to keep things from moving about? This only affects certain objects.
|
||||
-- use_spacer should have an argument of left, right, or none
|
||||
use_spacer = 'left',
|
||||
|
||||
-- Force UTF8? note that UTF8 support required XFT
|
||||
override_utf8_locale = false,
|
||||
|
||||
-- number of cpu samples to average
|
||||
-- set to 1 to disable averaging
|
||||
cpu_avg_samples = 2,
|
||||
};
|
||||
|
||||
conky.text = [[
|
||||
[
|
||||
{ "full_text": " (${wireless_link_qual_perc}% at ${wireless_essid}) ${addr}" , "color": "\#00ff00" },
|
||||
{ "full_text": " ${addr}" , "color": "\#00ff00" },
|
||||
{ "full_text": "/ ${fs_used /}/${fs_size /}" , "color": "\#ffffff" },
|
||||
{ "full_text": " ${fs_used /home}/${fs_size /home}" , "color": "\#ffffff" },
|
||||
{ "full_text": " ${mem}/${memmax}" , "color": ${if_match ${memperc}<90}"\#ffffff"${else}"\#ff0000"${endif} },
|
||||
{ "full_text": " ${cpu}%" , "color": ${if_match ${cpu}<90}"\#ffffff"${else}"\#ff0000"${endif} },
|
||||
{ "full_text": " ${acpitemp}°" , "color": "\#ffffff" },
|
||||
{ "full_text": "${time %d.%m.%y %a %H:%M}", "color": "\#ffffff" }
|
||||
],
|
||||
]];
|
||||
13
home/user/.local/bin/conky-i3bar
Executable file
13
home/user/.local/bin/conky-i3bar
Executable file
@ -0,0 +1,13 @@
|
||||
!/bin/sh
|
||||
|
||||
# Send the header so that i3bar knows we want to use JSON:
|
||||
echo '{"version":1}'
|
||||
|
||||
# Begin the endless array.
|
||||
echo '['
|
||||
|
||||
# We send an empty first array of blocks to make the loop simpler:
|
||||
echo '[],'
|
||||
|
||||
# Now send blocks with information forever:
|
||||
exec conky -c $HOME/.conkyrc
|
||||
Loading…
x
Reference in New Issue
Block a user