mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 12:19:24 +00:00
Compare commits
9 Commits
d2fffc40ea
...
674c5bfdda
Author | SHA1 | Date | |
---|---|---|---|
674c5bfdda | |||
6cd8955409 | |||
db63219398 | |||
42d80f2ce7 | |||
4578d4e418 | |||
7242a57c18 | |||
2d9ed8720b | |||
205bcd7be8 | |||
70da2ecbe8 |
@ -2,8 +2,10 @@
|
||||
|
||||
# Set recorder based on GPU
|
||||
|
||||
OUTPUT_DIR="${OMARCHY_SCREENRECORD_DIR:-$HOME/Videos}"
|
||||
|
||||
screenrecording() {
|
||||
filename="$HOME/Videos/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4"
|
||||
filename="$OUTPUT_DIR/screenrecording-$(date +'%Y-%m-%d_%H-%M-%S').mp4"
|
||||
notify-send "Screen recording starting..." -t 1000
|
||||
sleep 1
|
||||
|
||||
|
@ -1,8 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
OUTPUT_DIR="${OMARCHY_SCREENSHOT_DIR:-$HOME/Pictures}"
|
||||
|
||||
hyprshot -m ${1:-region} --raw |
|
||||
satty --filename - \
|
||||
--output-filename ~/Pictures/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png \
|
||||
--output-filename "$OUTPUT_DIR/screenshot-$(date +'%Y-%m-%d_%H-%M-%S').png" \
|
||||
--early-exit \
|
||||
--actions-on-enter save-to-clipboard \
|
||||
--save-after-copy \
|
||||
|
@ -5,7 +5,7 @@ bind = SUPER, W, killactive,
|
||||
bind = SUPER, J, togglesplit, # dwindle
|
||||
bind = SUPER, P, pseudo, # dwindle
|
||||
bind = SUPER, V, togglefloating,
|
||||
bind = , F11, fullscreen, 0
|
||||
bind = SHIFT, F11, fullscreen, 0
|
||||
|
||||
# Move focus with mainMod + arrow keys
|
||||
bind = SUPER, left, movefocus, l
|
||||
|
@ -12,5 +12,5 @@ if [ -z "$OMARCHY_BARE" ]; then
|
||||
web2app "YouTube" https://youtube.com/ https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/youtube.png
|
||||
web2app "GitHub" https://github.com/ https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/github-light.png
|
||||
web2app "X" https://x.com/ https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/x-light.png
|
||||
web2app "Omarchy Manual" https://manuals.omamix.org/2/the-omarchy-manual https://manuals.omamix.org/rails/active_storage/blobs/redirect/eyJfcmFpbHMiOnsiZGF0YSI6NDgsInB1ciI6ImJsb2JfaWQifX0=--c26606490139480f5bcb3cf91b09fc45825007f6/omarchy.jpg?disposition=attachment
|
||||
web2app "Omarchy Manual" https://manuals.omamix.org/2/the-omarchy-manual https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/png/arch-linux.png
|
||||
fi
|
||||
|
@ -1,8 +1,4 @@
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
|
||||
$latte_blue = rgb(1e66f5)
|
||||
|
||||
general {
|
||||
col.active_border = $latte_blue
|
||||
col.active_border = rgb(1e66f5)
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
text-color=#4c4f69
|
||||
border-color=#dce0e8
|
||||
border-color=#1e66f5
|
||||
background-color=#eff1f5
|
||||
width=420
|
||||
height=110
|
||||
|
@ -1,6 +1,5 @@
|
||||
@define-color background-color #eff1f5;
|
||||
@define-color border-color #4c4f69;
|
||||
@define-color border-color #1e66f5;
|
||||
@define-color label #4c4f69;
|
||||
@define-color image #4c4f69;
|
||||
@define-color progress #4c4f69;
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(c6d0f5)
|
||||
}
|
||||
|
@ -1,6 +1,5 @@
|
||||
@define-color background-color #24273a;
|
||||
@define-color border-color #c6d0f5;
|
||||
@define-color label #c6d0f5;
|
||||
@define-color image #c6d0f5;
|
||||
@define-color progress #c6d0f5;
|
||||
|
||||
@define-color label #cad3f5;
|
||||
@define-color image #cad3f5;
|
||||
@define-color progress #cad3f5;
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(d3c6aa)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(a89984)
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
@define-color background-color #282828;
|
||||
@define-color border-color #ebdbb2;
|
||||
@define-color border-color #a89984;
|
||||
@define-color label #ebdbb2;
|
||||
@define-color image #ebdbb2;
|
||||
@define-color progress #ebdbb2;
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(dcd7ba)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(8A8A8D)
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
@define-color background-color #121212;
|
||||
@define-color border-color #EAEAEA;
|
||||
@define-color label #EAEAEA;
|
||||
@define-color image #EAEAEA;
|
||||
@define-color progress #EAEAEA;
|
||||
@define-color border-color #8A8A8D;
|
||||
@define-color label #8A8A8D;
|
||||
@define-color image #8A8A8D;
|
||||
@define-color progress #8A8A8D;
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(D8DEE9)
|
||||
}
|
||||
|
@ -1,4 +1,3 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(575279)
|
||||
}
|
||||
|
@ -1,5 +1,4 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
@define-color background-color #1a1b26;
|
||||
@define-color border-color #33ccff;
|
||||
@define-color label #33ccff;
|
||||
@define-color image #33ccff;
|
||||
@define-color progress #33ccff;
|
||||
@define-color label #a9b1d6;
|
||||
@define-color image #a9b1d6;
|
||||
@define-color progress #a9b1d6;
|
||||
|
||||
|
Reference in New Issue
Block a user