fixed neofetch wording, added quassel
This commit is contained in:
parent
0523ca3a9e
commit
68e5bae54c
|
@ -28,8 +28,8 @@ print_info() {
|
|||
# info "Battery" battery
|
||||
# info "Font" font
|
||||
# info "Song" song
|
||||
info "Watching" song
|
||||
# [[ $player ]] && prin "Music Player" "$player"
|
||||
info "Playing" song
|
||||
# [[ $player ]] && prin "Player" "$player"
|
||||
# info "Local IP" local_ip
|
||||
# info "Public IP" public_ip
|
||||
# info "Users" users
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
// Style settings made in Quassel's configuration dialog
|
||||
// This file is automatically generated, do not edit
|
||||
|
||||
// NickView Colors
|
||||
NickListItem[type="category"] { foreground: #a7a7a7; }
|
||||
NickListItem[type="user"] { foreground: #a7a7a7; }
|
||||
NickListItem[type="user", state="away"] { foreground: #404042; }
|
|
@ -0,0 +1,52 @@
|
|||
/*
|
||||
Chat colours to match Sensual Dark colour theme in KDE Plasma
|
||||
*/
|
||||
|
||||
/* I'm using this to keep track of colours throughout */
|
||||
Palette {
|
||||
event-positive: #00aa7f;
|
||||
event-neutral: #4e51ac;
|
||||
event-negative: #ff007f;
|
||||
highlight-background: #4e9fac;
|
||||
text: #d3dae3;
|
||||
text-inactive: #a6acba;
|
||||
link: #4e9fac;
|
||||
link-visited: #4e51ac;
|
||||
marker-line: #00aa7f;
|
||||
}
|
||||
|
||||
ChatListItem { foreground: palette(text); }
|
||||
ChatListItem[state="inactive"] { foreground: #a6acba; }
|
||||
ChatListItem[state="channel-event"] { foreground: #4e51ac; }
|
||||
ChatListItem[state="unread-message"] { foreground: #00aa7f; }
|
||||
ChatListItem[state="highlighted"] { foreground: #4e9fac; }
|
||||
|
||||
ChatListItem[type="network", state="unread-message"] { foreground: #4e51ac; }
|
||||
ChatListItem[type="network", state="highlighted"] { foreground: #4e9fac; }
|
||||
ChatListItem[type="query", state="unread-message"] { foreground: #00aa7f; }
|
||||
|
||||
NickListItem[type="category"] { foreground: palette(text); }
|
||||
NickListItem[type="user"] { foreground: palette(text); }
|
||||
NickListItem[type="user", state="away"] { foreground: #a6acba; }
|
||||
|
||||
ChatLine[label="highlight"] { foreground: palette(text); background: #4e51ac; }
|
||||
ChatLine::sender[label="highlight"] { foreground: palette(text); background: #4e51ac; }
|
||||
ChatLine::timestamp[label="highlight"] { foreground: palette(text); background: #4e51ac; }
|
||||
|
||||
ChatLine::sender#plain[sender="self"] { foreground: #ffaa7f; }
|
||||
ChatLine::sender#plain[sender="0"] { foreground: #e90d7f; }
|
||||
ChatLine::sender#plain[sender="1"] { foreground: #8e55e9; }
|
||||
ChatLine::sender#plain[sender="2"] { foreground: #b30e0e; }
|
||||
ChatLine::sender#plain[sender="3"] { foreground: #17b339; }
|
||||
ChatLine::sender#plain[sender="4"] { foreground: #58afb3; }
|
||||
ChatLine::sender#plain[sender="5"] { foreground: #9d54b3; }
|
||||
ChatLine::sender#plain[sender="6"] { foreground: #b39775; }
|
||||
ChatLine::sender#plain[sender="7"] { foreground: #3176b3; }
|
||||
ChatLine::sender#plain[sender="8"] { foreground: #e90d7f; }
|
||||
ChatLine::sender#plain[sender="9"] { foreground: #8e55e9; }
|
||||
ChatLine::sender#plain[sender="a"] { foreground: #b30e0e; }
|
||||
ChatLine::sender#plain[sender="b"] { foreground: #17b339; }
|
||||
ChatLine::sender#plain[sender="c"] { foreground: #58afb3; }
|
||||
ChatLine::sender#plain[sender="d"] { foreground: #9d54b3; }
|
||||
ChatLine::sender#plain[sender="e"] { foreground: #b39775; }
|
||||
ChatLine::sender#plain[sender="f"] { foreground: #3176b3; }
|
Loading…
Reference in New Issue