diff --git a/config/bin/i3-utils b/config/bin/i3-utils index 284fe89..1b93ac0 100755 --- a/config/bin/i3-utils +++ b/config/bin/i3-utils @@ -45,14 +45,14 @@ case $1 in case $2 in messages ) PROGRAM=slack ARGS+=(-c Slack --has-statusbar-icon) ;; voice ) PROGRAM=google-voice-desktop ;; - ytmusic ) PROGRAM=youtubemusic-nativefier ;; + ytmusic ) PROGRAM=youtube-music-desktop-app ARGS+=(-c '"YouTube Music Desktop App"' --has-statusbar-icon) ;; 1pass ) PROGRAM=1password ARGS+=(-c 1Password) ;; discord ) PROGRAM=discord ARGS+=(--has-statusbar-icon) ;; obs ) PROGRAM=obs ARGS+=(-c '^obs' -n -l --has-statusbar-icon) ;; pavuctrl ) PROGRAM=pavucontrol ARGS+=(-s 0.5 -c '^Pavucontrol') ;; scrcpy ) PROGRAM=scrcpy ARGS+=(-n -l) ;; - spotify ) PROGRAM=spotify ARGS+=(-c Spotify) ;; + spotify ) PROGRAM=youtube-music-desktop-app ARGS+=(-c '"YouTube Music Desktop App"' --has-statusbar-icon) ;; * ) PROGRAM=$2 ;; esac diff --git a/config/user/flameshot/flameshot.ini b/config/user/flameshot/flameshot.ini index 7edff58..f406c89 100644 --- a/config/user/flameshot/flameshot.ini +++ b/config/user/flameshot/flameshot.ini @@ -2,8 +2,10 @@ contrastOpacity=188 contrastUiColor=#a97f6f disabledTrayIcon=false -drawColor=#f12875 -drawThickness=8 +drawColor=#d11455 +drawFontSize=13 +drawMarkerSize=18 +drawThickness=4 filenamePattern=%Y-%m-%d_%I%H.SCREENSHOT saveAsFileExtension=png savePath=/home/w0ryn/Pictures/screenshot diff --git a/config/xinitrc.common b/config/xinitrc.common index 73a02f8..d732472 100644 --- a/config/xinitrc.common +++ b/config/xinitrc.common @@ -15,6 +15,7 @@ unset PREFERRED_TERMINAL ##################################################################### for PREFERRED_BROWSER in \ + brave \ firefox \ google-chrome-stable \ google-chrome \ diff --git a/scwrypts/dotwryn/desktop/xorg/i3/launch-or-show b/scwrypts/dotwryn/desktop/xorg/i3/launch-or-show index fa012fe..fcf634b 100755 --- a/scwrypts/dotwryn/desktop/xorg/i3/launch-or-show +++ b/scwrypts/dotwryn/desktop/xorg/i3/launch-or-show @@ -70,16 +70,16 @@ MAIN() { ( * ) [ ! $APPLICATION ] && APPLICATION="$1" \ - || ERROR "extra positional argument '$1'" + || echo.error "extra positional argument '$1'" esac shift 1 done - [ ! $APPLICATION ] && ERROR 'path-executable required' + [ ! $APPLICATION ] && echo.error 'path-executable required' [ ! $CLIENT_CLASS ] && CLIENT_CLASS=$APPLICATION [ $APPLICATION ] && { - __CHECK_DEPENDENCY $APPLICATION || { + utils.dependencies.check $APPLICATION || { notify.error "$APPLICATION not found" } }