Commit 4bea58d9 authored by Jay Ta'ala's avatar Jay Ta'ala
Browse files

Themes update. Also centralised setting parent container names.

parent bbd22b9e
...@@ -3,7 +3,7 @@ conky.config = { ...@@ -3,7 +3,7 @@ conky.config = {
background = true, background = true,
cpu_avg_samples = 2, cpu_avg_samples = 2,
default_color = 'F9FAF9', default_color = 'F9FAF9',
color2 = '8f5f95', color2 = '4e9a06',
double_buffer = true, double_buffer = true,
font = 'Bitstream Vera Sans:size=8', font = 'Bitstream Vera Sans:size=8',
draw_shades = false, draw_shades = false,
......
...@@ -2,7 +2,7 @@ conky.config = { ...@@ -2,7 +2,7 @@ conky.config = {
alignment = 'bottom_left', alignment = 'bottom_left',
background = true, background = true,
cpu_avg_samples = 2, cpu_avg_samples = 2,
default_color = '8f5f95', default_color = '4e9a06',
color2 = 'F9FAF9', color2 = 'F9FAF9',
double_buffer = true, double_buffer = true,
font = 'Bitstream Vera Sans:size=8', font = 'Bitstream Vera Sans:size=8',
......
...@@ -12,24 +12,30 @@ set $border_normal border normal 3 ...@@ -12,24 +12,30 @@ set $border_normal border normal 3
set $i3inputfont \\"-*-*-*-*-*-*-24-*-*-*-*-*-*-*\\" set $i3inputfont \\"-*-*-*-*-*-*-24-*-*-*-*-*-*-*\\"
# Theme options (comment/uncomment theme group) # Theme options (comment/uncomment theme group)
## Theme 1 "Paradise Pink" ## Theme 1 "paradise pink"
#set $accent-bg #d64161 #set $accent-bg #d64161
#set $accent-txt #F9FAF9 #set $accent-txt #F9FAF9
##set $accent-txt #363636
#set $indicator #109648 #set $indicator #109648
# Theme 2 "tmux" # Theme 2 "tmux"
#set $accent-bg #4e9a06 set $accent-bg #4e9a06
set $accent-txt #F9FAF9
set $indicator #d64161
# Theme 3 "french lilac"
#set $accent-bg #8f5f95
#set $accent-txt #F9FAF9 #set $accent-txt #F9FAF9
#set $indicator #d64161 #set $indicator #109648
# Theme 3 "plurple" # Theme 4 "cardinal"
set $accent-bg #8f5f95 #set $accent-bg #ba263f
set $accent-txt #F9FAF9 #set $accent-txt #F9FAF9
set $indicator #109648 #set $indicator #109648
# Theme 4 "green" # Theme 5 "illuminating emerald"
#set $accent-bg #28d37d #set $accent-bg #00916e
#set $accent-txt #363636 #set $accent-txt #F9FAF9
#set $indicator #109648 #set $indicator #109648
# set other colors # set other colors
...@@ -101,7 +107,7 @@ set $picom_start "pkill picom; sleep 1; picom -b" ...@@ -101,7 +107,7 @@ set $picom_start "pkill picom; sleep 1; picom -b"
exec_always --no-startup-id $picom_start exec_always --no-startup-id $picom_start
exec_always --no-startup-id "pkill conky; sleep 0.5; conky -c ~/.config/conky; conky -c ~/.config/conky_shortcuts" exec_always --no-startup-id "pkill conky; sleep 0.5; conky -c ~/.config/conky; conky -c ~/.config/conky_shortcuts"
exec_always --no-startup-id i3-focus-last server exec_always --no-startup-id i3-focus-last server
exec_always --no-startup-id i3wsr --config ~/.i3/i3wsr.toml #exec_always --no-startup-id i3wsr --config ~/.i3/i3wsr.toml
# picom (compositor) # picom (compositor)
bindsym $mod+t exec --no-startup-id $picom_start bindsym $mod+t exec --no-startup-id $picom_start
...@@ -214,9 +220,9 @@ bindsym $mod+g exec "i3-input -f $i3inputfont -l 1 -P \\"Goto Mark: \\" -F '[con ...@@ -214,9 +220,9 @@ bindsym $mod+g exec "i3-input -f $i3inputfont -l 1 -P \\"Goto Mark: \\" -F '[con
workspace_auto_back_and_forth yes workspace_auto_back_and_forth yes
# renaming container # renaming container
bindsym $mod+slash exec "i3-input -f $i3inputfont -P \\"Change Title: \\" -F 'title_format \\"<span><b><tt>%s:</tt></b>%title</span>\\"'" bindsym $mod+slash exec $namechildcon
# sets back to default i3 container title # sets back to default i3 container title
bindsym $mod+$mod_next+slash title_format " %title" bindsym $mod+$mod_next+slash focus parent; title_format " %title"; focus child
# container layouts # container layouts
bindsym $mod_next+w layout tabbed bindsym $mod_next+w layout tabbed
...@@ -225,10 +231,11 @@ bindsym $mod_next+e layout splitv ...@@ -225,10 +231,11 @@ bindsym $mod_next+e layout splitv
bindsym $mod_next+s layout stacking bindsym $mod_next+s layout stacking
# child container layout bindsyms (creates a child container from currently select window) # child container layout bindsyms (creates a child container from currently select window)
bindsym $mod+ctrl+q split h set $namechildcon "i3-msg focus parent; i3-input -f \\"-*-*-*-*-*-*-24-*-*-*-*-*-*-*\\" -P \\"Name child container: \\" -F 'title_format \\"<span><b>%s</b>%title</span>\\"'; i3-msg focus child"
bindsym $mod+ctrl+e split v bindsym $mod+ctrl+q split h; exec $namechildcon
bindsym $mod+ctrl+w split h; layout tabbed bindsym $mod+ctrl+e split v; exec $namechildcon
bindsym $mod+ctrl+s split h; layout stacked bindsym $mod+ctrl+w split h; layout tabbed; exec $namechildcon
bindsym $mod+ctrl+s split h; layout stacked; exec $namechildcon
# toggle fullscreen mode for the focused container # toggle fullscreen mode for the focused container
bindsym $mod+f fullscreen toggle bindsym $mod+f fullscreen toggle
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment