Skip to content

Sstudios-Dev/SsPassword

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

69 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SsPassword

Installation

  1. Clone the repository
  2. Install the dependencies with pip install -r requirements.txt
  3. Generate a secret key by executing:
from app.encryption import generate_key, save_key
key = generate_key()
save_key(key)

Customized theme

namespace eval ::ttk::theme::azure-default {
    variable version 1.0.0

    proc Theme {} {
        ttk::style theme create azure-default -parent default -settings {
            ttk::style configure TButton -background #3498db -foreground #ffffff -font {Arial 10} -padding {5 10}
            ttk::style configure TLabel -foreground #333333 -font {Arial 10 bold}
            ttk::style configure TEntry -background #ecf0f1 -foreground #333333 -font {Arial 10} -padding 5
            ttk::style configure TText -background #ecf0f1 -foreground #333333 -font {Arial 10} -padding 5
            ttk::style configure TFrame -background #ecf0f1

            # Style for when the mouse is over the button
            ttk::style map TButton -background [list active #2980b9]
        }
    }
}

if {[info commands ::ttk::theme::azure-default::Theme] ne ""} {
    ::ttk::theme::azure-default::Theme
} ```

About

Desktop application to manage your passwords locally in a database.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •