Compare commits
4 Commits
0135771237
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
| ada0604178 | |||
| 85c0cd8691 | |||
| 1fdbf50a02 | |||
| 75b7c1f998 |
@@ -168,8 +168,8 @@ bindsym $mod+o move workspace to output up
|
|||||||
bindsym $mod+p move workspace to output right
|
bindsym $mod+p move workspace to output right
|
||||||
|
|
||||||
# take screenshots
|
# take screenshots
|
||||||
bindsym $mod+s exec --no-startup-id maim -suo | xclip -selection clipboard -t image/png
|
bindsym $mod+s exec --no-startup-id bash x11-screenshot.sh --clipboard
|
||||||
bindsym $mod+Shift+s exec --no-startup-id maim -suo "${HOME}/Pictures/screenshots/$(date '+%Y%m%d_%H%M%S').png"
|
bindsym $mod+Shift+s exec --no-startup-id bash x11-screenshot.sh
|
||||||
|
|
||||||
# use pactl for media keys
|
# use pactl for media keys
|
||||||
set $refresh_i3status killall -SIGUSR1 i3status
|
set $refresh_i3status killall -SIGUSR1 i3status
|
||||||
@@ -197,7 +197,7 @@ mouse_warping none
|
|||||||
############################
|
############################
|
||||||
|
|
||||||
# load background image
|
# load background image
|
||||||
exec --no-startup-id feh --bg-fill ~/dotfiles/images/game_scene.jpg
|
exec --no-startup-id feh --bg-fill ~/dotfiles/images/pixel-windows.png
|
||||||
|
|
||||||
# window border style
|
# window border style
|
||||||
default_border pixel 2
|
default_border pixel 2
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 108 KiB After Width: | Height: | Size: 108 KiB |
@@ -23,7 +23,7 @@ function __search-history {
|
|||||||
READLINE_POINT=$((0 + ${#command}))
|
READLINE_POINT=$((0 + ${#command}))
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ "$-" == *i* ]] && which fzf &>/dev/null; then
|
if [[ "$-" == *i* ]] && $(which fzf &>/dev/null); then
|
||||||
bind -r "\C-r"
|
bind -r "\C-r"
|
||||||
bind -x '"\C-r": __search-history'
|
bind -x '"\C-r": __search-history'
|
||||||
fi
|
fi
|
||||||
|
|||||||
Executable
+26
@@ -0,0 +1,26 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
unset use_clipboard
|
||||||
|
if [[ "$1" == "-c" ]] || [[ "$1" == "--clipboard" ]]; then
|
||||||
|
use_clipboard="true"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! $(which maim &>/dev/null); then
|
||||||
|
notify-send "[screenshot]" "missing \`maim\`"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
if [[ -n "${use_clipboard}" ]] && ! $(which xclip &>/dev/null); then
|
||||||
|
notify-send "[screenshot]" "missing \`xclip\`"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -z "${use_clipboard}" ]]; then
|
||||||
|
screenshots_path="${HOME}/screenshots"
|
||||||
|
echo "${screenshots_path}"
|
||||||
|
if [[ ! -d "${screenshots_path}" ]]; then
|
||||||
|
mkdir "${screenshots_path}"
|
||||||
|
fi
|
||||||
|
maim -suo "${screenshots_path}/$(date '+%Y%m%d_%H%M%S').png"
|
||||||
|
else
|
||||||
|
maim -suo | xclip -selection clipboard -t image/png
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user