more
This commit is contained in:
parent
2f684f093a
commit
3ea09ac0c8
|
@ -1,3 +1,6 @@
|
||||||
|
window:
|
||||||
|
opacity: 0.8
|
||||||
|
|
||||||
colors:
|
colors:
|
||||||
# Default colors
|
# Default colors
|
||||||
primary:
|
primary:
|
||||||
|
|
|
@ -112,9 +112,9 @@ bindsym $mod+a focus parent
|
||||||
|
|
||||||
# Define names for default workspaces for which we configure key bindings later on.
|
# Define names for default workspaces for which we configure key bindings later on.
|
||||||
# We use variables to avoid repeating the names in multiple places.
|
# We use variables to avoid repeating the names in multiple places.
|
||||||
set $ws1 "1"
|
set $ws1 "いち"
|
||||||
set $ws2 "2"
|
set $ws2 "に"
|
||||||
set $ws3 "3"
|
set $ws3 "さん"
|
||||||
set $ws4 "4"
|
set $ws4 "4"
|
||||||
set $ws5 "5"
|
set $ws5 "5"
|
||||||
set $ws6 "6"
|
set $ws6 "6"
|
||||||
|
@ -148,9 +148,9 @@ bindsym $mod+Shift+9 move container to workspace number $ws9
|
||||||
bindsym $mod+Shift+0 move container to workspace number $ws10
|
bindsym $mod+Shift+0 move container to workspace number $ws10
|
||||||
|
|
||||||
# tryin some stuff, not sure if this is what i want
|
# tryin some stuff, not sure if this is what i want
|
||||||
workspace $ws1 output HDMI-0
|
#workspace $ws1 output HDMI-0
|
||||||
workspace $ws2 output HDMI-1
|
#workspace $ws2 output HDMI-1
|
||||||
workspace $ws3 output HDMI-1
|
#workspace $ws3 output HDMI-1
|
||||||
|
|
||||||
# reload the configuration file
|
# reload the configuration file
|
||||||
bindsym $mod+Shift+c reload
|
bindsym $mod+Shift+c reload
|
||||||
|
@ -206,11 +206,16 @@ exec_always --no-startup-id picom &
|
||||||
for_window [class=".*"] border pixel 1
|
for_window [class=".*"] border pixel 1
|
||||||
|
|
||||||
# gaps
|
# gaps
|
||||||
gaps inner 10
|
gaps inner 15
|
||||||
|
|
||||||
# messin with colors
|
# messin with colors
|
||||||
set $bd-color #ff004b
|
# set $bd-color #ff004b
|
||||||
client.focused $bd-color #111111 #ffffff $ffffff $ffffff
|
set $bd-color #1de071
|
||||||
|
|
||||||
|
# colorclass border bg text indicator child_border
|
||||||
|
client.focused $bd-color #111111 #ffffff $bd-color $bd-color
|
||||||
|
client.focused_inactive $bd-color #111111 #ffffff $bd-color #333333
|
||||||
|
client.unfocused $bd-color #111111 #ffffff $bd-color #333333
|
||||||
|
|
||||||
# lock screen
|
# lock screen
|
||||||
bindsym $mod+l exec ~/lock.sh
|
bindsym $mod+l exec ~/lock.sh
|
||||||
|
|
|
@ -117,8 +117,7 @@ fade-out-step = 0.03;
|
||||||
|
|
||||||
|
|
||||||
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
|
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
|
||||||
# inactive-opacity = 1
|
inactive-opacity = 1
|
||||||
inactive-opacity = 0.8;
|
|
||||||
|
|
||||||
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
|
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
|
||||||
# frame-opacity = 1.0
|
# frame-opacity = 1.0
|
||||||
|
@ -152,7 +151,7 @@ focus-exclude = [ "class_g = 'Cairo-clock'" ];
|
||||||
# opacity-rule = [ "80:class_g = 'URxvt'" ];
|
# opacity-rule = [ "80:class_g = 'URxvt'" ];
|
||||||
#
|
#
|
||||||
# opacity-rule = []
|
# opacity-rule = []
|
||||||
opacity-rule = [ "100:class_g = 'Firefox'"];
|
opacity-rule = [ "10:class_g = 'alacritty'"];
|
||||||
|
|
||||||
#################################
|
#################################
|
||||||
# Background-Blurring #
|
# Background-Blurring #
|
||||||
|
|
|
@ -15,4 +15,9 @@ alias more="less"
|
||||||
alias weather="curl wttr.in"
|
alias weather="curl wttr.in"
|
||||||
alias ll="ls -la"
|
alias ll="ls -la"
|
||||||
|
|
||||||
|
export PATH=/home/clint/.scripts/:$PATH
|
||||||
|
|
||||||
|
export TERMINAL=alacritty
|
||||||
|
export BROWSER=firefox
|
||||||
|
|
||||||
pfetch
|
pfetch
|
||||||
|
|
Loading…
Reference in New Issue