Update: Changed date fromat in screenshot script, removed .Xresources, added more shortcuts in i3.

This commit is contained in:
Keyitdev
2025-08-11 13:10:20 +02:00
parent 1c0f9b4b1a
commit 9af332b41c
5 changed files with 43 additions and 30 deletions
-15
View File
@@ -1,15 +0,0 @@
*.background: #1b1b25
*.foreground: #dedede
*.transparent: #0000003f
*.sep: #F8F8F2
*.white: #eeffff
*.black: #15121c
*.red: #cb5760
*.green: #999f63
*.yellow: #d4a067
*.blue: #6c90a8
*.purple: #776690
*.cyan: #528a9b
*.pink: #ffa8c5
*.orange: #c87c3e
+7
View File
@@ -52,9 +52,16 @@ bindsym $mod+z exec --no-startup-id alacritty -e ncmpcpp
bindsym $mod+x exec --no-startup-id rofi-powermenu
bindsym $mod+c exec --no-startup-id rofi-screenshot
bindsym $mod+i exec lock
bindsym $mod+b move workspace to output right
bindsym $mod+n exec xrandr --auto --output eDP-1 --mode 1920x1080 --right-of HDMI-1 && i3-msg restart &
bindsym $mod+m exec xrandr --auto --output HDMI-1 --off && i3-msg restart &
bindsym ctrl + F1 exec --no-startup-id i3-sensible-terminal
bindsym ctrl + F2 exec --no-startup-id kitty
bindsym ctrl + F3 exec --no-startup-id dmenu_run
bindsym ctrl + F4 exec --no-startup-id killall picom
# bindsym $mod+d exec --no-startup-id dmenu_run
+32 -14
View File
@@ -1,17 +1,35 @@
[color]
background = ${xrdb:background}
foreground = ${xrdb:foreground}
transparent = ${xrdb:transparent}
sep = ${xrdb:sep}
background = #1b1b25
foreground = #dedede
transparent = #0000003f
sep = #F8F8F2
white = ${xrdb:white}
black = ${xrdb:black}
red = ${xrdb:red}
green = ${xrdb:green}
yellow = ${xrdb:yellow}
blue = ${xrdb:blue}
purple = ${xrdb:purple}
cyan = ${xrdb:cyan}
pink = ${xrdb:pink}
orange = ${xrdb:orange}
white = #eeffff
black = #15121c
red = #cb5760
green = #999f63
yellow = #d4a067
blue = #6c90a8
purple = #776690
cyan = #528a9b
pink = #ffa8c5
orange = #c87c3e
; [color]
; background = ${xrdb:background}
; foreground = ${xrdb:foreground}
; transparent = ${xrdb:transparent}
; sep = ${xrdb:sep}
; white = ${xrdb:white}
; black = ${xrdb:black}
; red = ${xrdb:red}
; green = ${xrdb:green}
; yellow = ${xrdb:yellow}
; blue = ${xrdb:blue}
; purple = ${xrdb:purple}
; cyan = ${xrdb:cyan}
; pink = ${xrdb:pink}
; orange = ${xrdb:orange}
+2
View File
@@ -83,6 +83,7 @@ alias c="clear" # I know about ctrl l etc.
alias g="git"
alias py="python3"
alias nv="nvim"
alias ff="fastfetch"
alias h="history|grep"
alias help="cat ~/.zshrc | less"
@@ -94,3 +95,4 @@ alias logout="killall -KILL -u $USER"
alias nemo.="nemo ."
alias files.="files ."
alias code.="code ."
alias kilall="killall"
+2 -1
View File
@@ -9,7 +9,8 @@ mkdir -p "$screenshot_directory"
mkdir -p "$videos_directory"
mkdir -p "$audio_directory"
date=$(date '+%d-%m-%Y-%H-%M-%S')
# date=$(date '+%d-%m-%Y-%H-%M-%S') #10-08-2025-18-53-58
date=$(date '+%Y-%m-%d_%H-%M-%S') #2025-08-10_18-53-58
screen_resolution="$(xdpyinfo | grep dimensions | sed -r 's/^[^0-9]*([0-9]+x[0-9]+).*$/\1/')"
microphone="$(pacmd list-sources | grep -E '^\s+name: .*alsa_input' | cut -c 8- | sed 's/[<,>]//g')"
desktop="$(pacmd list-sources | grep -E '^\s+name: .*alsa_output' | cut -c 8- | sed 's/[<,>]//g')"