mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-10-12 20:41:16 +02:00
This commit is contained in:
@@ -9,7 +9,6 @@ alias ".."="cd .."
|
||||
alias "..."="cd ../.."
|
||||
alias "...."="cd ../../.."
|
||||
alias "....."="cd ../../../.."
|
||||
alias "......"="cd ../../../../.."
|
||||
|
||||
# cp
|
||||
alias cp="cp -i"
|
||||
@@ -45,7 +44,6 @@ alias mv="mv -i"
|
||||
|
||||
# pacman
|
||||
alias pac="sudo pacman"
|
||||
alias pacclean="sudo pacman -Rs $(pacman -Qtdq)"
|
||||
|
||||
# ping
|
||||
alias ping="ping -c 5"
|
||||
|
@@ -1,175 +0,0 @@
|
||||
# vim: filetype=i3
|
||||
# File originally by Luke Smith <https://lukesmith.xyz>
|
||||
|
||||
# This config file will use environmental variables such as $BROWSER and $TERMINAL.
|
||||
# You can set these variables in ~/.profile or ~/.bash_profile if you have it as below:
|
||||
#
|
||||
# export FILE="ranger"
|
||||
# export TERMINAL="st"
|
||||
|
||||
# #------Auto Start-------# #
|
||||
exec --no-startup-id owncloud
|
||||
exec --no-startup-id toggletouchpad
|
||||
|
||||
# #---Basic Definitions---# #
|
||||
for_window [class="^.*"] border pixel 1
|
||||
gaps inner 0
|
||||
gaps outer 0
|
||||
set $term --no-startup-id $TERMINAL
|
||||
set $mod Mod4
|
||||
font xft:mono 10
|
||||
|
||||
# #---Dropdown Windows---# #
|
||||
# General dropdown window traits. The order can matter.
|
||||
for_window [instance="dropdown_*"] floating enable
|
||||
for_window [class="de.uol.swp.client.ClientApp"] floating enable
|
||||
for_window [instance="dropdown_*"] move scratchpad
|
||||
for_window [instance="dropdown_*"] sticky enable
|
||||
for_window [instance="dropdown_*"] scratchpad show
|
||||
for_window [instance="dropdown_tmuxdd"] resize set 625 450
|
||||
for_window [instance="dropdown_dropdowncalc"] resize set 800 300
|
||||
for_window [instance="dropdown_tmuxdd"] border pixel 3
|
||||
for_window [instance="dropdown_dropdowncalc"] border pixel 2
|
||||
for_window [instance="dropdown_*"] move position center
|
||||
|
||||
|
||||
bar {
|
||||
font pango:mono 10
|
||||
status_command i3blocks
|
||||
position top
|
||||
mode dock
|
||||
modifier None
|
||||
colors {
|
||||
background #000000
|
||||
statusline #ffffff
|
||||
separator #333333
|
||||
#Bord #Back #Text
|
||||
focused_workspace #ffa500 #4a4a4a #ffa500
|
||||
active_workspace #ffa500 #33333 #ffa500
|
||||
inactive_workspace #ffa500 #000000 #ffa500
|
||||
urgent_workspace #ffa500 #000000 #900000
|
||||
}
|
||||
}
|
||||
client.placeholder #242424 #242424 #242424
|
||||
client.background #242424 #242424 #242424
|
||||
client.focused #4a4a4a #4a4a4a #e5e5e5 #6a6a6a
|
||||
client.unfocused #4a4a4a #222222 #aaaaaa #222222
|
||||
client.focused_inactive #4a4a4a #222222 #a9a9a9 #222222
|
||||
client.urgent #4a4a4a #4a4a4a #f7f7f7 #4a4a4a
|
||||
|
||||
|
||||
# #---Basic Bindings---# #
|
||||
bindsym $mod+Shift+Escape exec --no-startup-id prompt "Exit i3?" "i3-msg exit"
|
||||
|
||||
#bindsym $mod+Return taken by sxhkd
|
||||
|
||||
#bindym $mod+b taken by sxhkd
|
||||
bindsym $mod+Shift+b bar mode toggle
|
||||
|
||||
#bindsym $mod+c taken by sxhkd
|
||||
|
||||
bindsym $mod+Shift+d floating toggle
|
||||
|
||||
bindsym $mod+Shift+f fullscreen toggle
|
||||
|
||||
bindsym $mod+h focus left
|
||||
bindsym $mod+Shift+h move left 30
|
||||
|
||||
#bindsym $mod+i taken by sxhkd
|
||||
bindsym $mod+Shift+i exec --no-startup-id i3resize up
|
||||
|
||||
bindsym $mod+j focus down
|
||||
bindsym $mod+Shift+j move down 30
|
||||
|
||||
bindsym $mod+k focus up
|
||||
bindsym $mod+Shift+k move up 30
|
||||
|
||||
bindsym $mod+l focus right
|
||||
bindsym $mod+Shift+l move right 30
|
||||
|
||||
#bindsym $mod+m taken by sxhkd
|
||||
bindsym $mod+Shift+m move scratchpad
|
||||
|
||||
#bindsym $mod+n taken by sxhkd
|
||||
#bindsym $mod+Shift+n taken by sxhkd
|
||||
|
||||
bindsym $mod+Shift+o exec --no-startup-id i3resize right
|
||||
|
||||
#bindym $mod+p taken by sxhkd
|
||||
|
||||
bindsym $mod+q [con_id="__focused__" instance="^(?!dropdown_).*$"] kill
|
||||
bindsym $mod+Shift+q [con_id="__focused__" instance="^(?!dropdown_).*$"] exec --no-startup-id kill -9 `xdotool getwindowfocus getwindowpid`
|
||||
|
||||
#bindsym $mod+r taken by sxhkd
|
||||
#bindsym $mod+shift+r taken by sxhkd
|
||||
|
||||
#bindsym $mod+s taken by sxhkd
|
||||
|
||||
bindsym $mod+t split toggle
|
||||
|
||||
bindsym $mod+Shift+u exec --no-startup-id i3resize down
|
||||
|
||||
#bindsym $mod+x taken by sxhkd
|
||||
|
||||
bindsym $mod+Shift+z exec --no-startup-id i3resize left
|
||||
|
||||
#bindsym $mod+F5 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F6 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F7 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F8 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F9 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F10 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F11 taken by sxhkd
|
||||
|
||||
#bindsym $mod+F12 taken by sxhkd
|
||||
|
||||
|
||||
# #---Workspace Bindings---# #
|
||||
set $ws1 "1DF"
|
||||
set $ws2 "2VR"
|
||||
set $ws3 "3RS"
|
||||
set $ws4 "4RS"
|
||||
set $ws5 "5WK"
|
||||
set $ws6 "6WK"
|
||||
set $ws7 "7ME"
|
||||
set $ws8 "8CM"
|
||||
set $ws9 "9GM"
|
||||
set $ws0 "0EX"
|
||||
|
||||
# switch to workspace
|
||||
bindsym $mod+1 workspace $ws1
|
||||
bindsym $mod+2 workspace $ws2
|
||||
bindsym $mod+3 workspace $ws3
|
||||
bindsym $mod+4 workspace $ws4
|
||||
bindsym $mod+5 workspace $ws5
|
||||
bindsym $mod+6 workspace $ws6
|
||||
bindsym $mod+7 workspace $ws7
|
||||
bindsym $mod+8 workspace $ws8
|
||||
bindsym $mod+9 workspace $ws9
|
||||
bindsym $mod+0 workspace $ws0
|
||||
|
||||
# move focused container to workspace
|
||||
bindsym $mod+Shift+1 move container to workspace $ws1
|
||||
bindsym $mod+Shift+2 move container to workspace $ws2
|
||||
bindsym $mod+Shift+3 move container to workspace $ws3
|
||||
bindsym $mod+Shift+4 move container to workspace $ws4
|
||||
bindsym $mod+Shift+5 move container to workspace $ws5
|
||||
bindsym $mod+Shift+6 move container to workspace $ws6
|
||||
bindsym $mod+Shift+7 move container to workspace $ws7
|
||||
bindsym $mod+Shift+8 move container to workspace $ws8
|
||||
bindsym $mod+Shift+9 move container to workspace $ws9
|
||||
bindsym $mod+Shift+0 move container to workspace $ws0
|
||||
|
||||
for_window [class="Pinentry"] sticky enable
|
||||
for_window [class="sent"] border pixel 0px
|
||||
for_window [title="GIMP Startup"] move workspace $ws5
|
||||
for_window [class="Gimp"] move workspace $ws5
|
||||
for_window [window_role="GtkFileChooserDialog"] resize set 800 600
|
||||
for_window [window_role="GtkFileChooserDialog"] move position center
|
||||
for_window [title="Default - Wine desktop"] floating enable
|
@@ -1,39 +0,0 @@
|
||||
separator_block_width=15
|
||||
markup=pango
|
||||
|
||||
[weather]
|
||||
command=~/.local/bin/statusbar/weather
|
||||
interval=1200
|
||||
signal=5
|
||||
|
||||
[memory]
|
||||
command=~/.local/bin/statusbar/memory
|
||||
interval=30
|
||||
label=🧠
|
||||
|
||||
[cpu]
|
||||
command=~/.local/bin/statusbar/cpu
|
||||
interval=15
|
||||
label=💻
|
||||
|
||||
[volume]
|
||||
command=~/.local/bin/statusbar/volume
|
||||
interval=once
|
||||
signal=10
|
||||
|
||||
[disk]
|
||||
interval=180
|
||||
command=~/.local/bin/statusbar/disk /
|
||||
|
||||
[battery]
|
||||
command=~/.local/bin/statusbar/battery BAT0
|
||||
interval=180
|
||||
|
||||
[clock]
|
||||
command=~/.local/bin/statusbar/clock
|
||||
label=📅
|
||||
interval=30
|
||||
|
||||
[internet]
|
||||
command=~/.local/bin/statusbar/internet
|
||||
interval=10
|
@@ -1,7 +1,7 @@
|
||||
db_file "~/.config/mpd/database"
|
||||
log_file "~/.config/mpd/log"
|
||||
music_directory "~/media/music"
|
||||
playlist_directory "~/.config/mpd/playlists"
|
||||
music_directory "/media/music"
|
||||
playlist_directory "/media/playlists"
|
||||
pid_file "~/.config/mpd/pid"
|
||||
state_file "~/.config/mpd/state"
|
||||
sticker_file "~/.config/mpd/sticker.sql"
|
||||
|
@@ -99,6 +99,9 @@ autocmd FileType html inoremap ü ü
|
||||
" Compiler for languages
|
||||
map <leader>c :w! \| !compiler <c-r>%<CR>
|
||||
|
||||
" Open corresponding file (pdf/html/...)
|
||||
map <leader>p :!opout <c-r>%<CR><CR>
|
||||
|
||||
" Delete trailing whitespaces on save
|
||||
autocmd BufWritePre * %s/\s\+$//e
|
||||
|
||||
|
@@ -1,101 +0,0 @@
|
||||
## Basic binds
|
||||
#super + shift + escape taken by i3
|
||||
super + Return
|
||||
$TERMINAL
|
||||
super + b
|
||||
$BROWSER
|
||||
super + c
|
||||
code
|
||||
#super + shift + d taken by i3
|
||||
super + f
|
||||
$TERMINAL -e $FILE
|
||||
#super + shift + f taken by i3
|
||||
#super + h taken by i3
|
||||
#super + shift + h taken by i3
|
||||
super + i
|
||||
intellij-idea-ultimate-edition
|
||||
#super + shift + i taken by i3
|
||||
#super + j taken by i3
|
||||
#super + shift + j taken by i3
|
||||
#super + k taken by i3
|
||||
#super + shift + k taken by i3
|
||||
#super + l taken by i3
|
||||
#super + shift + l taken by i3
|
||||
super + m
|
||||
thunderbird
|
||||
#super + shift + m taken by i3
|
||||
super + n
|
||||
$TERMINAL -e newsboat
|
||||
super + shift + n
|
||||
i3-scratchpad-dmenu.py
|
||||
#super + shift + o taken by i3
|
||||
super + p
|
||||
$MUSIC
|
||||
#super + q taken by i3
|
||||
#super + shift + q taken by i3
|
||||
super + r
|
||||
$TERMINAL -e rtv
|
||||
super + s
|
||||
startpagesearch
|
||||
super + shift + r
|
||||
dmenu_run -c -l 20
|
||||
#super + t taken by i3
|
||||
#super + shift + u taken by i3
|
||||
super + x
|
||||
xournalpp
|
||||
#super + shift + z taken by i3
|
||||
|
||||
super + F4
|
||||
togglemonitor
|
||||
super + F5
|
||||
toggletouchpad
|
||||
super + F6
|
||||
dmenumount
|
||||
super + F7
|
||||
dmenuumount
|
||||
super + F8
|
||||
sudo -A systemctl restart NetworkManager
|
||||
super + F9
|
||||
$TERMINAL -e sudo -A nmtui
|
||||
super + F10
|
||||
prompt 'Lock computer?' "i3lock -c 222222"
|
||||
super + F11
|
||||
prompt "Reboot computer?" "sudo -A shutdown -r now"
|
||||
super + F12
|
||||
prompt "Shutdown computer?" "sudo -A shutdown -h now"
|
||||
#super + 1 taken by i3
|
||||
#super + 2 taken by i3
|
||||
#super + 3 taken by i3
|
||||
#super + 4 taken by i3
|
||||
#super + 5 taken by i3
|
||||
#super + 6 taken by i3
|
||||
#super + 7 taken by i3
|
||||
#super + 8 taken by i3
|
||||
#super + 9 taken by i3
|
||||
#super + 0 taken by i3
|
||||
#super + shift + 1 taken by i3
|
||||
#super + shift + 2 taken by i3
|
||||
#super + shift + 3 taken by i3
|
||||
#super + shift + 4 taken by i3
|
||||
#super + shift + 5 taken by i3
|
||||
#super + shift + 6 taken by i3
|
||||
#super + shift + 7 taken by i3
|
||||
#super + shift + 8 taken by i3
|
||||
#super + shift + 9 taken by i3
|
||||
#super + shift + 0 taken by i3
|
||||
|
||||
## FN combinations
|
||||
XF86Launch1
|
||||
xset dpms force off
|
||||
XF86AudioMute
|
||||
lmc m
|
||||
XF86AudioMicMute
|
||||
pactl set-source-mute 1 toggle
|
||||
XF86AudioLowerVolume
|
||||
lmc down 5
|
||||
XF86AudioRaiseVolume
|
||||
lmc up 5
|
||||
XF86MonBrightnessDown
|
||||
light -U 15
|
||||
XF86MonBrightnessUp
|
||||
light -A 15
|
@@ -8,4 +8,5 @@ xrandr --auto
|
||||
|
||||
xterm -geometry 80x24+10+10 -fn 10x20
|
||||
|
||||
exec i3
|
||||
setbg
|
||||
exec dwm
|
||||
|
@@ -1,10 +1,12 @@
|
||||
#!/bin/sh
|
||||
|
||||
setbg & # Set the background
|
||||
sxhkd & # Bind keys
|
||||
xset r rate 300 50 & # Speed xrate up
|
||||
unclutter & # Remove mouse when idle
|
||||
xcompmgr & # xcompmgr for transparency
|
||||
dunst & # dunst for notifications
|
||||
redshift & # redshift for saving your eyes
|
||||
mpd & # starts the mpd server for music
|
||||
toggletouchpad & # deactivates the touchpad
|
||||
owncloud &
|
||||
dwmbar &
|
||||
#sxhkd &
|
||||
|
Reference in New Issue
Block a user