diff --git a/.Xresources b/.Xresources index 3c8f86c..1581564 100644 --- a/.Xresources +++ b/.Xresources @@ -1,3 +1,4 @@ +xterm*saveLines: 10000000 xterm*background: black xterm*foreground: white xterm*faceSize: 12 diff --git a/vscode/keybindings.json b/.config/Code/User/keybindings.json similarity index 100% rename from vscode/keybindings.json rename to .config/Code/User/keybindings.json diff --git a/vscode/settings.json b/.config/Code/User/settings.json similarity index 85% rename from vscode/settings.json rename to .config/Code/User/settings.json index 32c5525..19996a6 100644 --- a/vscode/settings.json +++ b/.config/Code/User/settings.json @@ -31,12 +31,20 @@ "C/C++ Include Guard.Macro Type": "Filepath", "cSpell.userWords": [ "avtp", + "clkd", "csrcs", + "ieciidc", + "iidc", "interruptible", "irqsave", + "mediats", + "mtap", "printk", "rtcp", - "ssrc" + "ssrc", + "stap", + "tclient", + "tscode" ], "files.exclude": { "**/.history/**": true, @@ -47,7 +55,7 @@ }, "workbench.editorAssociations": [ { - "viewType": "jupyter.notebook.ipynb", + "viewType": "jupyter-notebook", "filenamePattern": "*.ipynb" } ], @@ -56,5 +64,6 @@ 80, 120 ], "window.zoomLevel": 1, - "editor.detectIndentation": false, + "C_Cpp.loggingLevel": "Information", + "editor.tabSize": 8, } \ No newline at end of file diff --git a/.config/i3/config b/.config/i3/config index 7d25749..c71cea2 100644 --- a/.config/i3/config +++ b/.config/i3/config @@ -125,18 +125,22 @@ set $ws10 "10" # EDITORS +assign [class="code"] $ws2 +assign [class="Code"] $ws2 # WEB assign [class="firefox"] $ws3 # CHAT assign [class="TelegramDesktop"] $ws8 assign [class="Thunderbird"] $ws8 +for_window [class="linphone"] move container to workspace $ws8 +for_window [class="Gajim"] move container to workspace $ws8 # MEDIA assign [title="Chromium"] $ws9 -for_window [class="Spotify"] move container to workspace $ws9 -for_window [class="Spotify"] layout stacked -for_window [class="Chromium"] layout stacked +for_window [class="Chromium"] move container to workspace $ws9 +# for_window [title="Spotify – Web Player"] layout stacked +# for_window [class="Chromium"] layout stacked exec --no-startup-id telegram-desktop exec --no-startup-id thunderbird @@ -171,6 +175,10 @@ bindsym $mod+Shift+8 move container to workspace number $ws8 bindsym $mod+Shift+9 move container to workspace number $ws9 bindsym $mod+Shift+0 move container to workspace number $ws10 + +bindsym $mod+Ctrl+right move workspace to output right +bindsym $mod+Tab move workspace to output left + # reload the configuration file bindsym $mod+Shift+c reload # restart i3 inplace (preserves your layout/session, can be used to upgrade i3) @@ -217,9 +225,9 @@ mode "exit: [l]ogout, [r]eboot, [s]hutdown" { bindsym l exec i3-msg exit - bindsym r exec systemctl reboot + bindsym r exec shutdown -r - bindsym s exec systemctl shutdown + bindsym s exec shutdown -h 0 bindsym Escape mode "default" diff --git a/README.md b/README.md new file mode 100644 index 0000000..46b4a26 --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# Dotfiles + + +## Dependencies + +For i3 +- network-manager-applet +- xterm +- dmenu +- i3status-rust +- ttf-font-awesome +- pauvcontrol + diff --git a/etc/modprobe.d/nobeep.conf b/etc/modprobe.d/nobeep.conf new file mode 100644 index 0000000..b46792e --- /dev/null +++ b/etc/modprobe.d/nobeep.conf @@ -0,0 +1 @@ +blacklist pcspkr diff --git a/install.sh b/install.sh index 3662fc6..a41ff40 100755 --- a/install.sh +++ b/install.sh @@ -30,5 +30,27 @@ link_with_bkp() { ln -s $SRC $DEST } -link_with_bkp $SCRIPT_DIR/vscode/keybindings.json ~/.config/Code/User -link_with_bkp $SCRIPT_DIR/vscode/settings.json ~/.config/Code/User +files="\ + .config/i3/config \ + .config/i3status-rust/config.toml \ + .config/i3status-rust/togglemute.sh \ + .config/i3status-rust/volumectl.sh \ + .config/Code/User/settings.json \ + .config/Code/User/keybindings.json \ + .Xmodmap \ + .Xresources \ + .xinitrc \ + etc/modprobe.d/nobeep.conf:/" + + +for f in $files; do + BASE="$HOME/" + if [[ "$f" =~ ":" ]]; then + BASE=$(echo "$f" | cut -f2 -d:) + f=$(echo "$f" | cut -f1 -d:) + fi + dir="$BASE$(dirname $f)" + mkdir -p "$dir" + link_with_bkp $SCRIPT_DIR/$f $BASE$f +done +