colors updated

This commit is contained in:
2024-11-13 21:34:25 -05:00
parent b2a3958157
commit 137e40df68
6 changed files with 67 additions and 20 deletions
+53
View File
@@ -0,0 +1,53 @@
#
# ~/.bashrc
#
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
# uncomment for a colored prompt, if the terminal has the capability; turned
# off by default to not distract the user: the focus in a terminal window
# should be on the output of commands, not on the prompt
force_color_prompt=yes
if [ -n "$force_color_prompt" ]; then
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
# We have color support; assume it's compliant with Ecma-48
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
# a case would tend to support setf rather than setaf.)
color_prompt=yes
else
color_prompt=
fi
fi
if [ "$color_prompt" = yes ]; then
PS1='\[\033[0;37m\]--[\t]--\n\u in \[\033[01;32m\]\w\[\033[0;37m\]\$\[\033[0;00m\] '
else
PS1='[\u@\h \W]\$ '
fi
unset color_prompt force_color_prompt
# enable color support of ls and also add handy aliases
if [ -x /usr/bin/dircolors ]; then
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
alias l='ls'
alias ls='ls -l --color=auto'
alias la='ls -la --color=auto'
alias grep='grep --color=auto'
#alias dir='dir --color=auto'
#alias vdir='vdir --color=auto'
#alias grep='grep --color=auto'
#alias fgrep='fgrep --color=auto'
#alias egrep='egrep --color=auto'
fi
alias rm='rm -i'
export PATH=$PATH:/home/slime/Scripts
# Created by `pipx` on 2024-09-02 22:36:15
export PATH="$PATH:/home/slime/.local/bin"
BIN
View File
Binary file not shown.
Executable → Regular
View File
Executable → Regular
+9 -15
View File
@@ -9,15 +9,6 @@ set $mod Mod4
# is used in the bar {} block below. # is used in the bar {} block below.
font pango:Source Code Pro 16 font pango:Source Code Pro 16
# Start XDG autostart .desktop files using dex. See also
# https://wiki.archlinux.org/index.php/XDG_Autostart
# exec --no-startup-id dex --autostart --environment i3
exec --no-startup-id i3-msg 'workspace 0; exec --no-startup-id conky; workspace 0'
# The combination of xss-lock, nm-applet and pactl is a popular choice, so
# they are included here as an example. Modify as you see fit.
# Use pactl to adjust volume in PulseAudio. # Use pactl to adjust volume in PulseAudio.
set $refresh_i3status killall -SIGUSR1 i3status set $refresh_i3status killall -SIGUSR1 i3status
bindsym XF86AudioRaiseVolume exec --no-startup-id wpctl set-volume 50 5%+ && pkill -SIGRTMIN+10 i3blocks bindsym XF86AudioRaiseVolume exec --no-startup-id wpctl set-volume 50 5%+ && pkill -SIGRTMIN+10 i3blocks
@@ -105,7 +96,7 @@ set $ws9 "9"
set $ws10 "0:  " set $ws10 "0:  "
workspace $ws10 output "Screen 0" # workspace $ws10 output "Screen 0"
# switch to workspace # switch to workspace
bindsym $mod+1 workspace number $ws1 bindsym $mod+1 workspace number $ws1
@@ -172,8 +163,8 @@ bindsym $mod+r mode "resize"
# Color variables # Color variables
#set $bg-color #2f343f #set $bg-color #2f343f
set $bg-color #092d5f set $bg-color #0f2443
set $inactive-bg-color #092d5f set $inactive-bg-color #0f2443
#set $text-color #c0caf5 #set $text-color #c0caf5
set $text-color #e5c2be set $text-color #e5c2be
set $inactive-text-color #676E7D set $inactive-text-color #676E7D
@@ -196,6 +187,11 @@ bar {
} }
} }
# Compositor
# exec --no-startup-id picom -c
# Autostart
exec --no-startup-id i3-msg 'workspace number $ws10; exec --no-startup-id conky; workspace number $ws10'
# Pape # Pape
exec_always --no-startup-id feh --bg-scale ~/Pictures/papes/Oymyakon_forests.jpg exec_always --no-startup-id feh --bg-scale ~/Pictures/papes/Oymyakon_forests.jpg
@@ -206,7 +202,7 @@ assign [class="WebCord"] $ws3
assign [class="Conky"] $ws10 assign [class="Conky"] $ws10
assign [class="steam"] $ws4 assign [class="steam"] $ws4
for_window [class="WebCord"] floating enable for_window [class="Conky"] floating enable
# Borders # Borders
default_border pixel 2 default_border pixel 2
@@ -222,8 +218,6 @@ client.unfocused $inactive-win-bord $inactive-bg-color $inactive-text-co
client.focused_inactive $inactive-bg-color $inactive-bg-color $inactive-text-color #00ff00 client.focused_inactive $inactive-bg-color $inactive-bg-color $inactive-text-color #00ff00
client.urgent $urgent-bg-color $urgent-bg-color $text-color #00ff00 client.urgent $urgent-bg-color $urgent-bg-color $text-color #00ff00
# Sreen brightness controls # Sreen brightness controls
bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set +1% && pkill -SIGRTMIN+11 i3blocks bindsym XF86MonBrightnessUp exec --no-startup-id brightnessctl set +1% && pkill -SIGRTMIN+11 i3blocks
bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 1%- && pkill -SIGRTMIN+11 i3blocks bindsym XF86MonBrightnessDown exec --no-startup-id brightnessctl set 1%- && pkill -SIGRTMIN+11 i3blocks
+3 -3
View File
@@ -1,9 +1,9 @@
* { * {
font: "IBM Plex Mono 10"; font: "IBM Plex Mono 10";
bg0 : #092d5f; bg0 : #0f2443;
bg1 : #092d5f; bg1 : #0f2443;
bg2 : #092d5f; bg2 : #0f2443;
fg0 : #e5c2be; fg0 : #e5c2be;
fg1 : #c0caf5; fg1 : #c0caf5;
fg2 : #a9b1d6; fg2 : #a9b1d6;
+1 -1
View File
@@ -1,6 +1,6 @@
[sakura] [sakura]
colorset1_fore=#e5c2be colorset1_fore=#e5c2be
colorset1_back=rgba(9,45,95,1) colorset1_back=#0f2443
colorset1_curs=rgb(255,255,255) colorset1_curs=rgb(255,255,255)
colorset1_scheme=0 colorset1_scheme=0
colorset1_key=F1 colorset1_key=F1