aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorclarkzjw <[email protected]>2023-02-19 14:09:25 -0800
committerclarkzjw <[email protected]>2023-02-19 14:09:25 -0800
commit21c33508f4304a8354269532a53481aa5c5df815 (patch)
tree3ac1870495ed6867b2aa36d84ad29a11ec2b5c7d
parent0b64dd7ee70b3529dfbde1592aa2ec9aa5edb271 (diff)
downloaddotfiles-21c33508f4304a8354269532a53481aa5c5df815.tar.gz
i3: move i3bar to top
-rw-r--r--dot_config/autorandr/postswitch.d/executable_nitrogen-restore3
-rw-r--r--dot_config/flameshot/flameshot.ini2
-rw-r--r--dot_config/i3/config28
-rw-r--r--dot_zshrc4
-rw-r--r--private_dot_local/share/private_applications/mimeinfo.cache6
5 files changed, 28 insertions, 15 deletions
diff --git a/dot_config/autorandr/postswitch.d/executable_nitrogen-restore b/dot_config/autorandr/postswitch.d/executable_nitrogen-restore
new file mode 100644
index 0000000..b492613
--- /dev/null
+++ b/dot_config/autorandr/postswitch.d/executable_nitrogen-restore
@@ -0,0 +1,3 @@
1#!/bin/bash
2sleep 2
3nitrogen --restore
diff --git a/dot_config/flameshot/flameshot.ini b/dot_config/flameshot/flameshot.ini
index 56431cb..5223e51 100644
--- a/dot_config/flameshot/flameshot.ini
+++ b/dot_config/flameshot/flameshot.ini
@@ -1,7 +1,7 @@
1[General] 1[General]
2contrastOpacity=188 2contrastOpacity=188
3copyOnDoubleClick=true 3copyOnDoubleClick=true
4drawColor=#f5f3f5 4drawColor=#ffffff
5filenamePattern=Snipaste_%F_%H-%M-%S 5filenamePattern=Snipaste_%F_%H-%M-%S
6saveAfterCopy=true 6saveAfterCopy=true
7saveAsFileExtension=png 7saveAsFileExtension=png
diff --git a/dot_config/i3/config b/dot_config/i3/config
index d4c96b9..547f848 100644
--- a/dot_config/i3/config
+++ b/dot_config/i3/config
@@ -25,7 +25,7 @@
25# is used in the bar {} block below. 25# is used in the bar {} block below.
26# This font is widely installed, provides lots of unicode glyphs, right-to-left 26# This font is widely installed, provides lots of unicode glyphs, right-to-left
27# text rendering and scalability on retina/hidpi displays (thanks to pango). 27# text rendering and scalability on retina/hidpi displays (thanks to pango).
28font pango: Noto Sans Regular 11 28font pango: Noto Sans Regular 14
29 29
30# set the mod key to the winkey: 30# set the mod key to the winkey:
31set $mod Mod4 31set $mod Mod4
@@ -102,18 +102,6 @@ bindsym $mod+Shift+9 move container to workspace $ws9
102bindsym $mod+Shift+0 move container to workspace $ws10 102bindsym $mod+Shift+0 move container to workspace $ws10
103 103
104# move focused container to workspace with numpad keys 104# move focused container to workspace with numpad keys
105bindcode $mod+Shift+Mod2+87 move container to workspace $ws1
106bindcode $mod+Shift+Mod2+88 move container to workspace $ws2
107bindcode $mod+Shift+Mod2+89 move container to workspace $ws3
108bindcode $mod+Shift+Mod2+83 move container to workspace $ws4
109bindcode $mod+Shift+Mod2+84 move container to workspace $ws5
110bindcode $mod+Shift+Mod2+85 move container to workspace $ws6
111bindcode $mod+Shift+Mod2+79 move container to workspace $ws7
112bindcode $mod+Shift+Mod2+80 move container to workspace $ws8
113bindcode $mod+Shift+Mod2+81 move container to workspace $ws9
114bindcode $mod+Shift+Mod2+90 move container to workspace $ws10
115
116# move focused container to workspace with numpad keys
117bindcode $mod+Shift+87 move container to workspace $ws1 105bindcode $mod+Shift+87 move container to workspace $ws1
118bindcode $mod+Shift+88 move container to workspace $ws2 106bindcode $mod+Shift+88 move container to workspace $ws2
119bindcode $mod+Shift+89 move container to workspace $ws3 107bindcode $mod+Shift+89 move container to workspace $ws3
@@ -125,6 +113,18 @@ bindcode $mod+Shift+80 move container to workspace $ws8
125bindcode $mod+Shift+81 move container to workspace $ws9 113bindcode $mod+Shift+81 move container to workspace $ws9
126bindcode $mod+Shift+90 move container to workspace $ws10 114bindcode $mod+Shift+90 move container to workspace $ws10
127 115
116# move focused container to workspace with numlock numpad keys
117bindcode $mod+Shift+Mod2+87 move container to workspace $ws1
118bindcode $mod+Shift+Mod2+88 move container to workspace $ws2
119bindcode $mod+Shift+Mod2+89 move container to workspace $ws3
120bindcode $mod+Shift+Mod2+83 move container to workspace $ws4
121bindcode $mod+Shift+Mod2+84 move container to workspace $ws5
122bindcode $mod+Shift+Mod2+85 move container to workspace $ws6
123bindcode $mod+Shift+Mod2+79 move container to workspace $ws7
124bindcode $mod+Shift+Mod2+80 move container to workspace $ws8
125bindcode $mod+Shift+Mod2+81 move container to workspace $ws9
126bindcode $mod+Shift+Mod2+90 move container to workspace $ws10
127
128# resize window (you can also use the mouse for that): 128# resize window (you can also use the mouse for that):
129mode "resize" { 129mode "resize" {
130 bindsym h resize shrink width 10 px or 10 ppt 130 bindsym h resize shrink width 10 px or 10 ppt
@@ -461,7 +461,7 @@ bar {
461 font pango: Noto Sans Regular 16 461 font pango: Noto Sans Regular 16
462 i3bar_command i3bar 462 i3bar_command i3bar
463 status_command i3blocks -c ~/.config/i3/i3blocks.conf 463 status_command i3blocks -c ~/.config/i3/i3blocks.conf
464 position bottom 464 position top
465 465
466 output eDP-1 466 output eDP-1
467 output DP-3 467 output DP-3
diff --git a/dot_zshrc b/dot_zshrc
index 17758f0..3f30d82 100644
--- a/dot_zshrc
+++ b/dot_zshrc
@@ -143,4 +143,8 @@ alias xc="xclip -selection clip"
143alias ledger="vim ~/Documents/code/Ledger/year/`date +%Y`/`date +%Y%m`.beancount" 143alias ledger="vim ~/Documents/code/Ledger/year/`date +%Y`/`date +%Y%m`.beancount"
144alias vimrc="vim ~/.vimrc" 144alias vimrc="vim ~/.vimrc"
145 145
146export PYENV_ROOT="$HOME/.pyenv"
147command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"
148eval "$(pyenv init -)"
149
146eval "$(lua /home/clarkzjw/Documents/code/z.lua/z.lua --init zsh)" 150eval "$(lua /home/clarkzjw/Documents/code/z.lua/z.lua --init zsh)"
diff --git a/private_dot_local/share/private_applications/mimeinfo.cache b/private_dot_local/share/private_applications/mimeinfo.cache
index 2ec3be4..cfd7602 100644
--- a/private_dot_local/share/private_applications/mimeinfo.cache
+++ b/private_dot_local/share/private_applications/mimeinfo.cache
@@ -1,6 +1,12 @@
1[MIME Cache] 1[MIME Cache]
2application/x-code-workspace=code.desktop; 2application/x-code-workspace=code.desktop;
3application/x-remmina=org.remmina.Remmina.desktop;
3inode/directory=code.desktop;thunar.desktop; 4inode/directory=code.desktop;thunar.desktop;
4text/plain=code.desktop;vim.desktop; 5text/plain=code.desktop;vim.desktop;
5x-scheme-handler/jetbrains=jetbrains-toolbox.desktop; 6x-scheme-handler/jetbrains=jetbrains-toolbox.desktop;
6x-scheme-handler/logseq=logseq-desktop.desktop; 7x-scheme-handler/logseq=logseq-desktop.desktop;
8x-scheme-handler/rdp=org.remmina.Remmina.desktop;
9x-scheme-handler/remmina=org.remmina.Remmina.desktop;
10x-scheme-handler/spice=org.remmina.Remmina.desktop;
11x-scheme-handler/ssh=org.remmina.Remmina.desktop;
12x-scheme-handler/vnc=org.remmina.Remmina.desktop;
Powered by cgit v1.2.3 (git 2.41.0)