more notes-updates

This commit is contained in:
Daylin Morgan 2024-02-26 10:11:00 -06:00
parent f7c1f8ba26
commit 78b4533744
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
6 changed files with 24 additions and 8 deletions

View file

@ -5,8 +5,10 @@ exec-once = dunst -conf ~/.config/hypr/dunstrc &
# exec-once = udiskie & # exec-once = udiskie &
exec-once = xprop -root -f _XWAYLAND_GLOBAL_OUTPUT_SCALE 32c -set _XWAYLAND_GLOBAL_OUTPUT_SCALE 2 exec-once = xprop -root -f _XWAYLAND_GLOBAL_OUTPUT_SCALE 32c -set _XWAYLAND_GLOBAL_OUTPUT_SCALE 2
exec = swayidle &
exec = kanshi & exec = kanshi &
exec = hyprpaper & exec = hyprpaper &
# TODO: make hyprman kill eww if necessary # TODO: make hyprman kill eww if necessary
exec = pkill eww & hyprman monitors & exec = pkill eww & hyprman monitors &

View file

@ -7,6 +7,7 @@ monitor=,preferred,auto,1
env = GDK_SCALE=2 env = GDK_SCALE=2
env = XCURSOR_SIZE,24 env = XCURSOR_SIZE,24
env = QT_QPA_PLATFORMTHEME,qt5ct # change to qt6ct if you have that env = QT_QPA_PLATFORMTHEME,qt5ct # change to qt6ct if you have that
env = GTK_THEME, Catppuccin-Mocha-Standard-Rosewater-Dark
general { general {

View file

@ -3,6 +3,7 @@ $mainMod = SUPER
# Program binds # Program binds
bind = $mainMod SHIFT, RETURN, exec, wezterm bind = $mainMod SHIFT, RETURN, exec, wezterm
bind = $mainMod, P, exec, ~/.config/rofi/bin/launcher.sh bind = $mainMod, P, exec, ~/.config/rofi/bin/launcher.sh
bind = $mainMod, N, exec, wezterm start --class "notes-editor" -e notes
bind = $mainMod SHIFT, Q, killactive, bind = $mainMod SHIFT, Q, killactive,
bind = $mainMod SHIFT, L, exec, lock bind = $mainMod SHIFT, L, exec, lock
@ -67,8 +68,8 @@ bind = ,W, exec, ~/.config/rofi/bin/windows.sh
bind = ,W, submap, reset bind = ,W, submap, reset
bind = ,P, exec, ~/.config/rofi/bin/powermenu.sh bind = ,P, exec, ~/.config/rofi/bin/powermenu.sh
bind = ,P, submap, reset bind = ,P, submap, reset
bind = ,N, exec, ~/.config/rofi/bin/notes.sh # bind = ,N, exec, ~/.config/rofi/bin/notes.sh
bind = ,N, submap, reset # bind = ,N, submap, reset
bind = ,escape, submap, reset bind = ,escape, submap, reset
submap = reset submap = reset

View file

@ -3,6 +3,7 @@ windowrulev2 = tile,class:(Vivaldi-stable)
# prevent flameshot from requesting fullscreen # prevent flameshot from requesting fullscreen
# windowrulev2 = nofullscreenrequest,class:^(flameshot)$,title:^(flameshot) # windowrulev2 = nofullscreenrequest,class:^(flameshot)$,title:^(flameshot)
# set flameshot to floating
# windowrulev2 = float,class:^(flameshot)$,title:^(flameshot) # windowrulev2 = float,class:^(flameshot)$,title:^(flameshot)
set notes editor to floating
windowrulev2 = float,class:^(notes-editor)$

View file

@ -3,7 +3,4 @@
styles="$(dirname "$(which $0)")/../styles" styles="$(dirname "$(which $0)")/../styles"
rofi_cmd="rofi -theme $styles/notes.rasi -dmenu -p notes -l 0" rofi_cmd="rofi -theme $styles/notes.rasi -dmenu -p notes -l 0"
# Rofi command to pipe into, can add any options here
# rofi_command="rofi -dmenu -theme $rofi_styles/bluetooth.rasi -no-fixed-num-lines -yoffset -100 -i -p "
notes "$($rofi_cmd)" notes "$($rofi_cmd)"

View file

@ -5,7 +5,21 @@ mainbox {
padding: 12px; padding: 12px;
} }
entry {
placeholder: "entry"; inputbar {
background-color: @background;
border-color: @primary;
border: 2px;
border-radius: 4px;
padding: 8px 16px;
spacing: 8px;
height: 100px;
}
entry {
placeholder: "entry";
height: 100 px;
} }