Small updates

This commit is contained in:
har0ke 2021-08-27 18:50:11 +02:00
parent b41346d4e0
commit 1b38b0bd12
7 changed files with 64 additions and 10 deletions

View File

@ -1,3 +1,4 @@
xterm*saveLines: 10000000
xterm*background: black
xterm*foreground: white
xterm*faceSize: 12

View File

@ -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,
}

View File

@ -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"

13
README.md Normal file
View File

@ -0,0 +1,13 @@
# Dotfiles
## Dependencies
For i3
- network-manager-applet
- xterm
- dmenu
- i3status-rust
- ttf-font-awesome
- pauvcontrol

View File

@ -0,0 +1 @@
blacklist pcspkr

View File

@ -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