diff --git a/.config/i3/config b/.config/i3/config index 682450c..10e6cb6 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -175,10 +175,10 @@ floating_modifier $mod bindsym $mod+Shift+q kill # change focus -bindsym $mod+j focus left -bindsym $mod+k focus down -bindsym $mod+l focus up -bindsym $mod+semicolon focus right +# bindsym $mod+j focus left +# bindsym $mod+k focus down +# bindsym $mod+l focus up +# bindsym $mod+semicolon focus right # alternatively, you can use the cursor keys: bindsym $mod+Left focus left @@ -187,10 +187,10 @@ bindsym $mod+Up focus up bindsym $mod+Right focus right # move focused window -bindsym $mod+Shift+j move left -bindsym $mod+Shift+k move down -bindsym $mod+Shift+l move up -bindsym $mod+Shift+semicolon move right +# bindsym $mod+Shift+j move left +# bindsym $mod+Shift+k move down +# bindsym $mod+Shift+l move up +# bindsym $mod+Shift+semicolon move right # alternatively, you can use the cursor keys: bindsym $mod+Shift+Left move left @@ -343,8 +343,10 @@ bindsym Shift+$mod+p exec /home/chodak/.screenlayout/edp.sh # bindsym $mod+Shift+c exec rfreload # suspend -bindsym $mod+Escape exec systemctl suspend +bindsym $mod+Escape exec i3lock -c 000000 && systemctl suspend +# lock +bindsym $mod+Shift+l exec i3lock -c 000000 # regenerate i3 configuration file and restart i3 (preserves your layout/session, can be used to upgrade i3) # bindsym $mod+Shift+r exec rfreload --restart @@ -528,6 +530,11 @@ for_window [class="gsimplecal"] floating enable for_window [class="Osmo"] floating enable for_window [class="Skype"] floating enable for_window [class="Yad"] floating enable + +for_window [class="SMiKO" instance="^SMiKO$"] floating enable +for_window [class="SMiKO" instance="SMiKO"] floating enable + + ################################################################# # /profiles/current/config.d/90-exec: diff --git a/.config/i3/scripts/autoapp b/.config/i3/scripts/autoapp index 2ec6057..373d92e 100755 --- a/.config/i3/scripts/autoapp +++ b/.config/i3/scripts/autoapp @@ -2,7 +2,7 @@ import subprocess, json, os -mapFile = open(os.environ['HOME'] + '/.config/ratflow/profiles/current/autoapp.conf', 'r'); +mapFile = open(os.environ['HOME'] + '/.config/i3/autoapp.conf', 'r'); map = json.loads(mapFile.read()); diff --git a/.config/nvim/lazy-lock.json b/.config/nvim/lazy-lock.json index 31921fa..eaa2814 100644 --- a/.config/nvim/lazy-lock.json +++ b/.config/nvim/lazy-lock.json @@ -4,15 +4,15 @@ "blink.cmp": { "branch": "main", "commit": "78336bc89ee5365633bcf754d93df01678b5c08f" }, "bufferline.nvim": { "branch": "main", "commit": "655133c3b4c3e5e05ec549b9f8cc2894ac6f51b3" }, "catppuccin": { "branch": "main", "commit": "8edd468af4d63212b84d69b2ddb5ffc9023ef5eb" }, - "conform.nvim": { "branch": "master", "commit": "18aeab3d63d350dcf44d64c462cc489a3412af40" }, + "conform.nvim": { "branch": "master", "commit": "619363c30309d29ffa631e67c8183f2a72caa373" }, "diffview.nvim": { "branch": "main", "commit": "4516612fe98ff56ae0415a259ff6361a89419b0a" }, "dotenv.nvim": { "branch": "main", "commit": "7d516e9293c6e3ac21830fb10a4e8674c02747c6" }, - "dressing.nvim": { "branch": "master", "commit": "2d7c2db2507fa3c4956142ee607431ddb2828639" }, "flash.nvim": { "branch": "main", "commit": "fcea7ff883235d9024dc41e638f164a450c14ca2" }, "friendly-snippets": { "branch": "main", "commit": "6cd7280adead7f586db6fccbd15d2cac7e2188b9" }, "gitsigns.nvim": { "branch": "main", "commit": "dd3f588bacbeb041be6facf1742e42097f62165d" }, "grug-far.nvim": { "branch": "main", "commit": "5506c2f59dc9ab2ed6c233585412b24d31d51521" }, - "hybrid-theme": { "branch": "main", "commit": "e09de613941e761e2dd75901a65d54979f369877" }, + "hybrid-theme": { "branch": "main", "commit": "b131110fbe63481d7d263c71982206a70a04d236" }, + "image.nvim": { "branch": "master", "commit": "44e07129cd0ea0c60afa7a1991d35b5765b51a6b" }, "indent-blankline.nvim": { "branch": "master", "commit": "d28a3f70721c79e3c5f6693057ae929f3d9c0a03" }, "just-runner.nvim": { "branch": "main", "commit": "f29d405aa828900df242600720a2b0e57261489f" }, "lazy.nvim": { "branch": "main", "commit": "85c7ff3711b730b4030d03144f6db6375044ae82" }, @@ -33,7 +33,6 @@ "nvim-ts-autotag": { "branch": "main", "commit": "88c1453db4ba7dd24131086fe51fdf74e587d275" }, "persistence.nvim": { "branch": "main", "commit": "b20b2a7887bd39c1a356980b45e03250f3dce49c" }, "plenary.nvim": { "branch": "master", "commit": "74b06c6c75e4eeb3108ec01852001636d85a932b" }, - "render-markdown.nvim": { "branch": "main", "commit": "629eb9533ec989d9d5c6cab8f3ad5372422c24e0" }, "snacks.nvim": { "branch": "main", "commit": "0770753c88228f7f15449c6a5b242e3f7cd0d71c" }, "todo-comments.nvim": { "branch": "main", "commit": "31e3c38ce9b29781e4422fc0322eb0a21f4e8668" }, "tokyonight.nvim": { "branch": "main", "commit": "cdc07ac78467a233fd62c493de29a17e0cf2b2b6" }, diff --git a/.zshrc b/.zshrc index 9aa1175..a7643e4 100644 --- a/.zshrc +++ b/.zshrc @@ -187,6 +187,7 @@ alias git-config-ch='git config user.name "chodak166" && git config user.email " alias config='/usr/bin/git --git-dir=$HOME/.dotfiles.git/ --work-tree=$HOME' alias v='nvim' alias se=sudoedit +alias trb-smb-mount='sudo mount -t cifs -o uid=`id -u chodylal` -o gid=`id -g chodylal` -o user=chodylal //trb-fs-p01/repozytorium/ /home/chodylal/smb' config config status.showUntrackedFiles no